/* ============================================================
   YZ Merkezi - Ana Sayfa (Home) Özel Sayfa Stilleri
   Mimari Kural: Sıfır renk literali - Tüm renkler CSS tokenlarıyla.
   ============================================================ */

/* ── 1. 3D Coverflow Vitrini ───────────────────────────────── */
.home-coverflow-section {
    position: relative;
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: clamp(var(--space-4), 5vw, var(--space-7)) 0;
    background: var(--color-surface);
    color: var(--color-text);
    user-select: none;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    transition: background var(--duration-normal) var(--ease-out);
}

html[data-theme='dark'] .home-coverflow-section {
    background: var(--color-dark-deep);
    color: var(--color-on-dark);
}

.coverflow-ambience {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.coverflow-ambience-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) blur(42px);
    transform: scale(1.18);
    opacity: 0.18;
    transition: opacity 800ms var(--ease-out), filter 800ms var(--ease-out);
}

html[data-theme='dark'] .coverflow-ambience-img {
    filter: brightness(0.2) blur(36px);
    opacity: 0.7;
}

.coverflow-ambience-mask {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--color-surface) 90%);
}

html[data-theme='dark'] .coverflow-ambience-mask {
    background: radial-gradient(circle at center, var(--hero-overlay-end) 0%, var(--color-dark-deep) 100%);
}

.coverflow-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-2);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.coverflow-header {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    text-align: center;
}

.coverflow-header-line {
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-brand));
}

.coverflow-header-line--rev {
    background: linear-gradient(90deg, var(--color-brand), transparent);
}

html[data-theme='dark'] .coverflow-header-line {
    background: linear-gradient(90deg, transparent, var(--color-brand-light));
}

html[data-theme='dark'] .coverflow-header-line--rev {
    background: linear-gradient(90deg, var(--color-brand-light), transparent);
}

.coverflow-eyebrow {
    font-size: var(--font-size-badge);
    font-weight: 750;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-brand);
    margin: 0;
}

html[data-theme='dark'] .coverflow-eyebrow {
    color: var(--color-brand-light);
}

/* 3D Sahne */
.coverflow-stage {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 540px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-4);
    perspective: 1400px;
    transform-style: preserve-3d;
    overflow: hidden;
}

.coverflow-card {
    position: absolute;
    width: 320px;
    height: 480px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-dark-deep);
    border: 1.5px solid var(--color-editorial);
    transform-origin: center center;
    transition: transform 700ms var(--ease-out), opacity 700ms var(--ease-out), filter 700ms var(--ease-out), box-shadow 700ms var(--ease-out);
    cursor: pointer;
    box-shadow: 0 16px 36px var(--color-shadow-dark);
}

.coverflow-card--active {
    cursor: default;
    border: 2px solid var(--color-editorial);
    box-shadow: 0 24px 60px var(--color-shadow-dark), 0 0 35px var(--color-editorial);
}

.coverflow-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.coverflow-card-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        var(--hero-overlay-end) 0%,
        var(--hero-overlay-mid) 40%,
        var(--hero-overlay-start) 100%
    );
    pointer-events: none;
    z-index: 2;
}

.coverflow-card-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: var(--space-4) var(--space-3) var(--space-4);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    z-index: 3;
    transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);
}

.coverflow-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    padding-bottom: var(--space-1);
}

.coverflow-card-title1 {
    font-size: clamp(1.35rem, 2.5vw, 1.6rem);
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-on-dark);
    margin: 0;
    line-height: 1.15;
}

.coverflow-card-title2 {
    font-size: var(--font-size-lead);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-on-dark-secondary);
    line-height: 1.25;
}

.coverflow-card-divider {
    width: 38px;
    height: 2px;
    background: var(--color-editorial);
    border-radius: var(--radius-pill);
    margin: var(--space-1) auto;
    box-shadow: 0 0 10px var(--color-editorial);
}

.coverflow-card-desc {
    font-size: var(--font-size-caption);
    color: var(--color-on-dark-muted);
    max-width: 270px;
    margin: 0 0 var(--space-3);
    line-height: 1.45;
}

