/* ==========================================================================
   Dörtrenk Kurs | Duyurular (Apple Newsroom Style)
   Yol: css/duyurular.css
   ========================================================================== */

:root {
    --c-primary: #f39a08;
    --c-primary-dark: #d97f00;
    --c-dark: #0f172a;
    --c-text: #64748b;
    --c-bg: #f8fafc;
    --c-white: #ffffff;

    --radius-lg: 32px;
    --radius-md: 16px;

    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.06);
    --shadow-hover: 0 20px 50px -10px rgba(0,0,0,0.15);

    --bezier: cubic-bezier(0.16, 1, 0.3, 1);
}

.dr-newsroom-page {
    padding-bottom: 100px;
    background-color: var(--c-bg);
    position: relative;
    overflow: hidden;
}

.text-center {
    text-align: center;
}

/* Arkaplan */
.dr-mesh-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.dr-mesh-blob {
    position: absolute;
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.3;
}

.blob-news-1 {
    width: 500px;
    height: 500px;
    background: var(--c-primary);
    top: -50px;
    left: -100px;
}

.blob-news-2 {
    width: 420px;
    height: 420px;
    background: #e2e8f0;
    right: -120px;
    top: 40%;
}

/* HERO */
.dr-news-hero {
    padding: 90px 0 40px;
    position: relative;
    z-index: 1;
}

.dr-hero-content {
    max-width: 860px;
    margin: 0 auto;
}

.dr-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--c-white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    color: var(--c-dark);
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
}

.dr-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--c-primary);
    border-radius: 50%;
}

.dr-title-huge {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: var(--c-dark);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 18px 0;
}

.dr-text-gradient {
    background: linear-gradient(135deg, var(--c-primary-dark), var(--c-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dr-hero-desc {
    font-size: 18px;
    color: var(--c-text);
    line-height: 1.8;
    max-width: 700px;
}

/* NEWSROOM BENTO GRID */
.dr-newsroom-bento {
    padding: 20px 0 80px;
    position: relative;
    z-index: 1;
}

.dr-bento-grid {
    display: grid;
    grid-template-columns: 2fr 1.1fr;
    gap: 30px;
    align-items: stretch;
}

/* Sol: Manşet */
.dr-bento-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 520px;
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s var(--bezier), box-shadow 0.4s var(--bezier);
}

.dr-bento-main:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.bento-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--bezier);
    z-index: 1;
}

.bento-bg.placeholder-logo {
    object-fit: contain;
    padding: 80px;
    background: var(--c-white);
}

.dr-bento-main:hover .bento-bg {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.45) 60%, transparent 100%);
    z-index: 2;
    transition: background 0.4s;
}

.dr-bento-main:hover .bento-overlay {
    background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.7) 80%, rgba(15,23,42,0.3) 100%);
}

.bento-content {
    position: relative;
    z-index: 3;
    padding: 40px;
    color: var(--c-white);
}

.dr-tag-glass {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.28);
}

.bento-content h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.bento-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.84);
    line-height: 1.7;
    margin: 0 0 24px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bento-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    font-size: 14px;
    font-weight: 600;
    gap: 20px;
}

.read-btn {
    color: #ffd28a;
    transition: 0.3s;
    white-space: nowrap;
}

.dr-bento-main:hover .read-btn {
    padding-right: 10px;
}

/* Sağ Sidebar */
.dr-bento-sidebar {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--c-dark);
    margin: 0 0 24px 0;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(0,0,0,0.05);
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.sidebar-item {
    display: flex;
    gap: 16px;
    align-items: center;
    text-decoration: none;
    padding: 12px;
    border-radius: var(--radius-md);
    transition: background 0.3s, transform 0.3s;
}

.sidebar-item:hover {
    background: var(--c-bg);
    transform: translateX(4px);
}

.sidebar-img {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    overflow: hidden;
    background: #f1f5f9;
    flex-shrink: 0;
}

.sidebar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.s-kategori {
    font-size: 11px;
    font-weight: 800;
    color: var(--c-primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.sidebar-info h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--c-dark);
    margin: 0 0 8px 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.s-tarih {
    font-size: 13px;
    color: var(--c-text);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .dr-bento-grid {
        grid-template-columns: 1fr;
    }

    .dr-bento-main {
        min-height: 420px;
    }
}

@media (max-width: 768px) {
    .dr-news-hero {
        padding: 80px 0 30px;
    }

    .bento-content {
        padding: 30px 24px;
    }

    .bento-content h2 {
        font-size: 28px;
    }

    .bento-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .dr-bento-sidebar {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .sidebar-item {
        align-items: flex-start;
    }

    .sidebar-img {
        width: 78px;
        height: 78px;
    }

    .bento-bg.placeholder-logo {
        padding: 50px;
    }
}