/* Base Styles — шрифты в стиле editorial (top15moscow): Inter для текста, Playfair Display для заголовков */
:root {
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-accent: #ff4d00;
    --color-gray-light: #F5F5F5;
    --color-gray-medium: #E0E0E0;
    --color-gray-dark: #333;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --transition: all 0.3s ease;
}

/* Badge Styles */
.premium-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
    border: 1px solid #ffd700;
}

.premium-badge i {
    font-size: 10px;
}

.sponsor-badge {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffd700;
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    border: 2px solid #ffd700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sponsor-badge i {
    font-size: 11px;
    color: #ffd700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--color-black);
    line-height: 1.6;
    background-color: var(--color-white);
    padding-top: 102px; /* Space for fixed header (actual header height) */
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.section {
    padding: 20px 0;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

/* Unified page header spacing (used across pages) */
.page-header {
    padding: 20px 0;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 15px auto 0;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: #e03e00;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-icon {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--color-black);
    transition: var(--transition);
    padding: 5px;
}

.btn-icon:hover {
    color: var(--color-accent);
}

/* Стили для кнопок сохранения */
.save-btn {
    background: var(--color-accent) !important;
    color: var(--color-white) !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: var(--transition) !important;
    font-family: var(--font-primary) !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.save-btn:hover {
    background: #e63900 !important;
    transform: translateY(-1px) !important;
    color: var(--color-white) !important;
}

.save-btn i {
    font-size: 14px !important;
}

.save-btn.saved {
    background: #28a745 !important;
}

.save-btn.saved:hover {
    background: #218838 !important;
}

/* Контейнер для кнопки сохранения */
.favorite-section {
    margin: 20px 0;
    text-align: center;
}

.favorite-section .save-btn {
    margin: 0 auto;
    padding: 0 12px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    height: 27.19px !important;
    min-height: 27.19px !important;
    line-height: 27.19px !important;
    display: inline-flex !important;
    align-items: center !important;
}

.favorite-section .save-btn i {
    font-size: 12px !important;
}

/* В блоке article-meta кнопка «Сохранить» визуально как тег: та же высота и скругление */
.article-meta .save-btn {
    padding: 0 12px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    height: 27.19px !important;
    min-height: 27.19px !important;
    line-height: 27.19px !important;
    display: inline-flex !important;
    align-items: center !important;
}

.article-meta .save-btn i {
    font-size: 12px !important;
}

/* Аватар пользователя в header */
.user-avatar {
    position: relative;
    padding: 0;
    border-radius: 50%;
    overflow: hidden;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.user-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 77, 0, 0.3);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: var(--transition);
}

.user-avatar:hover .avatar-img {
    border-color: var(--color-accent);
}

/* Обёртка аватара невесты: подпись сверху, дуга от центра снизу подписи к аватарке */
.header-bride-avatar-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-right: 4px;
    min-height: 40px;
}
.header-bride-ring {
    position: absolute;
    right: 0;
    top: 50%;
    width: 48px;
    height: 48px;
    margin: -24px -4px 0 0;
    border: 2px solid var(--color-accent, #ff4d00);
    border-radius: 50%;
    pointer-events: none;
    animation: header-bride-pulse 2s ease-in-out infinite;
}
.user-avatar-bride {
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-accent, #ff4d00);
}
/* Подпись «Всё для меня» — слева от аватарки, зацикленная анимация подпрыгивания влево-вправо */
.header-bride-label {
    position: absolute;
    right: calc(100% + 8px);
    top: 50%;
    transform: translateY(-50%);
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--color-accent, #ff4d00), #e64500);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(255, 77, 0, 0.35);
    z-index: 2;
    animation: header-bride-label-jump 2.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
@keyframes header-bride-label-jump {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    15% { transform: translateY(calc(-50% - 4px)) rotate(-2deg); }
    30% { transform: translateY(calc(-50% - 10px)) rotate(-4deg); }
    50% { transform: translateY(calc(-50% - 12px)) rotate(3deg); }
    65% { transform: translateY(calc(-50% - 8px)) rotate(1deg); }
    80% { transform: translateY(calc(-50% - 3px)) rotate(-1deg); }
}
@keyframes header-bride-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

/* Мобильная версия: подпись скрыта, кружок невесты — компактно */
@media (max-width: 768px) {
    .header-bride-label {
        display: none;
    }
    .header-bride-avatar-wrap {
        min-height: 36px;
    }
    .header-bride-ring {
        width: 42px;
        height: 42px;
        margin: -21px -3px 0 0;
        border-width: 1.5px;
    }
    .header-actions .user-avatar-bride {
        width: 36px;
        height: 36px;
    }
    .header-actions .user-avatar-bride .avatar-img {
        width: 100%;
        height: 100%;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
}

.header.header-hidden {
    transform: translateY(-100%);
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-box {
    background-color: var(--color-black);
    padding: 8px 15px;
    margin-bottom: 5px;
}

.logo-text {
    color: var(--color-white);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}

.tagline {
    font-family: var(--font-secondary);
    font-style: italic;
    font-size: 14px;
    color: var(--color-accent);
}

/* Слоган в шапке */
.header .logo .tagline {
    font-size: 13.4px;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 20px;
}

.nav-item a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Prevent logo wrap between 768px and 844px by shrinking menu font */
@media (min-width: 768px) and (max-width: 844px) {
    .nav-item a {
        font-size: 10px;
    }
}

.nav-item.active a {
    color: var(--color-accent);
}

.nav-item a:hover {
    color: var(--color-accent);
}

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

/* Выпадающее меню пользователя в хедере */
.header-user-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.user-menu-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 180px;
    max-width: 90vw;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    padding: 8px 0;
    z-index: 1000;
    display: none;
}

.user-menu-dropdown.open {
    display: block;
}

.user-menu-item {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    color: #222;
    text-decoration: none;
    white-space: nowrap;
}

.user-menu-item:hover {
    background: #f5f5f5;
}

.user-menu-divider {
    height: 1px;
    margin: 6px 0;
    background: #e5e5e5;
}

.user-menu-logout {
    color: #c0392b;
}

@media (max-width: 768px) {
    /* На мобильных меню профиля открываем справа от аватарки */
    .header-user-menu {
        position: relative;
    }

    .user-menu-dropdown {
        top: 0;
        left: calc(100% + 8px);
        right: auto;
        transform: translateY(0);
        max-width: 70vw;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-black);
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--color-white);
    z-index: 999;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-item a {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-gray-medium);
}

.mobile-nav-item.active a {
    color: var(--color-accent);
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-bg2.webp');
    background-size: cover;
    background-position: center;
    /* На мобильных — scroll; параллакс (fixed) только от 769px — см. блок ниже */
    background-attachment: scroll;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: visible;
}

/* Главная: фон через <img> — раньше обнаружение LCP и меньше задержка отрисовки, чем у background в CSS */
.hero--bg-img {
    background-image: none !important;
    background-color: transparent;
}
.hero-bg-picture {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.hero-bg-picture .hero-bg-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero-bg-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    overflow: visible;
}

@media (max-width: 768px) {
    .hero:not(.hero--bg-img) {
        background-position: center top;
    }
    .hero--bg-img .hero-bg-media {
        object-position: center top;
    }
}

/* Десктоп: эффект параллакса (как раньше) — фон закреплён относительно окна */
@media (min-width: 769px) {
    .hero {
        background-attachment: fixed;
    }
    /* Главная: на широком экране тот же фон через CSS + fixed; <img> скрыт, чтобы не дублировать слой */
    .hero.hero--bg-img {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-bg2.webp') !important;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .hero--bg-img .hero-bg-picture,
    .hero--bg-img .hero-bg-scrim {
        display: none;
    }
}

.hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* Search Form */
.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    overflow: visible;
}

/* Custom select base */
.custom-select {
    position: relative;
    width: 300px;
    background-color: var(--color-white);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-gray-medium);
    font-size: 14px;
}

.select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    cursor: pointer;
    user-select: none;
    min-height: 48px;
}

.select-label {
    color: var(--color-black);
    font-weight: 500;
}

.select-trigger i {
    margin-left: 10px;
    color: var(--color-gray-dark);
}

/* Options dropdown */
.options-container {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-medium);
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    z-index: 99999 !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease, opacity 0.28s ease;
    opacity: 0;
    visibility: hidden;
}

