/**
 * KASK - Basında Biz Listeleme Sayfası Stilleri
 *
 * @package Consultio_Child
 * @version 1.0.0
 */

/* ============================================
   DESIGN TOKENS
   ============================================ */
.basinda-biz-page {
    --bb-navy: #1B4B9B;
    --bb-navy-dark: #1f4f8f;
    --bb-navy-deep: #1a447b;
    --bb-red: #D32027;
    --bb-text: #1a1a2e;
    --bb-text-soft: #4a5568;
    --bb-text-muted: #718096;
    --bb-bg: #ffffff;
    --bb-bg-soft: #f7f8fb;
    --bb-bg-section: #f4f6fa;
    --bb-border: #e5e9f0;
    --bb-border-soft: #eef1f6;
    --bb-shadow-sm: 0 1px 3px rgba(15, 45, 94, 0.06);
    --bb-shadow-md: 0 4px 16px rgba(15, 45, 94, 0.08);
    --bb-shadow-lg: 0 12px 40px rgba(15, 45, 94, 0.12);
    --bb-shadow-xl: 0 24px 60px rgba(15, 45, 94, 0.18);
    --bb-radius: 14px;
    --bb-radius-sm: 8px;
    --bb-radius-lg: 20px;

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--bb-text);
    line-height: 1.6;
    background: var(--bb-bg);
}

.basinda-biz-page * {
    box-sizing: border-box;
}

/* ============================================
   HERO
   ============================================ */
.bb-hero {
    position: relative;
    background: var(--bb-navy-dark);
    color: #fff;
    padding: clamp(60px, 8vw, 100px) 24px clamp(50px, 6vw, 80px);
    overflow: hidden;
    isolation: isolate;
}

.bb-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, #245aa3 0%, #1f4f8f 50%, #1a447b 100%);
}

.bb-hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
}

.bb-hero__container {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
}

.bb-hero__intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(40px, 5vw, 64px);
}

.bb-hero__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 14px;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
}

.bb-hero__title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 0 16px;
    color: #fff;
}

.bb-hero__sub {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Metrics */
.bb-hero__metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    max-width: 940px;
    margin: 0 auto;
}

.bb-metric {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--bb-radius);
    padding: 28px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.bb-metric:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

.bb-metric__number {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.bb-metric__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ============================================
   ORTAK SECTION
   ============================================ */
.bb-section-head {
    margin-bottom: 40px;
    max-width: 720px;
}

.bb-section-head--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.bb-eyebrow {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bb-red);
    margin-bottom: 12px;
}

.bb-section-title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 700;
    color: var(--bb-navy-dark);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.25;
    position: relative;
    padding-bottom: 14px;
}

.bb-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 44px;
    height: 3px;
    background: var(--bb-red);
    border-radius: 2px;
}

.bb-section-title--center::after {
    left: 50%;
    transform: translateX(-50%);
}

.bb-section-sub {
    font-size: 0.95rem;
    color: var(--bb-text-soft);
    margin: 16px 0 0;
    line-height: 1.6;
}

/* Ortak Badge (Sendika rozeti) */
.bb-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background: var(--badge-color, var(--bb-navy));
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 100px;
    line-height: 1;
}

.bb-badge--sm {
    padding: 4px 10px;
    font-size: 0.65rem;
}

/* ============================================
   BASIN AÇIKLAMALARI BÖLÜMÜ
   ============================================ */
.bb-statements {
    background: #fff;
    padding: clamp(56px, 7vw, 90px) 24px;
}

.bb-statements__inner {
    max-width: 1240px;
    margin: 0 auto;
}

/* Featured Card - Tam genişlik, yan yana */
.bb-featured-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--bb-border-soft);
    border-radius: var(--bb-radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    box-shadow: var(--bb-shadow-sm);
}

.bb-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bb-shadow-xl);
    border-color: var(--bb-navy);
}

.bb-featured-card__img {
    position: relative;
    overflow: hidden;
    background: var(--bb-bg-soft);
    flex: 0 0 52%;
    align-self: stretch;
}

.bb-featured-card__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s ease;
}

.bb-featured-card:hover .bb-featured-card__img img {
    transform: scale(1.05);
}

.bb-featured-card__body {
    flex: 1 1 auto;
    padding: clamp(28px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.bb-featured-card__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bb-red);
    margin-bottom: 16px;
}

.bb-featured-card__label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--bb-red);
    border-radius: 50%;
    animation: bbPulse 2s ease-in-out infinite;
}

