@font-face {
    font-family: TPUFontRegular;
    src: url(/fonts/ALS_Sirius_Regular.otf) format("truetype")
}

@font-face {
    font-family: TPUFontBold;
    src: url(/fonts/ALS_Sirius_Bold.otf) format("truetype")
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: TPUFontRegular, sans-serif !important;
    color: #333;
    line-height: 1.6;
    height: 100vh;
}

.container {
    /*max-width: 1200px;*/
    /*margin: 0 auto;*/
    /*padding: 0 20px;*/
}

a {
    color: #00c037;
    text-decoration-line: none
}

a:focus {
    color: var(--green-1);
}

a:hover {
    color: #0e9243 !important
}

h1 {
    font-family: TPUFontBold
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo__title {
    font-size: 14px;
    display: flex;
    align-items: center;
    border-left: 1px solid black;
    height: 43px;
    padding-left: 10px;
}

.nav {
    display: flex;
    gap: 25px;
    flex: 1;
    justify-content: center;
}

.nav span {
    color: var(--green-1)
}

.nav-link {
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #00A651;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-archive {
    font-family: TPUFontRegular;
    background: #00A651;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-archive:hover {
    background: #008f45;
}

.btn-menu {
    background: #00A651;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-menu:hover {
    background: #008f45;
}

.btn-menu span {
    width: 20px;
    height: 2px;
    background: white;
    display: block;
}

@media (max-width: 1100px) {
    .btn-archive {
        padding: 0px 5px;
        height: 30px;
    }

    .btn-menu {
        width: 30px;
        height: 30px;
    }

    .logo img {
        width: 150px;
    }
}

@media (max-width: 1044px) {
    .header-actions {
        gap: 10px;
    }

    .nav {
        gap: 5px;
    }
}

@media (max-width: 1199px) {
    .logo__title {
        display: none;
    }
}

@media (max-width: 850px) {
    .btn-archive {
        display: none;
    }
}

@media (max-width: 795px) {
    .header-content {
        gap: unset;
    }
}

@media (max-width: 790px) {
    .nav {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
}

/* hero banner */
.hero {
    background: url('/images/heroBanner.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
}

@media (max-width: 560px) {
    .hero-title {
        font-size: 35px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 25px;
    }
}

/* Link Blocks */
.linkBlocks {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

.linkBlocks__row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.linkBlocks div {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.linkBlocks div:last-child {
    margin-right: 0;
}

.linkBlocks div p {
    text-align: center;
    font-size: 22px;
    line-height: 1.2;
}

.linkBlocks div i {
    font-size: 42px;
    margin-bottom: 20px;
}

.linkBlocks__block-item {
    width: 370px;
    height: 300px;
}

.linkBlocks .link-item__green-1 {
    color: var(--white);
    background: var(--green-1);
    display: flex;
    align-items: flex-start;
}

.linkBlocks .link-item__green-2 {
    color: var(--white);
    background: var(--green-2);
    display: flex;
    align-items: flex-start;
}

.linkBlocks .link-item__img {
    color: var(--white);
    background: url(/images/background-block.jpg) no-repeat;
    display: flex;
    align-items: flex-start;
}

.animated {
    --angle: 5deg;
    animation: shake 0.3s;
}

@keyframes shake {
    25% {
        transform: rotate(calc(var(--angle) * -1));
    }
    50% {
        transform: rotate(var(--angle));
    }
    100% {
        transform: rotate(0deg);
    }
}

.linkBlocks__block-item {
    --width: 100%;
    --time: 0.7s;
    position: relative;
    display: inline-block;
    padding: 1em 2em 1em 2em;
    color: white;
    background: #222;
    overflow: hidden;
}

.linkBlocks__block-item i,
.linkBlocks__block-item p {
    position: relative;
    z-index: 5;
    transition: color var(--time);
}

.linkBlocks__link {
    display: inline-flex;
    align-items: center;
    gap: 5px; /* Расстояние между текстом и иконкой */
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    font-size: 16px;
}

.flex-wrapper {
    display: flex;
    flex-direction: column;
}

.linkBlocks__link i {
    transition: transform 0.3s ease;
}

.linkBlocks__link:hover i {
    transform: translateX(5px); /* Сдвиг вправо на 5px */
}

.linkBlocks__block-item span {
    position: absolute;
    display: block;
    content: "";
    z-index: 0;
    width: 0;
    height: 0;
    border-radius: 100%;
    background: white;
    transform: translate(-50%, -50%);
    transition: width var(--time), padding-top var(--time);
}

.linkBlocks__block-item:hover * {
    color: white !important;
}

.linkBlocks__block-item:hover span {
    width: calc(var(--width) * 2.25);
    padding-top: calc(var(--width) * 2.25);
}

/* Дополнительные селекторы для span в разных классах */
.link-item__green-1 span {
    position: absolute;
    display: block;
    content: "";
    z-index: 0;
    width: 0;
    height: 0;
    border-radius: 100%;
    background: var(--green-hover);
    transform: translate(-50%, -50%);
    transition: width var(--time), padding-top var(--time);
    color: white;
}

.link-item__green-2 span,
.link-item__img span {
    position: absolute;
    display: block;
    content: "";
    z-index: 0;
    width: 0;
    height: 0;
    border-radius: 100%;
    background: var(--gray-hover);
    transform: translate(-50%, -50%);
    transition: width var(--time), padding-top var(--time);
}

div.linkBlocks__content {
    display: flex;
    flex-direction: column;
}

.linkBlocks__content a i {
    font-size: 14px;
    margin-bottom: unset;
}

.linkBlocks__content a {
    z-index: 2;
    color: white;
}

.linkBlocks__content h2 {
    line-height: 1.3;
    font-size: 20px;
    z-index: 2;
    margin-top: unset;
    margin-bottom: unset;
    letter-spacing: unset;
    font-weight: inherit;
}

@media (max-width: 1199px) {
    /*.linkBlocks__row:first-child .linkBlocks__content a {*/
    /*    margin-top: 26px;*/
    /*}*/

    .linkBlocks__row .linkBlocks__block-item:first-child .linkBlocks__content a.linkBlocks__link {
        margin-top: 26px !important;
    }
}

@media (max-width: 1122px) {
    .linkBlocks__row .linkBlocks__block-item:first-child .linkBlocks__content a.linkBlocks__link {
        margin-top: unset !important;
    }
}

@media (max-width: 950px) {
    .linkBlocks__content h2 {
        font-size: 18px;
    }
    .linkBlocks__row .linkBlocks__block-item:first-child .linkBlocks__content a.linkBlocks__link {
        margin-top: 8px !important;
    }
}

@media (max-width: 860px) {
    .linkBlocks__row {
        flex-direction: column;
        align-items: center;
    }

    .linkBlocks div {
        margin-right: unset;
    }

}

@media (max-width: 375px) {
    .linkBlocks__block-item {
        width: 300px;
    }

    /*.linkBlocks__row:first-child .linkBlocks__content a {*/
    /*    margin-top: 35px !important;*/
    /*}*/

    /*.link-item__green-1 .linkBlocks__content a.linkBlocks__link {*/
    /*    margin-top: 10px !important;*/
    /*}*/
}

@media (max-width: 425px) {
    .linkBlocks__content h1 {
        font-size: 24px;
    }
}

/* Announcements Section */
.announcements-section {
    padding-top: 20px;
    background: white;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-family: TPUFontBold;
    font-size: 32px;
    color: #000;
    margin: 20px 0;
}

.section-link {
    color: #00A651;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.section-link:hover {
    opacity: 0.7;
}

.announcements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.announcement-card {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 8px;
    transition: box-shadow 0.3s;
}

.announcement-card:nth-child(2n+1) {
    background-color: var(--gray-3);
}

.announcement-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-4);
}

.announcement-name {
    font-family: TPUFontBold;
    font-size: 14px;
    width: 200px;
    overflow-wrap: break-word;
}

.announcement-date {
    font-family: TPUFontBold;
    background: #7CB928;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
}

.announcement-info {
    margin-bottom: 20px;
}

.announcement__item {
    display: flex;
}

.announcement__item i {
    color: var(--green-1);
    margin-top: 4px;
    margin-right: 10px;
}

.announcement-label {
    font-weight: 600;
}

.announcement-title {
    font-family: TPUFontBold;
    font-size: 14px;
    color: var(--gray-2);
}

.announcement-value {
    color: #555;
    font-size: 14px
}

.announcement__link {
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 5px; /* Расстояние между текстом и иконкой */
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--green-1);
}

.announcement__link i {
    transition: transform 0.3s ease;
}

.announcement__link:hover i {
    transform: translateX(5px); /* Сдвиг вправо на 5px */
}

@media (max-width: 1080px) {
    .announcements-grid {
        gap: 10px;
    }

    .announcement-card {
        width: 300px;
    }

    .announcement-title {
        font-size: 14px;
    }

    .announcement-value {
        font-size: 12px;
    }

    a.announcement__link {
        font-size: 14px;
    }
}

@media (max-width: 952px) {
    .announcement-card {
        width: 270px;
    }
}

@media (max-width: 860px) {
    .announcements-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .announcement-card {
        width: 370px;
    }
}

@media (max-width: 860px) {
    .announcements-grid a.announcement__link:last-child {
        justify-self: start;
        margin-left: 0;
    }
}

@media (max-width: 375px) {
    .announcement-card {
        width: 300px;
    }
}

/* Table Section */
.table-section {
    margin-bottom: 40px;
}

.councils-table {
    width: 100%;
    background: white;
    display: table;
    border-collapse: collapse;
}

.table-header {
    display: table-header-group;
    background: #7CB928;
    color: white;
}

.table-body {
    display: table-row-group;
}

.table-row {
    display: table-row;
    border-bottom: 1px solid #e0e0e0;
}

.table-row:hover {
    background: #f9f9f9;
}

.table-cell {
    display: table-cell;
    padding: 10px;
    font-size: 14px;
    line-height: 1.6;
    vertical-align: top;
}

.table-cell:first-child {
    width: 200px;
}

/* Заголовки в первой строке */
.table-header .table-cell {
    padding: 10px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .councils-table {
        display: block;
    }

    .table-header {
        display: none; /* Скрываем заголовок на мобильных */
    }

    .table-body {
        display: block;
        background: #f5f5f5;
    }

    .table-row {
        display: block;
        margin-bottom: 15px;
        padding: 15px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        background: #f9f9f9;
    }

    .table-cell {
        display: block;
        width: 100% !important;
        padding: 5px 0;
    }

    .table-cell:first-child {
        font-weight: 600;
        margin-bottom: 8px;
        padding-bottom: 8px;
        border-bottom: 1px solid #ddd;
    }

    .table-cell:first-child::before {
        content: "Шифр совета: ";
        font-weight: 600;
        color: #7CB928;
    }

    .table-cell:nth-child(2)::before {
        content: "Специальность: ";
        font-weight: 600;
        color: #7CB928;
        display: block;
        margin-bottom: 5px;
    }

    /* Убираем подчеркивание для псевдоэлементов */
    .table-row:hover {
        background: #f0f0f0;
    }
}

@media (max-width: 425px) {
    .table-row {
        padding: 12px;
    }

    .table-cell {
        font-size: 13px;
    }
}

/* Сохраняем существующие стили для ссылок */
.councils-table a {
    color: #00A651;
    font-weight: 500;
    transition: opacity 0.3s;
}

.councils-table a:hover {
    opacity: 0.7;
}

.councils-table strong {
    font-weight: 600;
}

/* Footer */
.footer-block {
    background: #2a2a2a;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
}

.footer-left {
    flex: 1;
}

.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-logo {
    display: flex;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 200px;
    height: 43px;
}

.footer-logo img:hover {
    opacity: 0.8;
}

.footer-copyright {
    color: #75726d;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-info {
    color: #75726d;
    font-size: 12px;
    line-height: 1.6;
}

.footer-developed {
    color: #75726d;
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 500;
}

.footer-center {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    margin-bottom: 10px;
    opacity: 0.9;
    color: white;
}

.footer-email {
    font-size: 13px;
    opacity: 0.9;
}

.footer-email a {
    color: white;
    text-decoration: underline;
}

@media (max-width: 375px) {
    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 425px) {
    h1.section-title {
        font-size: 24px;
    }
}

/* error page */
.error-page {
    text-align: center;
    margin: 80px;
    height: 50vh;
}

.error-page img {
    width: 400px;
}

.error-page h1 {
    font-size: 1.8em;
}

.link-back button {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 25px;
    flex-grow: 1;
    color: white;
    background-color: #76b741;
}

.link-back button:hover {
    background-color: #5E8A38FF;
}

@media (max-width: 638px) {
    .error-page img {
        width: 300px;
    }
    .error-page h1 {
        font-size: 1.5em;
    }
}

@media (max-width: 425px) {
    .error-page {
        margin: 50px;
    }
    .block-content p img {
        width: 100%;
        object-fit: contain;
    }
}

@media (max-width: 375px) {
    .error-page {
        margin: 10px;
    }
    .error-page h1 {
        font-size: 1.2em;
    }
}

@media (max-width: 320px) {
    .error-page img {
        width: 200px;
    }
}

/* Полноэкранное мобильное меню */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--green-2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

/* Кнопка закрытия (крестик) */
.mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 10000;
}

.mobile-menu__close span {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: white;
    transition: transform 0.3s ease;
}

.mobile-menu__close span:first-child {
    transform: rotate(45deg);
}

.mobile-menu__close span:last-child {
    transform: rotate(-45deg);
}

.mobile-menu__close:hover span {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Навигация меню */
.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
}

.mobile-menu__link {
    font-family: TPUFontRegular;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 20px;
}

.mobile-menu__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease, left 0.3s ease;
}

