/* ==========================================================================
   Основные стили темы УПРиУ
   ========================================================================== */

/* ==========================================================================
   Шапка сайта
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
}

.header-top {
    padding: 32px 0;
    background-color: var(--white);
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.header-logo {
    flex-shrink: 0;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 66px;
    height: 92px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-subtitle {
    font-family: var(--font-secondary);
    font-size: 12px;
    line-height: 120%;
    color: var(--text-color);
}

.logo-title {
    font-family: var(--font-primary);
    font-size: 14.37px;
    line-height: 18px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.header-search {
    flex: 1;
    max-width: 312px;
}

.search-form {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: 50px;
    padding: 8px 20px;
}

.search-field {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 20px;
    color: var(--text-color);
    background: transparent;
}

.search-field::placeholder {
    color: var(--text-color);
}

.search-submit {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit svg {
    width: 28px;
    height: 28px;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 36px;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-contact-item svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.header-contact-item a,
.header-contact-item span {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: var(--text-color);
    text-decoration: none;
}

.header-contact-item a:hover {
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2.22px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Навигация */
.main-navigation {
    background-color: var(--white);
    border-top: 1px solid rgba(166, 178, 193, 0.3);
}

.main-navigation ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    padding: 20px 0;
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 22px;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--secondary-color);
}

.main-navigation .current-menu-item > a {
    color: var(--secondary-color);
}

/* Подменю */
.main-navigation .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 100;
}

.main-navigation li:hover > .sub-menu {
    display: block;
}

.main-navigation .sub-menu a {
    padding: 10px 20px;
    font-size: 14px;
}

/* ==========================================================================
   Хлебные крошки
   ========================================================================== */

.breadcrumbs {
    padding: 20px 0;
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 22px;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--secondary-color);
}

/* ==========================================================================
   Заголовок страницы
   ========================================================================== */

.page-header {
    padding: 40px 0;
    background-color: var(--background-color);
}

.page-title {
    font-size: 44px;
    line-height: 54px;
    color: var(--primary-color);
    margin: 0;
}

/* ==========================================================================
   Hero секция
   ========================================================================== */

.hero-section {
    position: relative;
    height: 952px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(10, 61, 98, 0.66), rgba(10, 61, 98, 0.66)), var(--accent-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(10, 61, 98, 0.66), rgba(10, 61, 98, 0.66));
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 120px;
}

.hero-title {
    font-size: 52px;
    line-height: 63px;
    color: var(--white);
    max-width: 780px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 32px;
    color: var(--white);
    margin-bottom: 30px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

.hero-date,
.hero-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-secondary);
    font-size: 18px;
    line-height: 32px;
    color: var(--white);
}

.hero-date svg,
.hero-time svg {
    width: 24px;
    height: 24px;
}