/* Улучшенная прокрутка для выпадающего меню */
.options-container::-webkit-scrollbar {
    width: 6px;
}

.options-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.options-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.options-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.custom-select.active .options-container {
    max-height: 400px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    z-index: 99999 !important;
}

/* Option items */
.option {
    padding: 12px 15px;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-black);
    transition: background-color 0.15s ease, color 0.15s ease;
}

/* Light hover, and accent highlight for active/selected state */
.option:hover {
    background-color: var(--color-gray-light);
    color: var(--color-black);
}

/* Option selected visual (if you add a selected class from JS) */
.option.selected {
    background-color: var(--color-accent);
    color: var(--color-white);
}

/* If you prefer accent hover (optional): uncomment the next block and comment previous hover
.option:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}
*/

/* Search button */
.search-btn {
    padding: 15px 30px;
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    height: 48px;
}

.search-btn:hover {
    background-color: #e03e00;
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.category-icon i {
    font-size: 30px;
}

.category-name {
    font-size: 16px;
    font-weight: 600;
}

/* Vendors in category style */
.vendors-grid-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
}

.vendor-card-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.vendor-card-category:hover {
    transform: translateY(-5px);
}

.vendor-icon {
    width: 120px !important;
    height: 120px !important;
    min-width: 120px !important;
    min-height: 120px !important;
    max-width: 120px !important;
    max-height: 120px !important;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    transition: var(--transition);
    border: 3px solid var(--color-gray-light);
    flex-shrink: 0;
    box-sizing: border-box;
}