.mobile-menu__link:hover {
    transform: scale(1.1);
    color: white;
}

.mobile-menu__link:hover::after {
    width: 100%;
    left: 0;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .mobile-menu__link {
        font-size: 20px;
    }

    .mobile-menu__nav {
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .mobile-menu__link {
        font-size: 18px;
    }

    .mobile-menu__nav {
        gap: 20px;
    }

    .mobile-menu__close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }

    .mobile-menu__close span {
        width: 25px;
        height: 2px;
    }
}

/* DIS-COUNCIL PAGE */
.navigation-tabs {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 20px auto;
    padding: 0;
    justify-content: space-between;
    gap: 15px;
    border-bottom: unset;
}

.navigation-tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #707070;
    font-size: 14px;
    border-right: 1px solid #606060;
    transition: background-color 0.3s;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navigation-tab:last-child {
    border-right: none;
}

/*.navigation-tab:hover {*/
/*    background-color: #606060;*/
/*}*/

.navigation-tabs a.navigation-tab:hover {
    color: var(--green-2) !important;
}

.navigation-tabs a.navigation-tab:focus {
    color: var(--green-2);
}

.dis-council__announcement-link {
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 5px; /* Расстояние между текстом и иконкой */
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--green-1);
}

.dis-council__announcement-link:hover {
    color: var(--green-2) !important;
}

