.general-meetings__docs {
    margin-top: 64px;
}

/* Табы */
.general-meetings__tabs {
    display: flex;
    max-width: 320px;
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 32px;
}

.general-meetings__tab {
    flex: 1;
    padding-bottom: 14px;
    background: none;
    border: none;
    font-size: 20px;
    color: #8a8a8a;
    cursor: pointer;
    position: relative;
}

.general-meetings__tab.active {
    color: #3b8a6a;
}

.general-meetings__tab.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #9cc7b5;
}

/* Секция */
.general-meetings__section {
    margin-bottom: 64px;
}

.general-meetings__section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 28px;
}

/* Список */
.general-meetings__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Элемент */
.general-meetings__item {
    display: flex;
    gap: 16px;
    text-decoration: none;
    color: inherit;
}

/* Иконка PDF */
.general-meetings__icon {
    width: 36px;
    height: 44px;
    border: 1.5px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    position: relative;
}

.general-meetings__icon::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1.5px solid #444;
    border-bottom: 1.5px solid #444;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* Текст */
.general-meetings__item-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.general-meetings__item-meta {
    font-size: 12px;
    color: #555;
}

/* Hover */
.general-meetings__item:hover .general-meetings__item-title {
    color: #3b8a6a;
}

.general-meetings__contacts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

@media (max-width: 768px) {
    .general-meetings__contacts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.general-meetings__contacts-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}