@keyframes bbPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.bb-featured-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.bb-featured-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--bb-navy-dark);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.bb-featured-card:hover .bb-featured-card__title {
    color: var(--bb-navy);
}

.bb-featured-card__quote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--bb-text-soft);
    margin: 0 0 24px;
    font-style: italic;
    padding-left: 14px;
    border-left: 3px solid var(--bb-red);

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bb-featured-card__meta {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    font-size: 0.85rem;
    color: var(--bb-text-muted);
    font-weight: 500;
}

.bb-featured-card__meta li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bb-featured-card__meta svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.bb-featured-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--bb-border-soft);
    flex-wrap: wrap;
}

.bb-reflection-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bb-navy);
    background: rgba(27, 75, 155, 0.08);
    padding: 8px 14px;
    border-radius: 100px;
}

.bb-reflection-badge svg {
    flex-shrink: 0;
}

.bb-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bb-navy);
    transition: gap 0.2s, color 0.2s;
}

.bb-featured-card:hover .bb-card-link {
    color: var(--bb-red);
    gap: 10px;
}

@media (max-width: 768px) {
    .bb-featured-card {
        flex-direction: column;
    }

    .bb-featured-card__img {
        flex: 0 0 auto;
        aspect-ratio: 16 / 9;
        width: 100%;
        align-self: auto;
    }

    .bb-featured-card__img img {
        position: absolute;
        inset: 0;
    }
}

/* Diğer Açıklamalar Grid */
.bb-statements__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.bb-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--bb-border-soft);
    border-radius: var(--bb-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: var(--bb-shadow-sm);
}

.bb-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bb-shadow-lg);
    border-color: var(--bb-navy);
}

.bb-card__img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bb-bg-soft);
}

.bb-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.5s ease;
}

.bb-card:hover .bb-card__img img {
    transform: scale(1.05);
}

.bb-card__body {
    padding: 22px 24px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bb-card__date {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--bb-red);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.bb-card__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--bb-navy-dark);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bb-card:hover .bb-card__title {
    color: var(--bb-navy);
}

.bb-card__quote {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--bb-text-soft);
    margin: 0 0 18px;
    font-style: italic;
    flex: 1;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bb-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--bb-border-soft);
    flex-wrap: wrap;
    margin-top: auto;
}

.bb-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.bb-card__reflection-count {
    font-size: 0.78rem;
    color: var(--bb-text-muted);
    white-space: nowrap;
}

.bb-card__reflection-count strong {
    color: var(--bb-navy);
    font-weight: 700;
    font-size: 0.9rem;
}

/* ============================================
   YANSIMALAR BÖLÜMÜ
   ============================================ */
.bb-reflections {
    background: var(--bb-bg-section);
    padding: clamp(56px, 7vw, 90px) 24px;
    border-top: 1px solid var(--bb-border-soft);
    border-bottom: 1px solid var(--bb-border-soft);
}

.bb-reflections__inner {
    max-width: 1240px;
    margin: 0 auto;
}

.bb-reflections__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

/* Yansıma kartları (basin-aciklamasi.css'tekilerle aynı görünüm) */
.bb-reflections__grid .ba-cov-card {
    /* basin-aciklamasi.css'teki .ba-cov-card stillerinin aynısı */
}


/* ============================================
   CTA
   ============================================ */
.bb-cta {
    background: #fff;
    padding: clamp(48px, 6vw, 72px) 24px;
}

.bb-cta__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: clamp(32px, 4vw, 48px);
    background: linear-gradient(135deg, var(--bb-navy-dark) 0%, var(--bb-navy-deep) 100%);
    border-radius: var(--bb-radius-lg);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.bb-cta__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.bb-cta__content {
    flex: 1;
    min-width: 0;
    position: relative;
}

.bb-cta__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.3rem, 2.4vw, 1.75rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.bb-cta__text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.55;
    max-width: 560px;
}

.bb-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fff;
    color: var(--bb-navy);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: all 0.25s ease;
    flex-shrink: 0;
    position: relative;
}

.bb-cta__btn:hover {
    background: var(--bb-red);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(211, 32, 39, 0.3);
    gap: 12px;
}

@media (max-width: 768px) {
    .bb-cta__inner {
        flex-direction: column;
        text-align: center;
    }

    .bb-cta__content {
        text-align: center;
    }

    .bb-cta__text {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 600px) {
    .bb-statements__grid {
        grid-template-columns: 1fr;
    }

    .bb-reflections__grid {
        grid-template-columns: 1fr;
    }

    .bb-featured-card__footer {
        flex-direction: column;
        align-items: flex-start;
    }
}