/* =============================================
   ГЕРОИ СВО - Стили в стиле mounmemory
   ============================================= */

/* CSS Variables */
:root {
    --color-primary-bg: #f6fbf7;
    --color-secondary-bg: #faf6f2;
    --color-tertiary-bg: #eee5cc;
    --color-accent-green: #2d5016;
    --color-accent-green-dark: #3d6b1f;
    --color-accent-gold: #bda364;
    --color-text-dark: #231f20;
    --color-text-light: #ffffff;
    --color-text-gray: #887a6f;
    --color-text-muted: #757575;
    --color-border-light: #e3e6e8;
    --color-border-dark: #bdb5af;
    
    --font-main: 'Noto Sans', sans-serif;
    --font-heading: 'Noto Sans', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 6px 20px rgba(0, 0, 0, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-dark);
    background-color: var(--color-secondary-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

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

a:hover {
    color: var(--color-accent-gold);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text-dark);
}

h1 { font-size: 42px; letter-spacing: 2px; }
h2 { font-size: 33px; letter-spacing: 1.5px; }
h3 { font-size: 26px; letter-spacing: 1px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }

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

/* =============================================
   HEADER (mounmemory style)
   ============================================= */
.l-container-fix {
    max-width: 1628px;
    margin: 0 auto;
    padding: 0 20px;
}

.l-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 100;
    background-color: #faf6f2;
}

.l-header__container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 95px;
}

.l-header__logo {
    height: 95px;
    display: flex;
    align-items: center;
}

.l-header__logo a {
    display: inline-block;
}

.l-header__logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* Navigation */
.b-nav {
    display: flex;
    margin: 0 auto;
}

.b-nav__wrap {
    display: flex;
    align-items: center;
    padding: 0 24px;
    height: 40px;
    position: relative;
}

.b-nav__wrap:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    width: 1px;
    height: 20px;
    background-color: #bdb5af;
}

.b-nav__wrap:first-child {
    padding-left: 0;
}

.b-nav__wrap:last-child {
    padding-right: 0;
}

.b-nav__wrap:last-child:after {
    content: none;
}

.b-nav__item {
    color: #231f20;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    transition: color 0.25s;
}

.b-nav__item:hover {
    color: #887a6f;
}

.b-nav__item.active {
    color: #887a6f;
    font-weight: 500;
}

/* Burger Menu */
.b-burger {
    width: 32px;
    height: 32px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
}

.b-burger__line {
    width: 22px;
    height: 3px;
    border-radius: 12px;
    background-color: #73848d;
    display: block;
    transition: 0.3s ease;
}

/* Mobile responsive */
@media (max-width: 992px) {
    .l-header__container {
        min-height: 80px;
        justify-content: flex-end;
        padding: 10px 16px;
    }
    
    .b-nav {
        display: none;
    }
    
    .b-burger {
        display: flex;
    }
}

/* =============================================
   MAIN CONTENT
   ============================================= */
main {
    flex: 1;
    padding-top: 95px;
}

@media (max-width: 992px) {
    main {
        padding-top: 80px;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, rgba(246, 248, 250, 0.5) 0%, var(--color-secondary-bg) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

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

.hero-logo {
    max-width: 300px;
    margin: 0 auto 30px;
}

.hero-text {
    font-size: 18px;
    color: var(--color-text-gray);
    line-height: 1.6;
    padding-top: 20px;
    border-top: 1px solid var(--color-border-dark);
    max-width: 500px;
    margin: 0 auto;
}

/* Quote Section */
.quote-section {
    background-color: var(--color-tertiary-bg);
    background-image: url('/images/pattern-bg.png');
    background-size: 300px;
    padding: 80px 0;
    position: relative;
}

.quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(253, 233, 191, 0.65);
}

.quote-section .container {
    position: relative;
    z-index: 1;
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.quote-text {
    padding-left: 30px;
    border-left: 3px solid var(--color-text-dark);
}

.quote-text p {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.quote-text footer {
    font-size: 20px;
    font-weight: 700;
    text-align: right;
}

.quote-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.quote-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Heroes Section */
.heroes-section {
    padding: 80px 0;
    background-color: var(--color-secondary-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--color-text-gray);
}

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

/* Hero Card */
.hero-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-border-light);
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hero-card-image {
    height: 280px;
    overflow: hidden;
}

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

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

.hero-card-content {
    padding: 20px;
    text-align: center;
}

.hero-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-dark);
}

.hero-card-rank {
    font-size: 14px;
    color: var(--color-text-gray);
}

/* Swiper Customization */
.swiper {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    height: auto;
}

.slider-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--color-accent-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--color-accent-gold);
}