.coverflow-card-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: 10px 24px;
    margin-bottom: var(--space-1);
    border-radius: var(--radius-pill);
    background: var(--color-editorial);
    color: var(--color-dark-deep);
    font-size: var(--font-size-badge);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.coverflow-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 16px var(--color-editorial);
    color: var(--color-dark-deep);
}

/* Navigasyon Okları */
.coverflow-btn-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: var(--radius-pill);
    background: var(--color-surface);
    border: 1px solid var(--color-border-strong);
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 40;
    transition: background var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out);
}

html[data-theme='dark'] .coverflow-btn-nav {
    background: var(--hero-control-surface);
    border: 1px solid var(--hero-control-border);
    color: var(--color-on-dark);
}

.coverflow-btn-nav:hover {
    background: var(--color-surface-muted);
    border-color: var(--color-brand);
    transform: translateY(-50%) scale(1.08);
}

html[data-theme='dark'] .coverflow-btn-nav:hover {
    background: var(--hero-control-surface-strong);
    border-color: var(--color-brand-light);
}

.coverflow-btn-nav--prev {
    left: var(--space-3);
}

.coverflow-btn-nav--next {
    right: var(--space-3);
}

/* Pagination Dots */
.coverflow-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    z-index: 30;
}

.coverflow-dot {
    height: 8px;
    width: 8px;
    border-radius: var(--radius-pill);
    background: var(--color-border-strong);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width var(--duration-normal) var(--ease-out), background var(--duration-normal) var(--ease-out);
}

html[data-theme='dark'] .coverflow-dot {
    background: var(--color-glass-strong);
}

.coverflow-dot--active {
    width: 28px;
    background: var(--color-brand);
    box-shadow: 0 0 10px var(--color-focus-ring);
}

html[data-theme='dark'] .coverflow-dot--active {
    background: var(--color-editorial);
    box-shadow: 0 0 10px var(--color-editorial);
}

/* ── 2. Kafa Kafaya Karşılaştırma Vitrini ──────────────────── */
.home-comparison-section {
    background: var(--color-surface-subtle);
    border-bottom: 1px solid var(--color-border);
}

.comparison-quick-bar {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-3);
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow-sm);
}

.comparison-quick-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.comparison-select-wrap {
    flex: 1 1 220px;
    min-width: 180px;
}

.comparison-select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    color: var(--color-text);
    padding: 0 var(--space-2);
    font: inherit;
    transition: border-color var(--duration-fast);
}

.comparison-select:focus {
    border-color: var(--color-focus);
    outline: none;
    box-shadow: 0 0 0 3px var(--color-focus-ring);
}

.comparison-vs-badge-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-pill);
    background: var(--color-brand);
    color: var(--color-on-brand);
    font-weight: 800;
    font-size: var(--font-size-badge-sm);
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

/* 3 Kartlık Ferah Masaüstü Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
}

@media (max-width: 991px) {
    .comparison-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.comparison-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--color-brand-border);
    color: inherit;
}

.comparison-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-2);
}

.comparison-tool-side {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    flex: 1;
}

.comparison-tool-side--right {
    justify-content: flex-end;
    text-align: right;
}

.comparison-tool-logo {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--color-surface-subtle);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.comparison-tool-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
}

.comparison-tool-name {
    font-weight: 750;
    font-size: var(--font-size-body);
    color: var(--color-text);
}

.comparison-vs-badge {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-pill);
    background: var(--color-brand-soft);
    color: var(--color-brand);
    border: 1px solid var(--color-brand-border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 850;
    font-size: var(--font-size-badge-sm);
    margin: 0 var(--space-1);
    flex-shrink: 0;
}

.comparison-card-cat {
    font-size: var(--font-size-badge);
    font-weight: 700;
    color: var(--color-brand);
    margin-bottom: var(--space-1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-card-desc {
    font-size: var(--font-size-caption);
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0 0 var(--space-2);
}

.comparison-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--font-size-caption);
    font-weight: 700;
    color: var(--color-brand);
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-1);
    margin-top: auto;
}

/* ── 3. Uygulamalı Video Rehberler Vitrini ─────────────────── */
.home-guides-section {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-3);
}