.dis-council__announcement-link i {
    transition: transform 0.3s ease;
}

.dis-council__announcement-link:hover i {
    transform: translateX(5px); /* Сдвиг вправо на 5px */
}

.title-block {
    display: flex;
    justify-content: space-between;
}

.title-block h1.title {
    margin-bottom: 30px;
}

/* Specializations */
.specializations {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.specialization-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
}

.specialization-link i {
    color: var(--green-1)
}

.arrow-icon {
    color: #4caf50;
    font-weight: bold;
}

/* Council Members */
.council-members {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.member-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--gray-5);
}

.avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.avatar-placeholder img {
    height: 140px;
    object-fit: contain;
    width: 120px;
    border: 8px solid white;
}

.member-info {
    flex: 1;
}

.member-info h3.member-name {
    margin-top: 0;
}

.member-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.member-degree {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.member-role {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.member-role.chairman {
    color: var(--green-1);
}

.member-role.deputy {
    color: #4caf50;
}

.member-role.secretary {
    color: #4caf50;
}

.member-contacts {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.contact-item i {
    color: var(--green-1);
}

.contact-value {
    color: #333;
}

.icon {
    font-size: 16px;
}

/* Council Link */
.council-link {
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 5px; /* Расстояние между текстом и иконкой */
    transition: all 0.3s ease;
    text-decoration: none;
    color: #0f9243;
}

.council-link:hover {
    color: #4caf50;
}

.plus-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #4caf50;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
}

/* Defenses Section */
.defenses-section {
    margin-bottom: 50px;
}

.defenses-section h2 {
    font-family: TPUFontBold;
    font-size: 24px;
    color: #000;
    margin: 20px 0;
}

.defense-card {
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.defense-card:nth-child(even) {
    background: url(/images/background-gray.jpg);
    background-size: auto;
}

.defense-card:nth-child(odd) {
    background: url(/images/background-green.jpg);
    background-size: auto;
}

.defense-gray {
    color: #fff;
}

.defense-green {
    background-color: #8bc34a;
    color: #fff;
}

.defense-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.defense-header h3 {
    font-family: TPUFontBold;
    font-size: 20px;
}

.defense-date {
    font-size: 14px;
    opacity: 0.9;
    padding-left: 10px;
    border-left: 5px solid var(--green-1);
}

.defense-degree {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.95;
}

.defense-topic {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.95;
}

.all-defenses-link {
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 5px; /* Расстояние между текстом и иконкой */
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--green-1);
}

.all-defenses-link:hover {
    color: var(--green-2) !important;
}

.all-defenses-link i {
    transition: transform 0.3s ease;
}

.all-defenses-link:hover i {
    transform: translateX(5px); /* Сдвиг вправо на 5px */
}

/* Reports Section */
.reports-section {
    margin-bottom: 50px;
}

.reports-section h2 {
    font-family: TPUFontBold;
    font-size: 24px;
    color: #000;
    margin: 20px 0;
}

.report-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.report-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    background-color: var(--gray-5);
    padding: 20px;
}

.report-link:hover {
    color: #4caf50;
}

.report-link i {
    font-size: 32px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navigation-tabs {
        flex-direction: column;
    }

    .navigation-tab {
        border-right: none;
        border-bottom: 1px solid #606060;
    }

    .member-card {
        flex-direction: column;
    }

    .member-contacts {
        flex-direction: column;
        gap: 10px;
    }

    .defense-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 1024px) {
    .title-block {
        flex-direction: column;
        margin-bottom: 20px;
    }
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 10px;
    padding-right: 10px;
}

@media (min-width: 1200px) {
    .container {
        width: 1200px;
    }
}

/*@media (min-width: 1025px) {*/
/*    .container {*/
/*        width: 1025px;*/
/*    }*/
/*}*/

/*@media (min-width: 769px) {*/
/*    .container {*/
/*        width: 769px;*/
/*    }*/
/*}*/