.slider-btn:hover svg path {
    stroke: #fff;
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

.slider-btn svg path {
    stroke: var(--color-accent-gold);
    transition: var(--transition);
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background-color: var(--color-tertiary-bg);
    position: relative;
}

.cta-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, #f9f7ee 0%, #ccc 100%);
    border-radius: var(--radius-lg);
    padding: 40px 50px;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-banner h3 {
    font-size: 32px;
    margin: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--color-accent-green-dark);
    color: #fff;
    padding: 18px 36px;
    border-radius: var(--radius-lg);
    font-size: 20px;
    font-weight: 700;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--color-accent-green);
    color: #fff;
    transform: translateY(-2px);
}

/* News Section */
.news-section {
    padding: 80px 0;
    background-color: var(--color-secondary-bg);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-border-light);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.news-card-content {
    padding: 25px;
}

.news-card-date {
    font-size: 13px;
    color: var(--color-text-gray);
    margin-bottom: 10px;
}

.news-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.news-card-excerpt {
    font-size: 15px;
    color: var(--color-text-gray);
    line-height: 1.6;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-accent-green-dark);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-accent-green);
    color: #fff;
}

.btn-gold {
    background-color: var(--color-accent-gold);
    color: #fff;
}

.btn-gold:hover {
    filter: brightness(1.1);
    color: #fff;
}

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

.btn-outline:hover {
    background: var(--color-accent-gold);
    color: #fff;
}

/* More Link */
.more-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-accent-gold);
}

.more-link::after {
    content: '→';
    transition: var(--transition);
}

.more-link:hover {
    color: var(--color-accent-green-dark);
}

.more-link:hover::after {
    transform: translateX(5px);
}

/* =============================================
   FOOTER (mounmemory style)
   ============================================= */
.site-footer-main {
    background-color: #F6FBF7;
    padding: 60px 0 40px;
    margin-top: auto;
}

.l-footer .footer-container,
.site-footer-main .footer-container {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 60px;
    flex-wrap: nowrap;
}

.footer-logo-area {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.footer-logo-area a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-logo-area a:hover {
    opacity: 0.8;
}

.footer-logo-area img {
    width: 200px;
    height: auto;
    display: block;
}

.footer-section-divider {
    width: 1px;
    align-self: stretch;
    background-color: #231f20;
    flex-shrink: 0;
}

.footer-nav-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, auto));
    column-gap: 60px;
    row-gap: 20px;
    flex: 1;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
}

.footer-nav-col h4 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.footer-nav-col h4 a {
    color: #231f20;
    text-decoration: none;
    transition: color 0.25s;
}

.footer-nav-col h4 a:hover {
    color: #887a6f;
}

.footer-nav-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-col ul li a {
    font-size: 16px;
    color: #231f20;
    line-height: 1.5;
    transition: color 0.25s;
}

.footer-nav-col ul li a:hover {
    color: #887a6f;
}

.footer-nav-col-single {
    justify-content: flex-start;
}

.footer-nav-copy {
    grid-column: 1 / -1;
    font-size: 14px;
    color: #333;
    margin-top: 20px;
    text-align: center;
}

.footer-contact {
    flex-shrink: 0;
    max-width: 300px;
}

.footer-contact h4 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #231f20;
}

.footer-contact a {
    display: block;
    font-size: 16px;
    color: #231f20;
    margin-bottom: 10px;
    transition: color 0.25s;
}

.footer-contact a:hover {
    color: #887a6f;
}

/* Footer Responsive */
@media (max-width: 1400px) {
    .footer-container {
        flex-wrap: wrap;
    }
    .footer-nav-wrapper {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
        column-gap: 40px;
}
    .footer-section-divider {
        display: none;
    }
    .footer-nav-col-contacts {
        grid-column: 1 / 2;
}
    .footer-nav-copy {
        grid-column: 1 / 3;
}
}

@media (max-width: 1200px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
}
    .footer-logo-area {
        align-self: center;
}
    .footer-nav-wrapper {
        grid-template-columns: 1fr;
        column-gap: 30px;
    }
    .footer-section-divider {
        display: none;
}
    .footer-nav-col-contacts,
    .footer-nav-copy {
        grid-column: 1 / 2;
    }
}

@media (max-width: 768px) {
    .footer-logo-area {
    flex-direction: column;
        gap: 20px;
    }
    .footer-nav-wrapper {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 30px;
}
    .footer-nav-col h4 {
        font-size: 24px;
    }
    .footer-nav-col ul li a {
        font-size: 14px;
}
    .footer-contact {
        padding: 0;
        max-width: none;
}
    .footer-contact h4 {
        font-size: 24px;
}
}