.guide-home-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out);
    height: 100%;
}

.guide-home-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--color-brand-border);
    color: inherit;
}

.guide-home-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--color-dark-deep);
}

.guide-home-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-normal) var(--ease-out);
}

.guide-home-card:hover .guide-home-img {
    transform: scale(1.05);
}

.guide-media-badge {
    position: absolute;
    top: var(--space-1);
    left: var(--space-1);
    display: inline-flex;
    align-items: center;
    gap: var(--space-0-5);
    background: var(--hero-control-surface-strong);
    color: var(--color-brand-light);
    border: 1px solid var(--hero-control-border);
    border-radius: var(--radius-pill);
    padding: var(--space-0-5) var(--space-1);
    font-size: var(--font-size-badge-sm);
    font-weight: 750;
    backdrop-filter: blur(8px);
}

.guide-diff-badge {
    position: absolute;
    top: var(--space-1);
    right: var(--space-1);
    border-radius: var(--radius-pill);
    padding: var(--space-0-5) var(--space-1);
    font-size: var(--font-size-badge-sm);
    font-weight: 700;
    background: var(--color-surface-glass-strong);
    color: var(--color-text);
    backdrop-filter: blur(8px);
}

.guide-home-body {
    padding: var(--space-3);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.guide-home-meta {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-badge);
    color: var(--color-text-muted);
    margin-bottom: var(--space-1);
}

.guide-home-title {
    font-size: var(--font-size-lead);
    font-weight: 750;
    line-height: 1.35;
    margin: 0 0 var(--space-1);
    color: var(--color-text);
}

.guide-home-excerpt {
    font-size: var(--font-size-caption);
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0 0 var(--space-2);
    flex: 1;
}

.guide-home-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--font-size-caption);
    font-weight: 700;
    color: var(--color-brand);
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-1);
    margin-top: auto;
}

/* ── 4. Ekosistem Radarı & Etkinlikler Bölümü (Senkron Boyut) ─ */
.home-ecosystem-events-section {
    background: var(--color-surface-subtle);
    border-bottom: 1px solid var(--color-border);
}

.ecosystem-events-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-4);
    align-items: stretch;
    width: 100%;
}

@media (min-width: 992px) {
    .ecosystem-events-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    }
}

/* Sol Sütun: Etkinlikler */
.event-list-block {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    max-width: 100%;
}

.event-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
    flex-wrap: wrap;
    min-width: 0;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    flex: 1;
    justify-content: space-between;
    min-width: 0;
    max-width: 100%;
}

.event-card-home {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2) var(--space-3);
    text-decoration: none;
    color: inherit;
    flex: 1;
    min-height: 68px;
    min-width: 0;
    max-width: 100%;
    transition: transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out);
}

@media (hover: hover) {
    .event-card-home:hover {
        transform: translateX(4px);
        border-color: var(--color-brand-border);
        color: inherit;
    }
}

.event-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: var(--color-brand);
    color: var(--color-on-brand);
    font-weight: 800;
    line-height: 1.1;
    flex-shrink: 0;
}

.event-date-day {
    font-size: 1.15rem;
}

.event-date-month {
    font-size: var(--font-size-badge-sm);
    text-transform: uppercase;
}

.event-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.event-title {
    font-weight: 750;
    font-size: var(--font-size-body);
    margin: 0 0 var(--space-0-5);
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-badge);
    color: var(--color-text-secondary);
    flex-wrap: wrap;
    min-width: 0;
}

.event-meta span {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    word-break: break-word;
}

.event-card-home > .bi-chevron-right {
    margin-left: auto;
    flex-shrink: 0;
}

.event-type-pill {
    font-weight: 700;
    text-transform: uppercase;
    font-size: var(--font-size-badge-sm);
    color: var(--color-brand);
    flex-shrink: 0;
}

/* Sağ Sütun: Ekosistem & Yol Haritası Kartı (Senkron Boyut) */
.ecosystem-hub-wrap {
    height: 100%;
    min-width: 0;
    max-width: 100%;
}

.ecosystem-hub-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    height: 100%;
    margin: 0;
    min-width: 0;
    max-width: 100%;
}

