﻿/* =========================================================
   Dr. Ali Açıkgöz
   Event Detail - Premium Editorial Rebuild
   Scope: Views/Events/Detail.cshtml
   Notes:
   - Fresh class prefix: da-evd-
   - No legacy blue palette
   - Admin-editable content friendly
   ========================================================= */

.da-evd-page {
    --evd-bg: var(--da-bg, #fbf7f0);
    --evd-surface: var(--da-bg-card, #fffaf4);
    --evd-surface-soft: var(--da-bg-soft, #f4eadf);
    --evd-ink: var(--da-ink, #211714);
    --evd-muted: var(--da-ink-muted, #6f625c);
    --evd-soft: var(--da-ink-soft, #92857d);
    --evd-accent: var(--da-burgundy, #7b2638);
    --evd-accent-dark: var(--da-burgundy-dark, #541827);
    --evd-accent-deep: var(--da-burgundy-deep, #321016);
    --evd-gold: var(--da-gold, #b88946);
    --evd-border: var(--da-border, rgba(70, 44, 34, 0.13));
    --evd-border-strong: var(--da-border-strong, rgba(70, 44, 34, 0.22));
    --evd-shadow: 0 18px 48px rgba(65, 38, 28, 0.08);
    --evd-shadow-soft: 0 12px 34px rgba(65, 38, 28, 0.055);
    --evd-shadow-deep: 0 30px 90px rgba(65, 38, 28, 0.14);
    --evd-serif: var(--da-font-serif, Georgia, "Times New Roman", serif);
    color: var(--evd-ink);
    background: radial-gradient(circle at 8% 8%, rgba(184, 137, 70, 0.08), transparent 32rem), linear-gradient(180deg, #fffaf4 0%, #fbf7f0 48%, #f7efe6 100%);
}

    .da-evd-page .container {
        width: min(100% - 48px, 1480px);
        max-width: 1480px;
    }

    .da-evd-page *,
    .da-evd-page *::before,
    .da-evd-page *::after {
        box-sizing: border-box;
    }

    .da-evd-page h1,
    .da-evd-page h2,
    .da-evd-page h3,
    .da-evd-page p,
    .da-evd-page a,
    .da-evd-page span,
    .da-evd-page strong {
        overflow-wrap: anywhere;
    }

    .da-evd-page h1,
    .da-evd-page h2,
    .da-evd-page h3 {
        text-wrap: balance;
    }

/* Hero */

.da-evd-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(3rem, 5vw, 5.35rem) 0 clamp(2.2rem, 3.5vw, 3.4rem);
    border-bottom: 1px solid var(--evd-border);
    background: radial-gradient(circle at 14% 18%, rgba(184, 137, 70, 0.20), transparent 31rem), radial-gradient(circle at 88% 16%, rgba(123, 38, 56, 0.11), transparent 34rem), linear-gradient(135deg, #fffaf4 0%, #f8efe5 52%, #f0e1d2 100%);
}

    .da-evd-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.64), transparent 48%), repeating-linear-gradient( 90deg, rgba(70, 44, 34, 0.032) 0, rgba(70, 44, 34, 0.032) 1px, transparent 1px, transparent 84px );
        opacity: 0.66;
    }

    .da-evd-hero .container {
        position: relative;
        z-index: 1;
    }

.da-evd-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.48fr);
    gap: clamp(1.4rem, 3vw, 3rem);
    align-items: stretch;
}

.da-evd-hero-main {
    align-self: center;
    max-width: 940px;
}

.da-evd-back {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 38px;
    margin-bottom: 0.95rem;
    color: var(--evd-accent-dark) !important;
    font-weight: 800;
    text-decoration: none;
}

    .da-evd-back:hover,
    .da-evd-back:focus {
        color: var(--evd-accent-deep) !important;
        text-decoration: none;
    }

.da-evd-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    padding: 0.42rem 0.82rem;
    border-radius: 999px;
    background: rgba(123, 38, 56, 0.09);
    border: 1px solid rgba(123, 38, 56, 0.16);
    color: var(--evd-accent-dark);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.da-evd-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.9rem 0 1rem;
}

.da-evd-status,
.da-evd-featured {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0.36rem 0.68rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.da-evd-status {
    color: var(--evd-accent-dark);
    background: rgba(123, 38, 56, 0.09);
    border: 1px solid rgba(123, 38, 56, 0.16);
}

.da-evd-status-muted {
    color: var(--evd-muted);
    background: rgba(70, 44, 34, 0.07);
    border-color: rgba(70, 44, 34, 0.14);
}

.da-evd-featured {
    color: #fffaf4;
    background: linear-gradient(135deg, var(--evd-accent-deep), var(--evd-accent));
    border: 1px solid rgba(123, 38, 56, 0.42);
}

.da-evd-title {
    max-width: 15ch;
    margin: 0 0 1rem;
    color: var(--evd-ink);
    font-family: var(--evd-serif);
    font-size: clamp(2.7rem, 4.8vw, 5.15rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 700;
}

.da-evd-summary {
    max-width: 74ch;
    margin: 0;
    color: rgba(33, 23, 20, 0.72);
    font-size: clamp(1rem, 1.1vw, 1.16rem);
    line-height: 1.82;
}

.da-evd-info-panel {
    min-width: 0;
    display: grid;
    gap: 0.8rem;
    padding: clamp(1.25rem, 2vw, 1.7rem);
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(255, 248, 240, 0.92));
    border: 1px solid var(--evd-border);
    box-shadow: var(--evd-shadow-deep);
}

.da-evd-info-card {
    min-width: 0;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: center;
    padding: 0.95rem 1rem;
    background: rgba(255, 250, 244, 0.78);
    border: 1px solid var(--evd-border);
}

.da-evd-info-icon {
    grid-row: span 3;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--evd-accent);
    font-size: 1.45rem;
    line-height: 1;
}

.da-evd-info-label {
    display: block;
    color: var(--evd-soft);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.da-evd-info-value {
    display: block;
    color: var(--evd-ink);
    font-family: var(--evd-serif);
    font-size: 1.2rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.da-evd-info-note {
    display: block;
    color: var(--evd-muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

/* Content */

.da-evd-content-section {
    padding: clamp(2.7rem, 4vw, 4.9rem) 0;
    background: rgba(255, 250, 244, 0.74);
}

.da-evd-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
    gap: 1.1rem;
    align-items: start;
}

    .da-evd-content-grid.is-single {
        grid-template-columns: minmax(0, 1fr);
    }

.da-evd-content-card,
.da-evd-related-card {
    min-width: 0;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(255, 248, 240, 0.92));
    border: 1px solid var(--evd-border);
    box-shadow: var(--evd-shadow-soft);
}

.da-evd-content-card {
    padding: clamp(1.35rem, 2.3vw, 2.15rem);
}

.da-evd-content-head {
    margin-bottom: 1.35rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--evd-border);
}

.da-evd-content-title {
    margin: 0.72rem 0 0;
    color: var(--evd-ink);
    font-family: var(--evd-serif);
    font-size: clamp(1.55rem, 2.1vw, 2.15rem);
    line-height: 1.14;
    letter-spacing: -0.035em;
    font-weight: 700;
}

.da-evd-prose {
    max-width: 820px;
    color: var(--evd-ink);
    font-size: 1.04rem;
    line-height: 1.92;
}

    .da-evd-prose p {
        margin: 0;
        color: rgba(33, 23, 20, 0.78);
    }

        .da-evd-prose p + p {
            margin-top: 1.35rem;
        }

.da-evd-related-card {
    position: sticky;
    top: 104px;
    padding: 1.15rem;
}

.da-evd-related-head {
    margin-bottom: 1rem;
    padding-bottom: 0.95rem;
    border-bottom: 1px solid var(--evd-border);
}

.da-evd-related-title {
    margin: 0.72rem 0 0.5rem;
    color: var(--evd-ink);
    font-family: var(--evd-serif);
    font-size: 1.45rem;
    line-height: 1.18;
    letter-spacing: -0.032em;
    font-weight: 700;
}

.da-evd-related-text {
    margin: 0;
    color: var(--evd-muted);
    line-height: 1.75;
}

.da-evd-related-list {
    display: grid;
    gap: 0.8rem;
}

.da-evd-related-item {
    padding: 0.95rem;
    background: rgba(255, 250, 244, 0.78);
    border: 1px solid var(--evd-border);
}

.da-evd-related-item-title {
    margin: 0 0 0.5rem;
    color: var(--evd-ink);
    font-family: var(--evd-serif);
    font-size: 1.05rem;
    line-height: 1.32;
    letter-spacing: -0.025em;
    font-weight: 700;
}

    .da-evd-related-item-title a {
        color: inherit !important;
        text-decoration: none;
    }

        .da-evd-related-item-title a:hover,
        .da-evd-related-item-title a:focus {
            color: var(--evd-accent-dark) !important;
            text-decoration: none;
        }

.da-evd-related-item-summary {
    margin: 0 0 0.7rem;
    color: var(--evd-muted);
    font-size: 0.94rem;
    line-height: 1.72;
}

.da-evd-related-date {
    color: var(--evd-soft);
    font-size: 0.86rem;
    font-weight: 800;
}

/* Hard guard against accidental legacy helper colors inside this page */

.da-evd-page .text-primary,
.da-evd-page .text-info,
.da-evd-page .link-primary,
.da-evd-page .link-info {
    color: var(--evd-accent) !important;
}

.da-evd-page .bg-primary,
.da-evd-page .bg-info {
    color: #fffaf4 !important;
    background: linear-gradient(135deg, var(--evd-accent-dark), var(--evd-accent)) !important;
}

.da-evd-page .border-primary,
.da-evd-page .border-info {
    border-color: rgba(123, 38, 56, 0.24) !important;
}

/* Responsive */

@media (max-width: 1399.98px) {
    .da-evd-page .container {
        width: min(100% - 40px, 1320px);
    }
}

@media (max-width: 1199.98px) {
    .da-evd-hero-shell,
    .da-evd-content-grid {
        grid-template-columns: 1fr;
    }

    .da-evd-title {
        max-width: 17ch;
        font-size: clamp(2.5rem, 5.2vw, 4.4rem);
    }

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

    .da-evd-related-card {
        position: static;
    }
}

@media (max-width: 991.98px) {
    .da-evd-info-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .da-evd-page .container {
        width: min(100% - 28px, 1480px);
    }

    .da-evd-hero {
        padding: 2.4rem 0 2rem;
    }

    .da-evd-title {
        max-width: none;
        font-size: clamp(2.35rem, 11vw, 3.35rem);
        line-height: 1;
    }

    .da-evd-info-card {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .da-evd-info-icon {
        width: 44px;
        height: 44px;
    }

    .da-evd-content-section {
        padding: 2.4rem 0;
    }

    .da-evd-prose {
        font-size: 1rem;
        line-height: 1.84;
    }
}
/* =========================================================
   ADIM 26.3D-2
   Event Detail - Minimal Blue Corporate Pass
   Scope: body.da-theme-minimal-blue-corporate .da-evd-page
   ========================================================= */

body.da-theme-minimal-blue-corporate .da-evd-page {
    --evd-bg: #f6f8fb;
    --evd-surface: #ffffff;
    --evd-surface-soft: #eef3f8;
    --evd-ink: #07101f;
    --evd-muted: #5d6675;
    --evd-soft: #8a94a6;
    --evd-accent: #0b4dbb;
    --evd-accent-dark: #071f4a;
    --evd-accent-deep: #061735;
    --evd-gold: #2563eb;
    --evd-border: rgba(15, 23, 42, 0.12);
    --evd-border-strong: rgba(15, 23, 42, 0.22);
    --evd-shadow: 0 18px 48px rgba(15, 23, 42, 0.065);
    --evd-shadow-soft: 0 12px 34px rgba(15, 23, 42, 0.045);
    --evd-shadow-deep: 0 30px 86px rgba(15, 23, 42, 0.12);
    --evd-serif: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--evd-ink);
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px), linear-gradient(180deg, #ffffff 0%, #f7f9fc 44%, #eef3f8 100%);
    background-size: 96px 96px, auto;
}

    body.da-theme-minimal-blue-corporate .da-evd-page .container {
        width: min(100% - 56px, 1480px);
        max-width: 1480px;
    }

    body.da-theme-minimal-blue-corporate .da-evd-page h1,
    body.da-theme-minimal-blue-corporate .da-evd-page h2,
    body.da-theme-minimal-blue-corporate .da-evd-page h3,
    body.da-theme-minimal-blue-corporate .da-evd-page p,
    body.da-theme-minimal-blue-corporate .da-evd-page a,
    body.da-theme-minimal-blue-corporate .da-evd-page span,
    body.da-theme-minimal-blue-corporate .da-evd-page strong {
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

body.da-theme-minimal-blue-corporate .da-evd-hero {
    padding: clamp(3.4rem, 5vw, 5.9rem) 0 clamp(2.2rem, 3.4vw, 3.6rem);
    border-bottom: 1px solid rgba(15, 23, 42, 0.12);
    background: linear-gradient(90deg, rgba(11, 77, 187, 0.052) 1px, transparent 1px), linear-gradient(180deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px), radial-gradient(circle at 86% 14%, rgba(21, 94, 239, 0.12), transparent 28rem), linear-gradient(135deg, #ffffff 0%, #f7f9fc 54%, #eaf1ff 100%);
    background-size: 96px 96px, 96px 96px, auto, auto;
}

    body.da-theme-minimal-blue-corporate .da-evd-hero::before {
        background: linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.60) 42%, transparent 68%), linear-gradient(135deg, transparent 0%, transparent 56%, rgba(11, 77, 187, 0.10) 56.2%, rgba(11, 77, 187, 0.10) 57%, transparent 57.2%);
        opacity: 1;
    }

body.da-theme-minimal-blue-corporate .da-evd-hero-shell {
    grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.72fr);
    gap: clamp(1.6rem, 3vw, 3.8rem);
    align-items: center;
}

body.da-theme-minimal-blue-corporate .da-evd-back {
    color: #0b4dbb !important;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-weight: 900;
}

    body.da-theme-minimal-blue-corporate .da-evd-back:hover,
    body.da-theme-minimal-blue-corporate .da-evd-back:focus {
        color: #071f4a !important;
    }

body.da-theme-minimal-blue-corporate .da-evd-eyebrow {
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #0b4dbb;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body.da-theme-minimal-blue-corporate .da-evd-status,
body.da-theme-minimal-blue-corporate .da-evd-featured {
    min-height: 30px;
    border-radius: 0;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

body.da-theme-minimal-blue-corporate .da-evd-status {
    color: #0b4dbb;
    background: rgba(11, 77, 187, 0.07);
    border: 1px solid rgba(11, 77, 187, 0.16);
}

body.da-theme-minimal-blue-corporate .da-evd-status-muted {
    color: rgba(11, 18, 32, 0.64);
    background: rgba(15, 23, 42, 0.055);
    border-color: rgba(15, 23, 42, 0.12);
}

body.da-theme-minimal-blue-corporate .da-evd-featured {
    color: #ffffff;
    background: #0b4dbb;
    border: 1px solid #0b4dbb;
}

body.da-theme-minimal-blue-corporate .da-evd-title {
    max-width: 16ch;
    color: #050a14;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(2.65rem, 4.15vw, 5.2rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.062em;
    text-transform: uppercase;
}

body.da-theme-minimal-blue-corporate .da-evd-summary,
body.da-theme-minimal-blue-corporate .da-evd-info-note,
body.da-theme-minimal-blue-corporate .da-evd-related-text,
body.da-theme-minimal-blue-corporate .da-evd-related-item-summary,
body.da-theme-minimal-blue-corporate .da-evd-prose p {
    color: rgba(11, 18, 32, 0.72);
}

body.da-theme-minimal-blue-corporate .da-evd-info-panel {
    gap: 0;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.10);
}

body.da-theme-minimal-blue-corporate .da-evd-info-card {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 0.72rem;
    background: #ffffff;
    border: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

    body.da-theme-minimal-blue-corporate .da-evd-info-card:last-child {
        border-bottom: 0;
    }

body.da-theme-minimal-blue-corporate .da-evd-info-icon {
    color: #0b4dbb;
    background: rgba(11, 77, 187, 0.06);
    border: 1px solid rgba(11, 77, 187, 0.16);
}

body.da-theme-minimal-blue-corporate .da-evd-info-label {
    color: #0b4dbb;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-weight: 900;
}

body.da-theme-minimal-blue-corporate .da-evd-info-value {
    color: #07101f;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-weight: 900;
    letter-spacing: -0.04em;
}

body.da-theme-minimal-blue-corporate .da-evd-content-section {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px), linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
    background-size: 96px 96px, auto;
}

body.da-theme-minimal-blue-corporate .da-evd-content-card,
body.da-theme-minimal-blue-corporate .da-evd-related-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.045);
}

body.da-theme-minimal-blue-corporate .da-evd-content-card {
    position: relative;
}

    body.da-theme-minimal-blue-corporate .da-evd-content-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 1.45rem;
        bottom: 1.45rem;
        width: 4px;
        background: #0b4dbb;
    }

body.da-theme-minimal-blue-corporate .da-evd-content-head,
body.da-theme-minimal-blue-corporate .da-evd-related-head {
    border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

body.da-theme-minimal-blue-corporate .da-evd-content-title,
body.da-theme-minimal-blue-corporate .da-evd-related-title,
body.da-theme-minimal-blue-corporate .da-evd-related-item-title {
    color: #07101f;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-weight: 900;
    letter-spacing: -0.045em;
}

body.da-theme-minimal-blue-corporate .da-evd-content-title {
    text-transform: uppercase;
}

body.da-theme-minimal-blue-corporate .da-evd-related-list {
    gap: 0;
    border: 1px solid rgba(15, 23, 42, 0.12);
}

body.da-theme-minimal-blue-corporate .da-evd-related-item {
    background: #ffffff;
    border: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

    body.da-theme-minimal-blue-corporate .da-evd-related-item:last-child {
        border-bottom: 0;
    }

body.da-theme-minimal-blue-corporate .da-evd-related-item-title a:hover,
body.da-theme-minimal-blue-corporate .da-evd-related-item-title a:focus {
    color: #0b4dbb !important;
}

body.da-theme-minimal-blue-corporate .da-evd-related-date {
    color: #0b4dbb;
    font-weight: 900;
}

body.da-theme-minimal-blue-corporate .da-evd-page .text-primary,
body.da-theme-minimal-blue-corporate .da-evd-page .text-info,
body.da-theme-minimal-blue-corporate .da-evd-page .link-primary,
body.da-theme-minimal-blue-corporate .da-evd-page .link-info {
    color: #0b4dbb !important;
}

body.da-theme-minimal-blue-corporate .da-evd-page .bg-primary,
body.da-theme-minimal-blue-corporate .da-evd-page .bg-info {
    color: #ffffff !important;
    background: #0b4dbb !important;
}

body.da-theme-minimal-blue-corporate .da-evd-page .border-primary,
body.da-theme-minimal-blue-corporate .da-evd-page .border-info {
    border-color: rgba(11, 77, 187, 0.24) !important;
}

@media (max-width: 1399.98px) {
    body.da-theme-minimal-blue-corporate .da-evd-page .container {
        width: min(100% - 44px, 1320px);
    }
}

@media (max-width: 1199.98px) {
    body.da-theme-minimal-blue-corporate .da-evd-hero-shell,
    body.da-theme-minimal-blue-corporate .da-evd-content-grid {
        grid-template-columns: 1fr;
    }

    body.da-theme-minimal-blue-corporate .da-evd-title {
        max-width: 17ch;
        font-size: clamp(2.45rem, 5vw, 4.25rem);
    }

    body.da-theme-minimal-blue-corporate .da-evd-info-panel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.da-theme-minimal-blue-corporate .da-evd-info-card {
        border-bottom: 0;
        border-right: 1px solid rgba(15, 23, 42, 0.12);
    }

        body.da-theme-minimal-blue-corporate .da-evd-info-card:last-child {
            border-right: 0;
        }

    body.da-theme-minimal-blue-corporate .da-evd-related-card {
        position: static;
    }
}

@media (max-width: 991.98px) {
    body.da-theme-minimal-blue-corporate .da-evd-info-panel {
        grid-template-columns: 1fr;
    }

    body.da-theme-minimal-blue-corporate .da-evd-info-card {
        border-right: 0;
        border-bottom: 1px solid rgba(15, 23, 42, 0.12);
    }

        body.da-theme-minimal-blue-corporate .da-evd-info-card:last-child {
            border-bottom: 0;
        }
}

@media (max-width: 767.98px) {
    body.da-theme-minimal-blue-corporate .da-evd-page .container {
        width: min(100% - 28px, 1480px);
    }

    body.da-theme-minimal-blue-corporate .da-evd-title {
        max-width: none;
        font-size: clamp(2.05rem, 9.7vw, 2.95rem);
        line-height: 1.04;
        letter-spacing: -0.048em;
    }

    body.da-theme-minimal-blue-corporate .da-evd-content-card::before {
        display: none;
    }
}

/* =========================================================
   ADIM 26.4B
   İç Sayfalar Global Rhythm Pass
   Scope: Minimal Blue Corporate only
   Goal:
   - Ana sayfa 26.4A ritmiyle iç sayfaları hizalar.
   - Hero / içerik / kart / CTA / footer geçişlerini sakinleştirir.
   - Renk, CMS binding ve markup davranışına dokunmaz.
   ========================================================= */

body.da-theme-minimal-blue-corporate .da-evd-page .container {
    width: min(100% - 52px, 1480px);
}

body.da-theme-minimal-blue-corporate .da-evd-hero {
    padding-top: clamp(3.25rem, 4.8vw, 5.6rem);
    padding-bottom: clamp(2rem, 3.2vw, 3.3rem);
}

body.da-theme-minimal-blue-corporate .da-evd-hero-shell {
    gap: clamp(1.15rem, 2.4vw, 2.25rem);
    align-items: center;
}

body.da-theme-minimal-blue-corporate .da-evd-back {
    margin-bottom: 0.82rem;
}

body.da-theme-minimal-blue-corporate .da-evd-badge-row {
    margin-top: 0.82rem;
    margin-bottom: 0.82rem;
}

body.da-theme-minimal-blue-corporate .da-evd-title {
    margin-bottom: 0.82rem;
}

body.da-theme-minimal-blue-corporate .da-evd-summary {
    line-height: 1.76;
}

body.da-theme-minimal-blue-corporate .da-evd-info-panel {
    gap: 0.7rem;
    padding: clamp(1.08rem, 1.65vw, 1.45rem);
}

body.da-theme-minimal-blue-corporate .da-evd-info-card {
    padding: 0.82rem 0.9rem;
}

body.da-theme-minimal-blue-corporate .da-evd-content-section {
    padding-top: clamp(2.75rem, 4vw, 4.6rem);
    padding-bottom: clamp(3rem, 4.5vw, 5rem);
}

body.da-theme-minimal-blue-corporate .da-evd-content-grid {
    gap: clamp(1rem, 2vw, 1.65rem);
}

body.da-theme-minimal-blue-corporate .da-evd-content-card {
    padding: clamp(1.35rem, 2.2vw, 2rem);
}

body.da-theme-minimal-blue-corporate .da-evd-content-head {
    margin-bottom: 1.15rem;
    padding-bottom: 0.9rem;
}

body.da-theme-minimal-blue-corporate .da-evd-prose {
    line-height: 1.88;
}

body.da-theme-minimal-blue-corporate .da-evd-prose p + p {
    margin-top: 1.18rem;
}

body.da-theme-minimal-blue-corporate .da-evd-related-card {
    padding: 1.08rem;
}

body.da-theme-minimal-blue-corporate .da-evd-related-list {
    gap: 0.72rem;
}

@media (max-width: 1399.98px) {
    body.da-theme-minimal-blue-corporate .da-evd-page .container {
        width: min(100% - 40px, 1320px);
    }
}

@media (max-width: 991.98px) {
    body.da-theme-minimal-blue-corporate .da-evd-hero {
        padding-top: 2.7rem;
        padding-bottom: 2.05rem;
    }

    body.da-theme-minimal-blue-corporate .da-evd-content-section {
        padding-top: 2.65rem;
        padding-bottom: 2.9rem;
    }
}

@media (max-width: 767.98px) {
    body.da-theme-minimal-blue-corporate .da-evd-page .container {
        width: min(100% - 28px, 1480px);
    }
}

@media (max-width: 575.98px) {
    body.da-theme-minimal-blue-corporate .da-evd-hero {
        padding-top: 2.2rem;
        padding-bottom: 1.8rem;
    }

    body.da-theme-minimal-blue-corporate .da-evd-content-section {
        padding-top: 2.25rem;
        padding-bottom: 2.45rem;
    }

    body.da-theme-minimal-blue-corporate .da-evd-content-card,
    body.da-theme-minimal-blue-corporate .da-evd-related-card {
        padding: 1.05rem;
    }

    body.da-theme-minimal-blue-corporate .da-evd-prose {
        line-height: 1.8;
    }
}