/* =============================================
   PAGE SPECIFIC STYLES
   ============================================= */

/* Hero Detail Page */
.hero-detail {
    padding: 40px 0 80px;
}

.hero-detail-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
}

.hero-detail-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hero-detail-image img {
    width: 100%;
    height: auto;
}

.hero-detail-content h1 {
    margin-bottom: 20px;
}

.hero-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-border-light);
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-meta-label {
    font-size: 13px;
    color: var(--color-text-gray);
}

.hero-meta-value {
    font-size: 16px;
    font-weight: 600;
}

.hero-biography {
    font-size: 17px;
    line-height: 1.8;
}

.hero-biography p {
    margin-bottom: 20px;
}

/* News Detail Page */
.news-detail {
    padding: 40px 0 80px;
}

.news-detail-header {
    max-width: 900px;
    margin: 0 auto 40px;
}

.news-detail-header h1 {
    margin-bottom: 20px;
}

.news-detail-meta {
    font-size: 14px;
    color: var(--color-text-gray);
}

.news-detail-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.news-detail-image img {
    width: 100%;
    height: auto;
}

.news-detail-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
}

.news-detail-content p {
    margin-bottom: 20px;
}

.news-detail-content img {
    border-radius: var(--radius-sm);
    margin: 30px 0;
}

/* Search Page */
.search-page {
    padding: 40px 0 80px;
}

.search-header {
    text-align: center;
    margin-bottom: 50px;
}

.search-form {
    display: flex;
    max-width: 600px;
    margin: 30px auto 0;
    gap: 15px;
}

.search-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--color-border-light);
    border-radius: var(--radius-md);
    font-size: 16px;
}

.search-form input:focus {
    outline: none;
    border-color: var(--color-accent-gold);
}

.search-results-count {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    color: var(--color-text-gray);
}

/* Unity Page */
.unity-hero {
    background: linear-gradient(135deg, var(--color-accent-green-dark) 0%, var(--color-accent-green) 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.unity-hero h1 {
    color: #fff;
    margin-bottom: 20px;
}

.unity-hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.unity-content {
    padding: 80px 0;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* 404 Page */
.error-page {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.error-content h1 {
    font-size: 120px;
    color: var(--color-accent-gold);
    margin-bottom: 20px;
}

.error-content p {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--color-text-gray);
}

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
    .header-nav {
        gap: 25px;
}

    .quote-wrapper {
        grid-template-columns: 1fr;
    }
    
    .quote-image {
        order: -1;
}

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
}

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 992px) {
    .header-nav {
        display: none;
    }
    
    .burger-menu {
    display: flex;
}

    .hero-detail-grid {
        grid-template-columns: 1fr;
}

    .hero-detail-image {
        max-width: 400px;
        margin: 0 auto;
}

    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
    h3 { font-size: 22px; }
}

@media (max-width: 768px) {
    main {
        padding-top: 70px;
    }
    
    .header-container {
        height: 70px;
}

    .cta-banner {
    flex-direction: column;
    text-align: center;
        padding: 30px;
}

    .cta-banner h3 {
        font-size: 24px;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 30px;
}

    .heroes-section,
    .news-section,
    .quote-section {
        padding: 50px 0;
}

    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 28px; }
    h2 { font-size: 22px; }

    .hero-text {
        font-size: 16px;
}

    .quote-text p {
        font-size: 18px;
    }
}

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 999;
    transition: 0.4s ease;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--color-border-light);
}

.mobile-nav-header h3 {
    font-size: 20px;
    margin: 0;
}

.mobile-nav-close {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-content {
    padding: 10px 0;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: #f8f9fa;
    color: var(--color-accent-gold);
}

/* Hide mobile menu on desktop */
@media (min-width: 993px) {
    .mobile-nav,
    .mobile-nav-overlay {
        display: none !important;
    }
}

/* =============================================
   BREADCRUMBS
   ============================================= */
.breadcrumbs {
    padding: 20px 0;
    margin-bottom: 20px;
    }

.breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    }

.breadcrumbs-item {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.2;
    color: #555;
    }

.breadcrumbs-item::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 14px;
    background-color: var(--color-border-dark);
    transform: rotate(-20deg);
    margin-left: 12px;
    }

.breadcrumbs-item:last-child::after {
    display: none;
}

.breadcrumbs-item a {
    color: #555;
    text-decoration: none;
    transition: var(--transition);
    }

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

.breadcrumbs-item.active {
    color: #999;
}

.breadcrumbs-item.active a {
    color: #999;
    pointer-events: none;
    }
    
/* =============================================
   HOME BANNER
   ============================================= */
.home-banner {
    position: relative;
    color: #fff;
}