.vendor-card-category:hover .vendor-icon {
    border-color: var(--color-accent);
    transform: scale(1.05);
}

.vendor-icon img,
.vendor-icon a img,
.vendor-card-category .vendor-icon img {
    width: 120px !important;
    height: 120px !important;
    min-width: 120px !important;
    min-height: 120px !important;
    max-width: 120px !important;
    max-height: 120px !important;
    object-fit: cover;
    display: block;
    box-sizing: border-box;
}

.vendor-card-category .vendor-name {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
}

.vendor-category {
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.vendor-location {
    color: var(--color-gray-dark);
    font-size: 12px;
    margin-bottom: 8px;
}

.vendor-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.vendor-rating i {
    color: gold;
    font-size: 12px;
}

.vendor-rating span {
    font-size: 12px;
    font-weight: 600;
    margin-left: 3px;
}

/* Vendors Section */
.vendors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.vendor-card {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.vendor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.vendor-image {
    height: 200px;
    overflow: hidden;
}

.vendor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.vendor-card:hover .vendor-image img {
    transform: scale(1.05);
}

.vendor-info {
    padding: 20px;
}

.vendor-name {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
}

.vendor-category {
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}

.vendor-location {
    color: var(--color-gray-dark);
    font-size: 14px;
    margin-bottom: 10px;
}

.vendor-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.vendor-rating i {
    color: gold;
}

.vendor-rating span {
    font-size: 14px;
    font-weight: 600;
    margin-left: 5px;
}

/* Trends Section */
.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.trend-card {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.trend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.trend-image {
    height: 200px;
    overflow: hidden;
}

.trend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.trend-card:hover .trend-image img {
    transform: scale(1.05);
}

.trend-info {
    padding: 20px;
}

.trend-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.trend-description {
    color: var(--color-gray-dark);
    font-size: 14px;
    margin-bottom: 15px;
}

.trend-category {
    display: inline-block;
    background-color: var(--color-gray-light);
    color: var(--color-black);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
}

/* Real Weddings Section */
.weddings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.wedding-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.wedding-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.wedding-image {
    height: 300px;
    overflow: hidden;
}

.wedding-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.wedding-card:hover .wedding-image img {
    transform: scale(1.05);
}

.wedding-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--color-white);
}

.wedding-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.wedding-details {
    font-size: 14px;
}

/* Articles Section */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.article-card {
    background-color: var(--color-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 48px;
}

/* Фильтр по тегам */
.articles-filter {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.tag-filter {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    color: var(--color-gray-dark);
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.tag-filter:hover {
    background: #ff4d00;
    color: white;
    border-color: #ff4d00;
    transform: translateY(-2px);
}

.tag-filter.active {
    background: #ff4d00;
    color: white;
    border-color: #ff4d00;
}

@media (max-width: 768px) {
    .filter-tags {
        gap: 8px;
    }
    
    .tag-filter {
        padding: 6px 12px;
        font-size: 13px;
    }
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-info {
    padding: 20px;
}

.article-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.article-excerpt {
    color: var(--color-gray-dark);
    font-size: 14px;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Блок автора скрыт по умолчанию, кроме страниц статьи и свадьбы */
.article-author {
    display: none !important;
}
.page-article .article-header .article-author,
.page-wedding .article-header .article-author {
    display: flex !important;
}

.article-category {
    display: inline-block;
    background-color: var(--color-gray-light);
    color: var(--color-black);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
}

.article-date {
    color: var(--color-gray-dark);
    font-size: 12px;
}

/* Стили для спонсорского баннера */
.sponsor-banner-card {
    position: relative;
}

.sponsor-banner-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.sponsor-banner-card .article-image {
    position: relative;
}


.sponsor-banner-card .article-title {
    font-family: var(--font-secondary);
    font-style: italic;
    font-size: 28px;
    color: #000000;
    font-weight: 400;
    line-height: 1.3;
}

.sponsor-banner-card .article-excerpt {
    display: none;
}

.sponsor-banner-card .article-category {
    background-color: var(--color-gray-light);
    color: var(--color-black);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
}

.sponsor-banner-card .article-date {
    color: var(--color-gray-dark);
    font-size: 12px;
}


/* Секция "О YesMoment" */
.about-section {
    background: #f8f8f8;
    padding: 40px 0;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}


.about-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}
@media (max-width: 768px) {
    .about-title {
        font-size: 20px;
    }
}

.about-underline {
    width: 120px;
    height: 3px;
    background: var(--color-accent);
    margin: 0 auto 40px;
    border-radius: 2px;
}

.about-text {
    font-size: 18px;
    line-height: 1.6;
    color: #555555;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .about-text {
        font-size: 14px;
    }
}

.about-text p {
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.about-actions .btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.about-actions .btn-primary {
    background: var(--color-accent);
    color: white;
    border: 2px solid var(--color-accent);
}

.about-actions .btn-primary:hover {
    background: #e64400;
    border-color: #e64400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 77, 0, 0.3);
}

.about-actions .btn-outline {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.about-actions .btn-outline:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 77, 0, 0.3);
}

/* PWA install section */
.pwa-install-section {
    background: #f8f8f8;
    padding: 40px 0 60px;
}

.pwa-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 30px 30px;
    border-radius: 0;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}

.pwa-text {
    max-width: 560px;
}

.pwa-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pwa-subtitle {
    font-size: 16px;
    color: #555555;
}

.pwa-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-width: 220px;
}

.pwa-icon-circle {
    width: 140px;
    height: 140px;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.pwa-icon-image {
    width: 96px;
    height: 96px;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pwa-install-button {
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .pwa-card {
        flex-direction: column-reverse;
        align-items: stretch;
        padding: 24px 20px;
        gap: 24px;
    }

    .pwa-title {
        font-size: 18px;
        text-align: left;
    }

    .pwa-subtitle {
        font-size: 14px;
    }

    .pwa-visual {
        min-width: auto;
    }

    .pwa-icon-circle {
        width: 120px;
        height: 120px;
        border-radius: 0;
        margin: 0 auto;
    }
}

/* Footer */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 200px;
}

.footer .logo-box {
    margin-bottom: 10px;
}

.footer-nav {
    display: grid;
    grid-template-columns: 168px 1fr auto;
    gap: 30px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-heading::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
    margin-top: 10px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-gray-medium);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-accent);
}

/* Категории в футере — несколько колонок, чтобы не растягивать блок по высоте */
.footer-links--categories {
    column-count: 3;
    column-gap: 24px;
}

.footer-links--categories li {
    break-inside: avoid;
    margin-bottom: 8px;
}

@media (max-width: 992px) {
    .footer-links--categories {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .footer-links--categories {
        column-count: 2;
        column-gap: 16px;
    }

    .footer-links--categories li {
        margin-bottom: 6px;
    }
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
}

.copyright {
    color: var(--color-gray-medium);
    font-size: 14px;
}

.banner-link-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.banner-link-wrapper:hover {
    color: inherit;
}

.global-footer-banner {
    width: 100%;
    min-height: 180px;
    height: 180px;
    background: linear-gradient(120deg, #ff7a18 0%, #ff4d00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.global-footer-banner .banner-link-wrapper {
    flex: 1;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.global-footer-banner img,
.global-footer-banner video {
    background: #000;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.global-footer-banner video {
    pointer-events: none;
}

.global-footer-banner .footer-banner-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    padding: 0 20px;
}

.global-footer-banner.hero-gradient {
    background: linear-gradient(135deg, #ff7a18 0%, #ff4b01 45%, #d73800 100%);
}

/* Responsive Styles */
@media (max-width: 844px) {
	.global-footer-banner {
		min-height: 140px;
		height: 140px;
	}
	.global-footer-banner .footer-banner-placeholder {
		font-size: 14px;
		padding: 0 12px;
	}
}
/* Гарантируем размеры аватарок в секции популярных исполнителей на всех экранах */
@media (max-width: 768px) {
    .vendor-icon,
    .vendors-grid-categories .vendor-icon {
        width: 120px !important;
        height: 120px !important;
        min-width: 120px !important;
        min-height: 120px !important;
        max-width: 120px !important;
        max-height: 120px !important;
    }
    
    .vendor-icon img,
    .vendor-icon a img,
    .vendors-grid-categories .vendor-icon img {
        width: 120px !important;
        height: 120px !important;
        min-width: 120px !important;
        min-height: 120px !important;
        max-width: 120px !important;
        max-height: 120px !important;
    }
}

@media (max-width: 480px) {
	.global-footer-banner {
		min-height: 110px;
		height: 110px;
	}
	.global-footer-banner .footer-banner-placeholder {
		font-size: 12px;
	}
}
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        align-items: center;
        margin-bottom: 30px;
    }
    
    /* Улучшенные стили для выпадающего меню на планшетах */
    .custom-select.active .options-container {
        max-height: 350px;
        z-index: 99999 !important;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 83px;
    }
    
    /* Более узкая шапка на мобильных, но с достаточной высотой для логотипа */
    .header {
        padding: 19px 0;
    }
    
    /* Новая структура header для мобильных: лого в центре, иконки слева, меню справа */
    .header-container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    /* Левая группа - только иконки профиля */
    .header-actions {
        display: flex;
        gap: 10px;
        align-items: center;
        z-index: 2;
        flex: 0 0 auto;
    }
    
    /* Иконки профиля остаются в начале */
    .header-actions .btn-icon:not(.mobile-menu-toggle),
    .header-actions .user-avatar {
        flex-shrink: 0;
    }
    
    /* Кнопку меню позиционируем в правом углу относительно header-container */
    .mobile-menu-toggle {
        position: absolute !important;
        right: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 24px !important;
        height: 18px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        z-index: 1001 !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
    }
    
    /* Логотип по центру (абсолютное позиционирование) */
    .logo {
        max-width: 250px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        pointer-events: auto;
    }
    
    .logo-box {
        padding: 6px 12px;
        margin-bottom: 3px;
    }
    
    .logo-text {
        font-size: 14px;
        letter-spacing: 0.5px;
    }
    
    .tagline {
        font-size: 12px;
    }
    
    .header .logo .tagline {
        font-size: 12px;
    }
    
    /* Уменьшаем размер иконок в header */
    .btn-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .user-avatar {
        width: 45px;
        height: 45px;
    }
    
    /* Обновляем позицию мобильного меню */
    .mobile-menu {
        top: 83px;
        height: calc(100vh - 83px);
    }
    
    .section {
        padding: 20px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .main-nav {
        display: none;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .search-form {
        flex-direction: column;
        width: 100%;
    }
    
    .custom-select {
        width: 100%;
    }
    
    .search-btn {
        width: 100%;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-nav {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 400px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    /* Мобильные стили для hero-секции */
    .hero {
        padding: 80px 0 60px 0;
        min-height: 500px;
    }
    
    /* Улучшенные стили для выпадающего меню на мобильных */
    .custom-select.active .options-container {
        max-height: 250px;
        z-index: 99999 !important;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .search-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .custom-select {
        width: 100%;
    }
    
    .search-btn {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    /* Мобильные стили для сеток контента */
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-card {
        margin-bottom: 0;
    }
    
    .article-image {
        height: 200px;
    }
    
    .article-title {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .article-excerpt {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .filter-tags {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    
    .tag-filter {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    /* Мобильные стили для спонсорских баннеров */
    .sponsor-banner-card .article-title {
        font-size: 20px;
        line-height: 1.2;
    }
    
    .sponsor-banner-card .article-image {
        height: 180px;
    }
    
    .sponsor-banner-card .article-meta {
        padding: 10px 15px;
    }
    
    .sponsor-banner-card .article-category {
        font-size: 12px;
    }
    
    /* Дополнительные мобильные стили */
    .page-header {
        padding: 40px 0 20px 0;
    }
    
    .section-title {
        font-size: 28px;
        text-align: center;
    }
    
    .weddings-filter,
    .articles-filter {
        padding: 15px 0;
    }
    
    .weddings,
    .articles {
        padding: 40px 0 20px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Мобильные стили для profile.php в режиме просмотра */
    .profile-container.view-mode {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .vendor-header {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .vendor-avatar {
        margin-bottom: 20px;
        margin-right: 0;
    }
    
    .vendor-info {
        width: 100%;
    }
    
    .vendor-info h1 {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .vendor-info .vendor-category {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .vendor-info .vendor-type {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .vendor-info .vendor-location {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .vendor-info .vendor-location .location-info,
    .vendor-info .vendor-location .price-info {
        font-size: 14px;
    }
    
    .vendor-info .venue-info-section {
        font-size: 14px;
    }
    
    .vendor-info .venue-info-section span,
    .vendor-info .venue-info-section a {
        font-size: 14px;
    }
    
    .vendor-info .vendor-rating {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .vendor-info .vendor-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .vendor-info .vendor-contact {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .vendor-info .vendor-contact a {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 12px 20px;
    }
    
    .vendor-info .vendor-contact .btn {
        font-size: 14px;
    }
    
    /* Мобильные стили для галереи */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-image {
        height: 150px;
    }
    
    .gallery-image img {
        object-fit: cover;
    }
    
    /* Мобильные стили для видео */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .video-item iframe {
        height: 200px;
    }
    
    /* Мобильные стили для портфолио */
    .portfolio-section {
        padding: 20px 0;
    }
    
    .portfolio-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .portfolio-section p {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Стили для vendor-header (profile.php в режиме просмотра) */
.vendor-header {
    display: flex;
    align-items: center;
    gap: 30px;
}

.vendor-avatar {
    flex-shrink: 0;
    margin-right: 20px;
}

.vendor-info {
    flex: 1;
}

.vendor-info h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.vendor-info .vendor-category {
    font-size: 18px;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 8px;
}

.vendor-info .vendor-type {
    font-size: 14px;
    color: var(--color-gray-dark);
    margin-bottom: 8px;
}

.vendor-info .vendor-location {
    font-size: 14px;
    color: var(--color-gray-dark);
    margin-bottom: 15px;
}

.vendor-info .vendor-location .location-info,
.vendor-info .vendor-location .price-info {
    font-size: 14px;
}

.vendor-info .venue-info-section {
    font-size: 14px;
    margin-top: 10px;
}

.vendor-info .venue-info-section span {
    font-size: 14px;
}

.vendor-info .venue-info-section a {
    font-size: 14px;
}

.vendor-info .vendor-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.vendor-info .vendor-rating i {
    color: gold;
    font-size: 16px;
}

.vendor-info .vendor-rating span {
    font-size: 16px;
    font-weight: 600;
    margin-left: 5px;
}

.vendor-info .vendor-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-dark);
    margin-bottom: 25px;
}

.vendor-info .vendor-contact {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.vendor-info .vendor-contact a {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vendor-info .vendor-contact .btn-primary {
    background: var(--color-accent);
    color: white;
}

.vendor-info .vendor-contact .btn-primary:hover {
    background: #e55a00;
    transform: translateY(-2px);
}

.vendor-info .vendor-contact .btn-outline {
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    background: transparent;
}

.vendor-info .vendor-contact .btn-outline:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-2px);
}

/* Быстрые ссылки на категории */
.quick-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px 0;
}

.quick-links-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.quick-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 0;
    border: none;
    background: none;
    transition: color 0.3s ease;
}

.quick-link:hover {
    color: #ff6b35;
}

@media (max-width: 768px) {
    .quick-links {
        gap: 8px;
        margin-top: 15px;
        padding: 10px 0;
    }
    
    .quick-links-row {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .quick-link {
        font-size: 13px;
        white-space: nowrap;
        display: inline-block;
    }
}

/* Sticky кнопка регистрации */
.sticky-register-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    background: var(--color-accent);
    color: white;
    border: 2px solid var(--color-accent);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(255, 77, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    cursor: pointer;
}

.sticky-register-btn.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.sticky-register-btn:hover {
    background: #e64400;
    border-color: #e64400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 77, 0, 0.3);
    color: white;
}

.sticky-register-btn i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .sticky-register-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 24px;
        font-size: 16px;
    }
}

/* Блок эксперта в статье/свадьбе */
.expert-block {
    max-width: 560px;
    margin: 40px auto;
    text-align: center;
    font-family: var(--font-primary);
}
.expert-block__avatar-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}
.expert-block__avatar,
.expert-block__avatar-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #f0f0f0;
}
.expert-block__name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}
.expert-block__meta {
    font-size: 13px;
    color: #999;
}
.expert-block__text {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
}