.ecosystem-hub-header {
    margin-bottom: var(--space-2);
}

.ecosystem-hub-badge {
    display: inline-block;
    font-size: var(--font-size-badge);
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-brand);
    background: var(--color-brand-soft);
    padding: var(--space-0-5) var(--space-1);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-1);
}

.ecosystem-hub-title {
    font-size: var(--font-size-title-sm);
    font-weight: 800;
    margin: 0 0 var(--space-1);
    color: var(--color-text);
}

.ecosystem-hub-desc {
    font-size: var(--font-size-caption);
    color: var(--color-text-secondary);
    line-height: 1.55;
    margin: 0;
}

.ecosystem-stats-pills {
    display: flex;
    gap: var(--space-2);
    margin: var(--space-3) 0;
    flex-wrap: wrap;
}

.ecosystem-stat-pill {
    flex: 1 1 120px;
    background: var(--color-surface-subtle);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2);
    text-align: center;
}

.ecosystem-stat-pill-num {
    font-size: 1.4rem;
    font-weight: 850;
    color: var(--color-brand);
    line-height: 1.1;
}

.ecosystem-stat-pill-label {
    font-size: var(--font-size-badge);
    color: var(--color-text-secondary);
    margin-top: var(--space-0-5);
}

.ecosystem-hub-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-top: auto;
}

/* ── 5. Mobil ve Konteyner Taşma Koruması ─────────────────── */
@media (max-width: 767px) {
    .home-coverflow-section {
        min-height: 540px;
        padding: var(--space-4) 0;
        overflow: hidden;
    }

    .coverflow-container {
        padding: 0 var(--space-1);
        max-width: 100vw;
        overflow: hidden;
    }

    .coverflow-stage {
        height: 460px;
        perspective: 900px;
        overflow: hidden;
        max-width: 100vw;
    }

    .coverflow-card {
        width: min(280px, 82vw);
        height: 420px;
        border: 1.5px solid var(--color-editorial);
        box-shadow: 0 12px 28px var(--color-shadow-dark);
    }

    .coverflow-card-content {
        padding: var(--space-3) var(--space-2) var(--space-3);
    }

    .coverflow-card-desc {
        font-size: var(--font-size-badge);
        margin-bottom: var(--space-2);
        max-width: 240px;
    }

    .coverflow-card-cta {
        padding: 8px 18px;
        font-size: var(--font-size-badge-sm);
    }

    .coverflow-btn-nav {
        width: 38px;
        height: 38px;
        z-index: 50;
    }

    .coverflow-btn-nav--prev {
        left: var(--space-1);
    }

    .coverflow-btn-nav--next {
        right: var(--space-1);
    }

    .comparison-quick-form {
        flex-direction: column;
        align-items: stretch;
    }

    .comparison-select-wrap {
        flex: 0 0 auto;
        width: 100%;
    }

    .comparison-vs-badge-sm {
        align-self: center;
    }

    .home-ecosystem-events-section {
        overflow-x: clip;
    }

    .ecosystem-events-grid {
        overflow: visible;
        width: 100%;
    }

    .ecosystem-hub-card {
        padding: var(--space-3);
    }

    .ecosystem-stat-pill {
        flex: 1 1 80px;
        min-width: 0;
    }

    .ecosystem-hub-actions .btn-yz {
        font-size: 0.82rem;
        padding: 0.45rem 0.85rem;
    }

    .event-list {
        justify-content: flex-start;
        gap: var(--space-2);
    }

    .event-card-home {
        flex: 0 0 auto;
        min-height: auto;
        padding: var(--space-2);
        gap: var(--space-2);
        align-items: flex-start;
    }

    .event-date-badge {
        width: 52px;
        height: 52px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .event-card-home > .bi-chevron-right {
        align-self: center;
    }

    .event-title {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.35;
    }

    .event-meta {
        flex-wrap: wrap;
        gap: var(--space-1) var(--space-2);
    }

    .event-meta span {
        display: inline-flex;
        align-items: center;
        max-width: 100%;
        word-break: break-word;
        min-width: 0;
        line-height: 1.3;
    }
}