.home-banner__image {
    width: 100%;
    height: 1060px;
    object-fit: cover;
}

.home-banner__inner {
    width: 100%;
    position: absolute;
    top: 0;
}

.home-banner__content {
    position: absolute;
    top: 235px;
    display: flex;
        flex-direction: column;
    gap: 80px;
}

.home-banner__blur {
    position: absolute;
    bottom: -1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.09) 20.15%, #FFFFFF 100%);
    width: 100%;
    height: 150px;
    }

.home-banner__header {
    max-width: 610px;
    max-height: 162px;
    display: grid;
    grid-template-columns: 80px 530px;
    grid-gap: 0 10px;
    }

.home-banner__header-title {
    font-size: 4.375em;
    font-weight: 800;
    line-height: 67px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

.home-banner__header-icon {
    max-width: 80px;
    max-height: 80px;
    margin: 0;
}

.home-banner__header-icon svg {
    width: 80px;
    height: 80px;
    }

.home-banner__bottom {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.home-banner__quote {
    position: relative;
    max-width: 613px;
    display: flex;
    gap: 10px;
    padding-left: 30px;
    }

.home-banner__quote-left,
.home-banner__quote-right {
    width: 100%;
    max-width: 19px;
    display: flex;
    flex-shrink: 0;
    }

.home-banner__quote-right {
    transform: rotate(180deg);
    position: absolute;
    bottom: 0;
    right: 0;
    }

.home-banner__quote-icon {
    margin-top: 10px;
    max-width: 19px;
    max-height: 24px;
    margin: 0;
}

.home-banner__quote-icon svg {
    width: 19px;
    height: 24px;
    }

.home-banner__quote-title {
    font-size: 1.25em;
    font-weight: 600;
    line-height: 32px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }

.home-banner__author {
    display: flex;
    align-items: center;
    gap: 23px;
    }

.home-banner__author-image {
    width: 100%;
    max-width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.5);
    }

.home-banner__author-text {
        display: flex;
        flex-direction: column;
    gap: 5px;
    }

.home-banner__author-post,
.home-banner__author-name {
        font-size: 0.875em;
    line-height: 22px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.home-banner__author-name {
    font-weight: 700;
}

.home-banner__subtext {
    padding-top: 20px;
    max-width: 470px;
    font-size: 0.875rem;
        line-height: 22px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Home Banner Responsive */
@media (max-width: 1400px) {
    .home-banner__image {
        object-position: 60%;
    }
}

@media (max-width: 1200px) {
    .home-banner__image {
        height: 920px;
    }
    .home-banner__content {
        top: 205px;
    }
    .home-banner__blur {
        height: 120px;
    }
}

@media (max-width: 992px) {
    .home-banner__image {
        height: 730px;
    }
    .home-banner__content {
        gap: 50px;
        top: 180px;
    }
    .home-banner__blur {
        height: 100px;
    }
    .home-banner__header {
        grid-template-columns: 52px 249px;
        grid-gap: 0 13px;
    }
    .home-banner__header-title {
        font-size: 2.5em;
        line-height: 48px;
    }
    .home-banner__header-icon {
        max-width: 52px;
        max-height: 52px;
    }
    .home-banner__header-icon svg {
        width: 52px;
        height: 52px;
    }
    .home-banner__quote {
        max-width: 368px;
    }
    .home-banner__quote-title {
        font-size: 0.875em;
        font-weight: 500;
        line-height: 22px;
    }
    .home-banner__author-image {
        max-width: 60px;
        height: 60px;
    }
    .home-banner__subtext {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .home-banner__image {
        height: 630px;
        object-position: 70%;
    }
    .home-banner__content {
        top: 150px;
        gap: 30px;
    }
    .home-banner__blur {
        height: 80px;
    }
    .home-banner__header-title {
        font-size: 2.125em;
    }
    .home-banner__quote {
        max-width: 350px;
        gap: 5px;
    }
    .home-banner__quote-title {
        font-size: 0.75em;
    }
    .home-banner__author {
        gap: 15px;
    }
    .home-banner__author-post,
    .home-banner__author-name {
        font-size: 0.75em;
    }
    .home-banner__subtext {
        font-size: 0.75rem;
        padding-top: 0;
    }
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-gray);
    transition: var(--transition);
}

.back-link:hover {
    color: var(--color-accent-gold);
}

.back-link svg {
    flex-shrink: 0;
}

/* =============================================
   GALLERY (improved)
   ============================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    aspect-ratio: 1;
    background-color: #f0f0f0;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Utility classes */
.mt-50 {
    margin-top: 50px;
}

.mt-40 {
    margin-top: 40px;
    }

.mb-30 {
    margin-bottom: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}