.hero-slider-controls {
    position: absolute;
    bottom: 60px;
    left: 120px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-dot.active {
    background-color: var(--white);
}

.hero-slider-arrows {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-arrow {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.hero-arrow:hover {
    background-color: var(--secondary-color);
}

.hero-arrow svg {
    width: 8px;
    height: 16px;
}

.hero-arrow-prev svg {
    transform: rotate(180deg);
}

.hero-sidebar {
    position: absolute;
    top: 164px;
    right: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-sidebar-card {
    width: 743px;
    height: 188px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    padding: 0 80px;
    gap: 40px;
}

.hero-sidebar-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.hero-sidebar-icon svg {
    width: 100%;
    height: 100%;
}

.hero-sidebar-title {
    font-family: var(--font-primary);
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    flex: 1;
}

.hero-sidebar-link {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    color: var(--secondary-color);
    text-decoration: none;
}

.hero-sidebar-link:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   Быстрые ссылки
   ========================================================================== */

.quick-links-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

.quick-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 54px -20px rgba(10, 61, 98, 0.3);
}

.quick-link-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.quick-link-icon svg {
    width: 100%;
    height: 100%;
}

.quick-link-title {
    font-family: var(--font-primary);
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-align: center;
}

/* ==========================================================================
   Секция новостей
   ========================================================================== */

.news-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-title {
    font-size: 44px;
    line-height: 54px;
    color: var(--primary-color);
    margin: 0;
}

.section-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    color: var(--primary-color);
    text-decoration: none;
}

.section-link:hover {
    color: var(--secondary-color);
}

.section-link svg {
    width: 8px;
    height: 16px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

.news-card {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 54px -20px rgba(10, 61, 98, 0.3);
}

.news-card-image {
    position: relative;
    width: 100%;
    height: 224px;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-color);
}

.news-image-placeholder svg {
    width: 64px;
    height: 64px;
}

.news-card-body {
    padding: 30px;
}

.news-card-title {
    font-family: var(--font-secondary);
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.news-card-title a {
    color: inherit;
    text-decoration: none;
}

.news-card-title a:hover {
    color: var(--secondary-color);
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.news-card-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 22px;
    color: var(--text-light);
}

.news-card-date svg {
    width: 28px;
    height: 28px;
}

.news-card-category {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: var(--secondary-color);
}

/* ==========================================================================
   Секция направлений деятельности
   ========================================================================== */

.directions-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.direction-card {
    position: relative;
    width: 414px;
    height: 540px;
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    padding: 50px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.direction-card-accent {
    background-color: var(--secondary-color);
}

.direction-card-dark {
    background-color: var(--primary-color);
}

.direction-number {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.direction-card-accent .direction-number,
.direction-card-dark .direction-number {
    background-color: var(--white);
    color: var(--secondary-color);
}

.direction-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    opacity: 0.2;
}

.direction-icon svg {
    width: 100%;
    height: 100%;
}

.direction-title {
    font-family: var(--font-primary);
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-top: auto;
    margin-bottom: 20px;
}

.direction-card-accent .direction-title,
.direction-card-dark .direction-title {
    color: var(--white);
}

.direction-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    color: var(--secondary-color);
    text-decoration: none;
}

.direction-card-accent .direction-link,
.direction-card-dark .direction-link {
    color: var(--white);
}

.direction-link:hover {
    color: var(--primary-color);
}

.direction-card-accent .direction-link:hover,
.direction-card-dark .direction-link:hover {
    color: var(--white);
    opacity: 0.8;
}

.direction-link svg {
    width: 8px;
    height: 16px;
}

/* ==========================================================================
   Секция партнеров
   ========================================================================== */

.partners-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.partners-tabs {
    display: flex;
    align-items: center;
    gap: 32px;
}

.partner-tab {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: pointer;
    text-align: right;
    padding: 0;
    transition: color 0.3s ease;
}

.partner-tab:hover,
.partner-tab.active {
    color: var(--primary-color);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 54px -20px rgba(10, 61, 98, 0.3);
}

.partner-logo {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}

.partner-logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.partner-name {
    font-family: var(--font-secondary);
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
}

/* ==========================================================================
   Форма обратной связи
   ========================================================================== */

.contact-form-section {
    padding: 80px 0;
    background-color: rgba(10, 61, 98, 0.04);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-form-title {
    font-size: 44px;
    line-height: 54px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-form-description {
    font-size: 20px;
    line-height: 32px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.contact-form-image {
    max-width: 100%;
}

.contact-form-image img {
    width: 100%;
    height: auto;
}

.contact-form-container {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-control {
    width: 100%;
    padding: 18px 32px;
    font-family: var(--font-secondary);
    font-size: 18px;
    line-height: 32px;
    color: var(--text-color);
    background-color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    outline: none;
    transition: box-shadow 0.3s ease;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(47, 180, 190, 0.3);
}

.form-control::placeholder {
    color: var(--text-color);
}

textarea.form-control {
    min-height: 200px;
    resize: vertical;
    border-radius: var(--border-radius-sm);
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.form-disclaimer {
    font-size: 16px;
    line-height: 22px;
    color: var(--text-light);
    max-width: 281px;
}

/* ==========================================================================
   Секция рассылки
   ========================================================================== */

.newsletter-section {
    position: relative;
    padding: 140px 0;
    background-color: var(--primary-color);
    overflow: hidden;
}

.newsletter-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 61, 98, 0.9) 0%, rgba(10, 61, 98, 0.7) 100%);
}

.newsletter-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.newsletter-title {
    font-size: 44px;
    line-height: 54px;
    color: var(--white);
    margin-bottom: 20px;
}

.newsletter-description {
    font-size: 20px;
    line-height: 28px;
    color: var(--white);
}

.newsletter-form-container {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 40px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter-form .form-control {
    background-color: var(--background-color);
}

.newsletter-disclaimer {
    font-size: 16px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* ==========================================================================
   Секция госуслуг
   ========================================================================== */

.gosuslugi-section {
    padding: 140px 0;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.gosuslugi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.gosuslugi-title {
    font-size: 44px;
    line-height: 54px;
    color: var(--white);
    margin-bottom: 20px;
}

.gosuslugi-description {
    font-size: 20px;
    line-height: 28px;
    color: var(--white);
    margin-bottom: 30px;
}

.gosuslugi-image {
    max-width: 100%;
}

.gosuslugi-image img {
    width: 100%;
    height: auto;
}

/* ==========================================================================
   Подвал сайта
   ========================================================================== */

.site-footer {
    background-color: var(--background-color);
}

.footer-main {
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 42px;
}

.footer-about {
    max-width: 286px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-description {
    font-size: 16px;
    line-height: 22px;
    color: var(--text-color);
}

.footer-nav h4,
.footer-contacts h4,
.footer-app h4 {
    font-family: var(--font-primary);
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 15px;
}

.footer-nav a {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 22px;
    color: var(--text-color);
    text-decoration: none;
}

.footer-nav a:hover {
    color: var(--secondary-color);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-contact-item svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span,
.footer-contact-item a {
    font-family: var(--font-secondary);
    font-size: 20px;
    line-height: 27px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--secondary-color);
}

.footer-contact-phones {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-contact-phones a {
    font-size: 20px;
    line-height: 27px;
}

.app-screenshot {
    width: 219px;
    height: 432px;
    border-radius: 4px;
    overflow: hidden;
}

.app-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(166, 178, 193, 0.3);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    font-size: 16px;
    line-height: 22px;
    color: var(--text-color);
    margin: 0;
}

.copyright a {
    color: var(--text-color);
    text-decoration: none;
}

.copyright a:hover {
    color: var(--secondary-color);
}

/* ==========================================================================
   Блог список
   ========================================================================== */

.blog-list-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.blog-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.blog-list-title {
    font-size: 44px;
    line-height: 54px;
    color: var(--primary-color);
    margin: 0;
}

.blog-list-filters {
    display: flex;
    align-items: center;
    gap: 20px;
}

.filter-group {
    position: relative;
}

.filter-group .form-control {
    min-width: 200px;
    padding-right: 40px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='12' viewBox='0 0 6 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 6L1 11' stroke='%232C3E50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

/* ==========================================================================
   Архив
   ========================================================================== */

.archive-list-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.archive-list-header {
    margin-bottom: 40px;
}

.archive-list-title {
    font-size: 44px;
    line-height: 54px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.archive-list-description {
    font-size: 20px;
    line-height: 32px;
    color: var(--text-color);
}

.archive-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

/* ==========================================================================
   Одиночная запись
   ========================================================================== */

.single-post-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.single-post-layout {
    display: grid;
    grid-template-columns: 1fr 302px;
    gap: 34px;
}

.single-post-content {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    padding: 40px;
}

.single-post-header {
    margin-bottom: 30px;
}

.single-post-title {
    font-size: 44px;
    line-height: 54px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.single-post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.single-post-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 22px;
    color: var(--text-light);
}

.single-post-date svg {
    width: 28px;
    height: 28px;
}

.single-post-category {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: var(--secondary-color);
}

.single-post-image {
    margin-bottom: 30px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.post-image {
    width: 100%;
    height: auto;
}

.single-post-body {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.single-post-body p {
    margin-bottom: 1em;
}

.single-post-body h2,
.single-post-body h3,
.single-post-body h4 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.single-post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(166, 178, 193, 0.3);
}

.single-post-tags {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tags-label {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: var(--text-color);
}

.tag-link {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: var(--secondary-color);
    text-decoration: none;
}

.tag-link:hover {
    color: var(--primary-color);
}

.single-post-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-label {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: var(--text-color);
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.share-vk {
    background-color: #4C75A3;
}

.share-telegram {
    background-color: #0088CC;
}

.share-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--white);
}

.single-post-sidebar {
    position: sticky;
    top: 200px;
}

.sidebar-widget {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    padding: 30px;
}

.widget-title {
    font-family: var(--font-primary);
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.other-news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.other-news-item {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(166, 178, 193, 0.3);
}

.other-news-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.other-news-meta {
    margin-bottom: 10px;
}

.other-news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 28px;
    color: var(--text-light);
}

.other-news-date svg {
    width: 24px;
    height: 24px;
}

.other-news-title {
    font-family: var(--font-secondary);
    font-size: 20px;
    line-height: 27px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.other-news-title a {
    color: inherit;
    text-decoration: none;
}

.other-news-title a:hover {
    color: var(--secondary-color);
}

.other-news-category {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: var(--secondary-color);
}

/* ==========================================================================
   Страница
   ========================================================================== */

.page-content-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.page-layout {
    display: grid;
    grid-template-columns: 1fr 302px;
    gap: 34px;
}

.page-content {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    padding: 40px;
}

.page-header {
    margin-bottom: 30px;
}

.page-title {
    font-size: 44px;
    line-height: 54px;
    color: var(--primary-color);
    margin: 0;
}

.page-image {
    margin-bottom: 30px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.page-image img {
    width: 100%;
    height: auto;
}

.page-body {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
}

.page-body p {
    margin-bottom: 1em;
}

.page-body h2,
.page-body h3,
.page-body h4 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.page-sidebar {
    position: sticky;
    top: 200px;
}

/* ==========================================================================
   404 страница
   ========================================================================== */

.error-404-section {
    padding: 140px 0;
    background-color: var(--background-color);
    text-align: center;
}

.error-404-title {
    font-size: 200px;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.error-404-subtitle {
    font-size: 44px;
    line-height: 54px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.error-404-description {
    font-size: 20px;
    line-height: 32px;
    color: var(--text-color);
    max-width: 500px;
    margin: 0 auto 30px;
}

.error-404-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* ==========================================================================
   Контент не найден
   ========================================================================== */

.content-none-section {
    padding: 140px 0;
    background-color: var(--background-color);
    text-align: center;
}

.content-none-title {
    font-size: 44px;
    line-height: 54px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.content-none-description {
    font-size: 20px;
    line-height: 32px;
    color: var(--text-color);
    max-width: 500px;
    margin: 0 auto 30px;
}

.content-none-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* ==========================================================================
   Пагинация
   ========================================================================== */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: var(--white);
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background-color: var(--secondary-color);
    color: var(--white);
}

.pagination .prev,
.pagination .next {
    background-color: var(--white);
}

.pagination .prev:hover,
.pagination .next:hover {
    background-color: var(--secondary-color);
}

.pagination .prev svg,
.pagination .next svg {
    width: 6px;
    height: 12px;
}

/* ==========================================================================
   Адаптивность
   ========================================================================== */

@media (max-width: 1200px) {
    .hero-sidebar {
        display: none;
    }
    
    .quick-links-grid,
    .news-grid,
    .partners-grid,
    .blog-list-grid,
    .archive-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .directions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .header-contacts {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        display: none;
    }
    
    .hero-content {
        padding-left: 50px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .contact-form-wrapper,
    .newsletter-content,
    .gosuslugi-content {
        grid-template-columns: 1fr;
    }
    
    .single-post-layout,
    .page-layout {
        grid-template-columns: 1fr;
    }
    
    .single-post-sidebar,
    .page-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .header-search {
        display: none;
    }
    
    .quick-links-grid,
    .news-grid,
    .partners-grid,
    .blog-list-grid,
    .archive-list-grid,
    .directions-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .section-title,
    .page-title,
    .blog-list-title,
    .archive-list-title,
    .single-post-title,
    .contact-form-title,
    .newsletter-title,
    .gosuslugi-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-list-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .blog-list-filters {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-group .form-control {
        width: 100%;
    }
    
    .single-post-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .error-404-title {
        font-size: 100px;
    }
}

@media (max-width: 576px) {
    .hero-slider-controls {
        left: 20px;
    }
    
    .hero-arrow {
        width: 48px;
        height: 48px;
    }
    
    .direction-card {
        width: 100%;
        height: auto;
        min-height: 400px;
    }
}

.contact-image-placeholder,
.app-screenshot-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    padding: 24px;
    border: 2px dashed rgba(47, 180, 190, 0.4);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.65);
    color: var(--text-color);
    text-align: center;
}

.event-details-card {
    margin-bottom: 30px;
    padding: 24px 28px;
    border-radius: 24px;
    background-color: var(--white);
    box-shadow: 0 14px 54px -20px rgba(10, 61, 98, 0.2);
}

.event-details-card p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Макетные переопределения 2026
   ========================================================================== */

body {
    background: #edf3f8;
    color: #223850;
}

.site-header {
    position: relative;
    background: transparent;
}

.header-top {
    padding: 22px 0 10px;
    background: #edf3f8;
}

.header-top-inner {
    gap: 24px;
    align-items: flex-start;
}

.header-logo {
    min-width: 250px;
}

.site-logo {
    align-items: flex-start;
    gap: 14px;
}

.logo-icon {
    width: 54px;
    height: 76px;
}

.logo-subtitle {
    font-size: 11px;
    color: #4e657b;
}

.logo-title {
    font-size: 13px;
    line-height: 16px;
    color: #0c4673;
}

.header-search {
    max-width: 290px;
}

.search-form {
    min-height: 44px;
    padding: 0 18px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(13, 70, 114, 0.06);
}

.search-field {
    font-size: 15px;
}

.header-contacts {
    gap: 22px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.header-contact-item a,
.header-contact-item span {
    font-size: 14px;
    font-weight: 600;
    color: #223850;
}

.main-navigation {
    border-top: 0;
    background: #edf3f8;
}

.main-navigation .container-fluid {
    display: flex;
    justify-content: center;
    position: relative;
}

.main-navigation ul {
    gap: 34px;
}

.main-navigation a {
    padding: 12px 0 18px;
    font-size: 14px;
    color: #223850;
}

.mobile-menu-toggle {
    margin-left: auto;
}

.breadcrumbs {
    padding: 12px 0 22px;
    font-size: 13px;
    color: #a6b6c5;
}

.breadcrumbs a {
    color: #a6b6c5;
}

.page-title,
.archive-list-title,
.blog-list-title,
.single-post-title,
.contact-form-title,
.newsletter-title,
.gosuslugi-title,
.section-title {
    color: #0d4672;
    font-size: 36px;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.btn {
    min-height: 52px;
    padding: 12px 28px;
    font-size: 17px;
    border-radius: 999px;
}

.btn-primary {
    background: #35c0cf;
    color: #fff;
}

.btn-primary:hover {
    background: #1596aa;
}

.hero-section {
    height: auto;
    padding-bottom: 72px;
}

.hero-slider {
    min-height: 620px;
    background: #0d4672;
}

.hero-slide,
.hero-slide.active {
    position: relative;
    min-height: 620px;
}

.hero-content {
    width: calc(100% - 390px);
    padding: 140px 0 110px 40px;
    align-items: flex-end;
}

.hero-title {
    max-width: 540px;
    font-size: 28px;
    line-height: 1.08;
    text-transform: uppercase;
}

.hero-meta {
    flex-wrap: wrap;
}

.hero-slider-controls {
    left: 40px;
    bottom: 34px;
}

.hero-dot {
    width: 8px;
    height: 8px;
}

.hero-arrow {
    width: 40px;
    height: 40px;
}

.hero-sidebar {
    top: 0;
    width: 390px;
    height: 100%;
}

.hero-sidebar-card {
    width: 390px;
    height: 155px;
    padding: 0 38px;
    gap: 22px;
    border-bottom: 1px solid rgba(13, 70, 114, 0.08);
}

.hero-sidebar-title {
    font-size: 16px;
    line-height: 1.25;
}

.hero-sidebar-link {
    display: none;
}

.quick-links-section {
    display: none;
}

.news-section,
.directions-section,
.partners-section,
.contact-form-section,
.blog-list-section,
.archive-list-section,
.single-post-section,
.page-content-section,
.inner-page-section,
.documents-archive-section,
.events-archive-section {
    padding: 46px 0 78px;
    background: #edf3f8;
}

.section-header {
    margin-bottom: 24px;
}

.section-link {
    font-size: 14px;
    gap: 8px;
}

.news-grid,
.blog-list-grid,
.archive-list-grid {
    gap: 22px;
}

.news-card {
    border-radius: 0;
    box-shadow: none;
}

.news-card-image {
    height: 190px;
}

.news-card-body {
    padding: 16px 18px 20px;
}

.news-card-meta {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    margin-bottom: 12px;
}

.news-card-date,
.news-card-category,
.single-post-date,
.other-news-date {
    font-size: 13px;
}

.news-card-title {
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 0;
}

.news-card-category {
    font-weight: 700;
}

.directions-grid {
    gap: 12px;
}

.direction-card {
    width: auto;
    min-height: 265px;
    padding: 22px;
    border-radius: 0;
}

.direction-title {
    font-size: 16px;
    line-height: 1.3;
}

.partners-tabs {
    display: flex;
    gap: 18px;
}

.partner-tab {
    border: 0;
    background: transparent;
    padding: 0;
    border-radius: 0;
    color: #6d8091;
}

.partner-tab.active,
.partner-tab:hover {
    background: transparent;
    color: #0d4672;
}

.partners-grid {
    gap: 16px;
}

.partner-card {
    min-height: 92px;
    border-radius: 0;
    box-shadow: none;
    padding: 20px;
}

.partner-name {
    font-size: 13px;
    line-height: 1.45;
    color: #223850;
}

.contact-form-section {
    background: rgba(13, 70, 114, 0.04);
}

.contact-form-wrapper {
    gap: 42px;
}

.contact-form-container {
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.contact-form-title {
    font-size: 24px;
}

.contact-form-description {
    font-size: 14px;
    line-height: 1.6;
    max-width: 310px;
}

.form-control {
    min-height: 50px;
    padding: 14px 24px;
    font-size: 15px;
    line-height: 1.3;
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(13, 70, 114, 0.06);
}

textarea.form-control {
    min-height: 180px;
    border-radius: 24px;
}

.form-actions {
    justify-content: space-between;
    align-items: center;
}

.form-disclaimer,
.newsletter-disclaimer {
    max-width: 280px;
    font-size: 12px;
    line-height: 1.5;
}

.newsletter-section {
    padding: 82px 0;
    background: linear-gradient(90deg, #0d4672 0%, #123d63 100%);
}

.newsletter-content {
    grid-template-columns: 1.3fr 0.9fr;
    gap: 48px;
}

.newsletter-title {
    max-width: 620px;
    font-size: 30px;
    color: #fff;
}

.newsletter-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.86);
}

.newsletter-form-container {
    background: transparent;
    padding: 0;
}

.newsletter-form .form-control {
    background: #fff;
}

.gosuslugi-section {
    padding: 76px 0;
}

.gosuslugi-content {
    gap: 48px;
}

.partner-strip-section {
    padding: 40px 0 56px;
    background: #fff;
}

.section-header-centered {
    justify-content: center;
}

.partner-strip-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px;
    align-items: center;
}

.partner-strip-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 86px;
    color: #223850;
}

.partner-strip-logo {
    max-width: 100%;
    max-height: 44px;
    object-fit: contain;
}

.partner-strip-placeholder {
    font-size: 24px;
    font-weight: 700;
    color: #7891a7;
}

.partner-strip-controls {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
}

.home-contacts-section {
    background: #fff;
}

.home-contacts-map {
    padding: 56px 0 46px;
    background:
        radial-gradient(circle at 80% 30%, rgba(53, 192, 207, 0.12), transparent 18%),
        linear-gradient(180deg, rgba(13, 70, 114, 0.04), rgba(13, 70, 114, 0.04)),
        #eef3f7;
}

.home-contacts-card {
    width: 320px;
    padding: 30px 26px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px -28px rgba(13, 70, 114, 0.35);
}

.home-contacts-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    color: #223850;
    font-size: 14px;
    line-height: 1.6;
}

.gosuslugi-title {
    max-width: 520px;
    font-size: 26px;
    color: #fff;
}

.gosuslugi-description {
    font-size: 15px;
}

.site-footer {
    background: #edf3f8;
}

.footer-main {
    padding: 54px 0 24px;
}

.footer-grid {
    grid-template-columns: 1.05fr 0.8fr 1fr 240px;
    gap: 28px;
}

.footer-description {
    display: none;
}

.footer-nav h4,
.footer-contacts h4,
.footer-app h4 {
    display: none;
}

.footer-nav a {
    font-size: 14px;
}

.footer-contact-item span,
.footer-contact-item a {
    font-size: 14px;
    line-height: 1.4;
}

.app-screenshot,
.app-screenshot-placeholder {
    width: 180px;
    height: 270px;
    min-height: 270px;
    border-radius: 0;
    background: #fff;
}

.app-screenshot-placeholder {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 28px 22px;
    border: 0;
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.footer-bottom {
    border-top: 0;
    padding: 0 0 40px;
}

.footer-bottom-inner {
    justify-content: flex-start;
}

.copyright {
    font-size: 13px;
    line-height: 1.6;
}

.single-post-layout,
.page-layout {
    grid-template-columns: minmax(0, 1fr) 260px;
    align-items: start;
}

.single-post-content,
.page-content {
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.single-post-sidebar .sidebar-widget {
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.widget-title {
    font-size: 18px;
    color: #0d4672;
}

.other-news-item {
    padding-bottom: 24px;
}

.page-body,
.single-post-body {
    max-width: 760px;
    font-size: 15px;
    line-height: 1.72;
}

.events-archive-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 72px;
    align-items: start;
}

.events-filter-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #223850;
}

.filter-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: #35c0cf;
}

.archive-side-button {
    width: 100%;
}

.events-list {
    display: flex;
    flex-direction: column;
}

.event-list-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) 220px;
    gap: 26px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(13, 70, 114, 0.14);
}

.event-list-date {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #90a2b4;
    font-size: 13px;
}

.event-list-title {
    font-size: 18px;
    line-height: 1.35;
    margin: 0 0 10px;
}

.event-list-title a {
    color: #223850;
}

.event-list-tag {
    margin-bottom: 12px;
    color: #35c0cf;
    font-size: 14px;
    font-weight: 700;
}

.event-list-excerpt {
    max-width: 520px;
    color: #9aacbb;
    font-size: 14px;
    line-height: 1.6;
}

.event-list-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.event-status {
    font-size: 14px;
    font-weight: 700;
}

.event-status.is-open {
    color: #2fac54;
}

.event-status.is-closed {
    color: #ef5c45;
}

.documents-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin: 28px 0 34px;
    flex-wrap: wrap;
}

.documents-tabs {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.documents-tab {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 24px;
    border-radius: 999px;
    background: #fff;
    color: #223850;
    box-shadow: inset 0 0 0 1px rgba(13, 70, 114, 0.06);
}

.documents-tab.is-active {
    background: #35c0cf;
    color: #fff;
}

.documents-search {
    width: min(100%, 320px);
}

.documents-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.documents-table-head,
.documents-table-row {
    display: grid;
    grid-template-columns: 80px 160px 1fr 170px;
    gap: 18px;
    align-items: center;
    padding: 22px 28px;
}

.documents-table-head {
    background: #0d4672;
    color: #fff;
    font-weight: 700;
}

.documents-table-row {
    background: rgba(255, 255, 255, 0.44);
    color: #223850;
}

.documents-table-row:hover {
    background: rgba(255, 255, 255, 0.8);
}

.inner-page-content {
    width: 100%;
}

.content-section-block {
    margin-top: 44px;
}

.content-section-title {
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 1.2;
    color: #0d4672;
}

.content-section-title-centered {
    text-align: center;
}

.about-page-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.section-side-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: sticky;
    top: 20px;
}

.side-pill,
.pill-tab {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 999px;
    background: #fff;
    color: #223850;
    box-shadow: inset 0 0 0 1px rgba(13, 70, 114, 0.06);
}

.side-pill.is-active,
.pill-tab.is-active {
    background: #35c0cf;
    color: #fff;
}

.pill-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.section-copy {
    max-width: 900px;
}

.info-card-grid {
    display: grid;
    gap: 16px;
}

.info-card-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card-grid-2x2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
    padding: 28px;
    background: #fff;
    color: #223850;
}

.info-card.is-accent {
    background: #35c0cf;
    color: #fff;
}

.info-card.is-dark {
    background: #174e79;
    color: #fff;
}

.info-card h3 {
    margin: auto 0 20px;
    font-size: 18px;
    line-height: 1.3;
    color: inherit;
}

.info-card a {
    color: #35c0cf;
    font-weight: 700;
}

.info-card.is-accent a,
.info-card.is-dark a {
    color: #fff;
}

.info-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #35c0cf;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.doc-card-grid {
    display: grid;
    gap: 16px;
}

.doc-card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.doc-card-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.doc-link-card {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 94px;
    padding: 18px 24px;
    background: #fff;
    color: #223850;
}

.doc-link-card.is-accent {
    background: #35c0cf;
    color: #fff;
}

.doc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #35c0cf;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.doc-link-card.is-accent .doc-icon {
    background: rgba(255, 255, 255, 0.2);
}

.doc-icon.external {
    font-size: 20px;
    font-weight: 400;
}

.legal-info-list,
.split-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 18px;
}

.split-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px;
}

.split-links a {
    color: #2e5f8e;
}

.contact-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.contact-simple-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #223850;
}

.map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    background: linear-gradient(135deg, rgba(53, 192, 207, 0.12), rgba(13, 70, 114, 0.08));
    color: #6f8498;
}

@media (max-width: 1100px) {
    .hero-content {
        width: 100%;
        padding-right: 40px;
    }

    .hero-sidebar {
        position: static;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-sidebar-card {
        width: 50%;
    }

    .events-archive-layout,
    .about-page-layout,
    .single-post-layout,
    .page-layout {
        grid-template-columns: 1fr;
    }

    .section-side-nav {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-grid,
    .newsletter-content,
    .info-card-grid-4,
    .info-card-grid-3,
    .doc-card-grid-3,
    .split-links,
    .partner-strip-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-top-inner,
    .header-contacts {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-navigation ul,
    .hero-sidebar {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 36px;
    }

    .hero-content,
    .hero-slider-controls {
        left: 20px;
        padding-left: 0;
    }

    .footer-grid,
    .newsletter-content,
    .info-card-grid-4,
    .info-card-grid-3,
    .doc-card-grid-3,
    .doc-card-grid-2,
    .info-card-grid-2x2,
    .split-links,
    .partner-strip-list,
    .documents-table-head,
    .documents-table-row {
        grid-template-columns: 1fr;
    }

    .event-list-item,
    .events-archive-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .documents-toolbar,
    .contact-info-row,
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

.single-lead-title {
    margin-bottom: 28px;
    font-size: 22px;
    line-height: 1.3;
    color: #223850;
}

.event-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.event-meta-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.event-meta-item span {
    color: #5ebdca;
    font-size: 13px;
}

.event-meta-item strong {
    font-size: 18px;
    color: #223850;
}

.event-register-btn {
    min-width: 320px;
}

.partners-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 768px) {
    .event-meta-grid,
    .partners-grid-compact {
        grid-template-columns: 1fr;
    }

    .event-register-btn {
        min-width: 0;
        width: 100%;
    }
}
