/* Anasayfa editöryal bölüm — slider sonrası alıntı + 3 sütun */
.mat-editorial {
    --ed-bg: #0a0807;
    --ed-red: #a51c21;
    --ed-gold: #c5a374;
    --ed-light: #f5f0ea;
    background: var(--ed-bg);
    color: var(--ed-light);
    font-family: 'Inter', system-ui, sans-serif;
    padding: 3.5rem 0 0;
}

.mat-editorial__quote-wrap {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 1.25rem 3rem;
}

.mat-editorial__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ed-gold);
    margin-bottom: 1.25rem;
}

.mat-editorial__eyebrow::before {
    content: '';
    display: block;
    width: 2.5rem;
    height: 1px;
    background: var(--ed-red);
    flex-shrink: 0;
}

.mat-editorial__quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.45;
    color: var(--ed-gold);
    margin: 0 0 1rem;
}

.mat-editorial__author {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    color: rgba(197, 163, 116, 0.85);
}

.mat-editorial__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(197, 163, 116, 0.35);
}

.mat-editorial__col {
    padding: 2rem 1.75rem 2.25rem;
    border-right: 1px solid rgba(197, 163, 116, 0.35);
    min-height: 100%;
}

.mat-editorial__col:last-child {
    border-right: none;
}

.mat-editorial__col-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ed-gold);
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(197, 163, 116, 0.35);
}

.mat-editorial__col-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ed-light);
    margin: 0 0 0.65rem;
}

.mat-editorial__col-sub {
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(245, 240, 234, 0.72);
    margin-bottom: 1rem;
}

.mat-editorial__col-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(245, 240, 234, 0.88);
    margin: 0 0 0.75rem;
}

.mat-editorial__col-meta {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: var(--ed-gold);
    margin-bottom: 0.5rem;
}

.mat-editorial__col-attrib {
    font-size: 0.78rem;
    color: rgba(197, 163, 116, 0.8);
}

.mat-editorial__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    padding: 0.45rem 0.85rem;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.mat-editorial__btn--outline {
    border: 1px solid rgba(197, 163, 116, 0.55);
    color: var(--ed-gold);
    background: transparent;
}

.mat-editorial__btn--outline:hover {
    background: rgba(197, 163, 116, 0.12);
    color: var(--ed-light);
}

.mat-editorial__btn--gold {
    border: 1px solid var(--ed-gold);
    color: var(--ed-gold);
    background: transparent;
}

.mat-editorial__btn--gold:hover {
    background: rgba(197, 163, 116, 0.15);
    color: var(--ed-light);
}

.mat-editorial__btn--red {
    border: 1px solid var(--ed-red);
    background: var(--ed-red);
    color: #fff;
}

.mat-editorial__stack {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.mat-editorial__stack .mat-editorial__item + .mat-editorial__item {
    padding-top: 1.75rem;
    border-top: 1px solid rgba(197, 163, 116, 0.22);
}

.mat-editorial__item .mat-editorial__col-title {
    font-size: 1.35rem;
}

.mat-editorial__carousel {
    position: relative;
}

.mat-editorial__carousel-track {
    position: relative;
    min-height: 8.5rem;
}

.mat-editorial__slide {
    display: none;
    animation: matEdFadeIn 0.45s ease;
}

.mat-editorial__slide.is-active {
    display: block;
}

@keyframes matEdFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.mat-editorial__carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1.1rem;
}

.mat-editorial__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(197, 163, 116, 0.35);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.mat-editorial__dot.is-active {
    background: var(--ed-gold);
    transform: scale(1.15);
}

.mat-editorial__col--carousel .mat-editorial__col-title {
    min-height: 0;
}

@media (prefers-reduced-motion: reduce) {
    .mat-editorial__slide {
        animation: none;
    }
}

@media (max-width: 991px) {
    .mat-editorial__grid {
        grid-template-columns: 1fr;
    }
    .mat-editorial__col {
        border-right: none;
        border-bottom: 1px solid rgba(197, 163, 116, 0.35);
        padding: 1.5rem 1.25rem;
    }
    .mat-editorial__col:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .mat-editorial {
        padding-top: 2.5rem;
    }
    .mat-editorial__quote-wrap {
        padding-bottom: 2rem;
    }
}

/* Anasayfa tema — koyu bordo / altın */
body.home-editorial-theme {
    --brand: var(--ed-red, #a51c21);
    --brand-light: #c42a32;
    --brand-dark: #7a1519;
    --dark: var(--ed-bg, #0a0807);
    --darker: #050504;
}

body.home-editorial-theme .mat-split-hero {
  --mat-sh-bg: #f7f5f1;
  --mat-sh-brand: var(--ed-red, #a51c21);
}

body.home-editorial-theme .mat-split-hero .mat-split-hero__title,
body.home-editorial-theme .mat-split-hero .mat-split-hero__stat,
body.home-editorial-theme .mat-split-hero .mat-split-hero__stat strong {
  color: #141820 !important;
}

body.home-editorial-theme .mat-split-hero .mat-split-hero__kicker {
  color: #3d4658 !important;
}

body.home-editorial-theme .mat-split-hero .mat-split-hero__btn--primary {
  background: var(--ed-red, #a51c21);
  border-color: var(--ed-red, #a51c21);
}

body.home-editorial-theme .mat-split-hero .mat-split-hero__eyebrow {
  color: var(--ed-red, #a51c21);
}

/* İlk açılışta alıntının ilk cümlesi görünsün — hero peek ile birlikte */
body.home-editorial-theme .mat-editorial {
  padding-top: 0.75rem;
}

body.home-editorial-theme .mat-editorial__quote-wrap {
  padding-bottom: 1.5rem;
}

body.home-editorial-theme .mat-editorial__eyebrow {
  margin-bottom: 0.5rem;
}

body.home-editorial-theme .mat-editorial__quote {
  font-size: clamp(1.2rem, 2.1vw, 1.85rem);
  line-height: 1.48;
  margin-bottom: 0.55rem;
}
