@import url(\'https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700;800;900&family=Inter:wght@400;500;600;700&display=swap\');

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: #F5F7F6;
    color: #111814;
    font-family: \'Inter\', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Variables */
:root {
    --primary: #004B38;
    --secondary: #006A46;
    --accent: #009B58;
    --text-dark: #111814;
    --text-muted: #68736D;
    --bg-card: #FFFFFF;
    --border: #E4E9E6;
}

/* Global Geometry */
.container {
    max-width: 1280px;
    width: calc(100% - 48px);
    margin: 0 auto;
}

/* Header Row 1 */
.header-top {
    height: 105px;
    width: 100%;
    background-color: var(--primary);
    background-image: linear-gradient(rgba(0,75,56,.84), rgba(0,75,56,.84)), url(\'https://www.bursaspordabugun.com/images/haberler/44352_bursaspor-ahmet-efe-cakmakkayayi-geri-getiriyor_32065.jpg\');
    background-size: cover;
    background-position: center;
    color: #FFF;
    display: flex;
    align-items: center;
}
.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.header-brand {
    display: flex;
    align-items: center;
    height: 100%;
    width: 380px;
}
.header-brand img {
    width: 100%;
    max-height: 80px;
    object-fit: contain;
    object-position: left;
}
.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}
.top-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    font-weight: 500;
}
.social-icons {
    display: flex;
    gap: 16px;
    font-size: 17px;
    margin-left: 12px;
}
.search-form {
    display: flex;
    width: 340px;
    height: 40px;
    background: #FFF;
    border-radius: 4px;
    overflow: hidden;
}
.search-form input {
    flex: 1;
    border: none;
    padding: 0 16px;
    font-size: 14px;
    outline: none;
}
.search-form button {
    width: 46px;
    background: var(--accent);
    color: #FFF;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Main Navigation */
.main-nav {
    height: 58px;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border);
}
.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    height: 100%;
}
.nav-home-icon {
    display: flex;
    align-items: center;
    color: var(--primary);
    font-size: 22px;
}
.nav-links a.nav-item {
    font-family: \'Roboto Condensed\', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}
.nav-links a.nav-item:hover { color: var(--accent); }
.nav-right {
    display: flex;
    align-items: center;
}
.menu-trigger {
    color: var(--primary);
    font-size: 24px;
    cursor: pointer;
}

/* Page Spacing */
.page-content {
    margin-top: 24px;
    padding-bottom: 60px;
}

/* HERO GRID */
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 51%) minmax(0, 25%) minmax(0, 24%);
    column-gap: 14px;
}

/* Main Hero */
.main-hero {
    width: 100%;
    height: 480px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}
.main-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.main-hero-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,.88), rgba(0,0,0,.25) 55%, transparent);
    padding: 0 32px 32px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hero-category {
    background: var(--accent);
    color: #FFF;
    height: 24px;
    padding: 0 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-bottom: 10px;
    border-radius: 2px;
}
.hero-title {
    color: #FFF;
    font-family: 'Inter', Arial, sans-serif;
    font-size: clamp(28px, 2.35vw, 38px) !important;
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -0.3px;
    text-transform: none;
    max-width: 88%;
    text-wrap: balance;
    margin-bottom: 14px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-spot {
    color: rgba(255,255,255,0.95);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    max-width: 85%;
    margin-bottom: 20px;
}
.hero-cta {
    height: 38px;
    background: transparent;
    border: 1px solid #FFF;
    color: #FFF;
    font-size: 12px;
    font-weight: 700;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    border-radius: 2px;
    transition: background 0.2s;
}
.hero-cta:hover { background: rgba(255,255,255,0.1); }
.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 0; width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.hero-dot {
    width: 32px;
    height: 3px;
    background: rgba(255,255,255,.45);
}
.hero-dot.active { background: #00A86B; }

/* Hero Side News */
.side-news {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 480px;
}
.side-news-card {
    background: var(--bg-card);
    height: calc((100% - (14px * 3)) / 4);
    border: 1px solid var(--border);
    border-radius: 5px;
    display: flex;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    overflow: hidden;
}
.side-news-img {
    width: 112px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}
.side-news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
}
.side-news-title {
    font-family: \'Inter\', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.side-news-meta {
    font-size: 11.5px;
    color: #777;
}
.side-news-meta span { color: var(--accent); font-weight: 700; text-transform: uppercase; margin-right: 6px; }

/* Right Sidebar */
.sidebar-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 480px;
}
.widget-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    height: calc((100% - 14px) / 2);
    display: flex;
    flex-direction: column;
}

.widget-header {
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    border-bottom: 1px solid var(--border);
}
.widget-title {
    font-family: \'Roboto Condensed\', Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    border-left: 3px solid var(--accent);
    padding-left: 10px;
    text-transform: uppercase;
}
.widget-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary);
}

/* Match Center Content */
.match-content { padding: 18px 16px; text-align: center; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.match-league { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}
.match-team {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
}
.match-team img { width: 56px; height: 56px; object-fit: contain; margin-bottom: 8px; }
.match-score-area { width: 40%; }
.match-score { font-family: \'Roboto Condensed\', Arial, sans-serif; font-size: 40px; font-weight: 900; line-height: 1; color: var(--text-dark); margin-bottom: 4px; }
.match-status { font-size: 12px; color: var(--accent); font-weight: 700; text-transform: uppercase; }
.match-date { font-size: 12px; color: var(--text-muted); }
.btn-match {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    background: var(--secondary);
    color: #FFF;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    transition: background 0.2s;
}
.btn-match:hover { background: var(--primary); }

/* Standings Content */
.standings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.standings-table th {
    text-align: left;
    padding: 10px 16px;
    color: var(--text-muted);
    font-weight: 600;
    background: #F8F9FA;
    border-bottom: 1px solid var(--border);
}
.standings-table td {
    padding: 0 16px;
    height: 38px;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
}
.standings-table tr.highlight td { background: #EDF7F2; }
.standings-table td:last-child { font-weight: 700; }
.team-name { display: flex; align-items: center; gap: 10px; font-size: 13.5px; }
.team-name img { width: 22px; height: 22px; object-fit: contain; }

/* QUICK LINKS */
.quick-links {
    display: flex;
    width: 100%;
    height: 86px;
    background: #FFF;
    margin: 26px auto;
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.quick-link-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-right: 1px solid var(--border);
    transition: all 0.2s;
}
.quick-link-item:hover {
    background: #F0F8F4;
    color: #007A4D;
}
.quick-link-item:hover i { color: #007A4D; }
.quick-link-item:last-child { border-right: none; }
.quick-link-item i { font-size: 24px; color: var(--accent); transition: color 0.2s; }
.quick-link-item span { font-size: 12px; font-weight: 700; color: var(--text-dark); transition: color 0.2s; }
.quick-link-item:hover span { color: #007A4D; }

/* BOTTOM CONTENT GRID */
.bottom-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 20px;
    align-items: start;
    margin-top: 26px;
    margin-bottom: 26px;
}

/* STANDARDIZED SECTION TITLES */
.section-header {
    height: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border);
}
.section-header h3 {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #111;
    border-left: 3px solid #009B58;
    padding-left: 9px;
    text-transform: uppercase;
    line-height: 1.2;
}
.section-header a { font-size: 12px; font-weight: 600; color: var(--secondary); }

/* Guncel Haberler Grid */
.guncel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.news-grid-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.news-grid-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.news-grid-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.news-grid-tag {
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.news-grid-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--text-dark);
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.news-grid-time {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: auto;
}

/* KOSE YAZILARI REFINEMENTS */
.writers-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.writer-card {
    background: #FFF;
    border: 1px solid #E3E8E4;
    border-radius: 6px;
    min-height: 135px;
    height: auto;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 16px;
    box-sizing: border-box;
    text-decoration: none;
    transition: all 0.2s ease;
}
.writer-card:hover {
    border-color: #009B58;
}
.writer-card:hover .writer-title {
    color: #009B58;
}
.writer-avatar { 
    width: 52px; 
    height: 52px; 
    border-radius: 50%; 
    object-fit: cover; 
    object-position: center top; 
    flex-shrink: 0; 
}
.writer-info { 
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.writer-name { 
    font-size: 13px; 
    font-weight: 700; 
    color: #008F58; 
    line-height: 1.2; 
    margin-bottom: 4px; 
}
.writer-title { 
    font-size: 16px; 
    font-weight: 800; 
    line-height: 1.25; 
    color: #111111; 
    margin-bottom: 6px; 
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}
.writer-date { 
    font-size: 11px; 
    color: #777; 
    margin: 0 0 6px 0; 
}
.writer-read-link {
    font-size: 12px;
    font-weight: 700;
    color: #009B58;
}

/* SON HABERLER */
.son-haberler-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.son-haber-row {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 5px;
    display: flex;
    gap: 16px;
    padding: 12px;
    height: 100px;
}
.son-haber-img {
    width: 135px;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
.son-haber-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.son-haber-tag { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; margin-bottom: 6px; }
.son-haber-title { font-size: 15px; font-weight: 700; color: var(--text-dark); line-height: 1.3; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;}
.son-haber-time { font-size: 11px; color: #777; }

/* TRANSFER & TARAFTAR SECTION */
.feature-section {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 16px;
}
.feature-main {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    height: 330px;
}
.feature-main img { width: 100%; height: 100%; object-fit: cover; }
.feature-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3) 70%, transparent);
    padding: 30px 24px 24px 24px;
    color: #FFF;
}
.feature-tag { background: var(--accent); color: #FFF; padding: 4px 10px; font-size: 11px; font-weight: 700; border-radius: 2px; display: inline-block; margin-bottom: 12px; text-transform: uppercase; }
.feature-title { font-family: 'Roboto Condensed', sans-serif; font-size: 28px; font-weight: 900; line-height: 1.05; margin-bottom: 10px; }
.feature-desc { font-size: 14px; color: rgba(255,255,255,0.9); }
.feature-side-list { display: flex; flex-direction: column; justify-content: space-between; gap: 14px; }
.feature-side-item {
    display: flex; gap: 12px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 5px; padding: 12px; flex: 1; height: 100px;
}
.feature-side-item img { width: 115px; height: 100%; object-fit: cover; border-radius: 4px; }

/* RIGHT SIDEBAR WIDGETS */
.popular-news-list { display: flex; flex-direction: column; gap: 16px; }
.popular-news-item { display: flex; gap: 14px; align-items: center; counter-increment: list; height: 64px; }
.popular-news-num { font-size: 24px; font-weight: 800; color: #E5EAE7; width: 20px; flex-shrink: 0; text-align: center; }
.popular-news-img { width: 70px; height: 48px; border-radius: 4px; object-fit: cover; }
.popular-news-info { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.popular-news-title { font-size: 13px; font-weight: 700; color: var(--text-dark); line-height: 1.3; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.popular-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-pill { background: #F2F6F4; padding: 6px 10px; font-size: 11px; font-weight: 600; color: var(--text-dark); border-radius: 14px; transition: all 0.2s; }
.tag-pill:hover { background: #007A4D; color: #FFF; }

.ad-banner-small {
    width: 100%;
    background: #F4F5F4;
    border: 1px solid #E4E7E5;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
}

/* WIDE PROMO BANNER */
.wide-promo {
    width: 100%;
    height: 165px;
    margin: 0 0 24px 0;
    background-color: var(--primary);
    background-image: linear-gradient(rgba(0,75,56,.85), rgba(0,75,56,.85)), url('https://www.bursaspordabugun.com/images/haberler/44352_bursaspor-ahmet-efe-cakmakkayayi-geri-getiriyor_32065.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 36px;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    letter-spacing: 1px;
}

/* FOOTER */
.site-footer {
    background-color: #003628;
    background-image: linear-gradient(rgba(0,54,40,.97), rgba(0,54,40,.97)), url('https://www.bursaspordabugun.com/images/haberler/44352_bursaspor-ahmet-efe-cakmakkayayi-geri-getiriyor_32065.jpg');
    background-size: cover;
    background-position: center;
    color: #FFF;
    padding: 32px 0 16px 0;
    margin-top: 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 36% 20% 20% 24%;
    gap: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 16px;
}
.footer-logo img {
    width: 310px;
    object-fit: contain;
    object-position: left;
}
.footer-nav a {
    display: block;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    line-height: 1.8;
    transition: color 0.2s;
}
.footer-nav a:hover { color: #FFF; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}
.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    margin-left: 20px;
}
/* SIDEBAR FIXES */
.sidebar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sidebar-promo {
    width: 100%;
    height: 210px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: var(--primary);
    background-image: url('https://www.bursaspordabugun.com/images/haberler/44352_bursaspor-ahmet-efe-cakmakkayayi-geri-getiriyor_32065.jpg');
    background-size: cover;
    background-position: center;
}
.sidebar-promo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 78, 56, .82);
}
.sidebar-promo-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    color: white;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.05;
}

/* FOOTER FIXES */
.footer-top {
    display: grid;
    grid-template-columns: 36% 20% 20% 24%;
    gap: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 16px;
}
.footer-logo img {
    width: 300px !important;
}
.footer-col-nav a {
    display: block;
    color: rgba(255,255,255,.9);
    font-size: 13px;
    line-height: 1.8;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-col-nav a:hover { color: #FFF; }
.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}
.footer-socials a {
    font-size: 18px;
    color: rgba(255,255,255,.9);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.15) !important;
    padding-top: 16px !important;
    padding-bottom: 18px !important;
    display: flex !important;
    justify-content: space-between !important;
    font-size: 11px !important;
    color: #FFF !important;
}
/* SLIDER FIXES */
.hero-slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.main-hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
    z-index: 1;
}
.main-hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}
.main-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 0; width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 3;
}
.hero-dot {
    min-width: 28px;
    height: 28px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: #FFF;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-dot.active {
    background: #00A86B;
    border-color: #00A86B;
}
.hero-dot:hover {
    background: rgba(255,255,255,0.2);
}

/* ==================================================
   NEWS DETAIL PAGE
   ================================================== */
.breadcrumb {
    font-size: 12px;
    color: #7A817E;
    padding: 18px 0 16px 0;
}
.breadcrumb a {
    color: inherit;
    transition: color 0.2s;
}
.breadcrumb a:hover {
    color: #009B63;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 24px;
    align-items: start;
    margin-bottom: 40px;
}

.article-wrapper {
    background: #FFFFFF;
    padding: 28px 34px;
    border: 1px solid #E7EBE9;
    border-radius: 5px;
}

.article-badge {
    display: inline-flex;
    background: #008F58;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.article-headline {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 46px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.5px;
    color: #111111;
    max-width: 850px;
    margin-bottom: 14px;
}

.article-spot {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: #434A47;
    margin-bottom: 24px;
}

.article-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #E7EBE9;
    border-bottom: 1px solid #E7EBE9;
    padding: 14px 0;
    margin-bottom: 24px;
}
.meta-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.meta-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}
.meta-info {
    display: flex;
    flex-direction: column;
}
.meta-author-name {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}
.meta-date {
    font-size: 12px;
    color: #7A817E;
}
.meta-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.meta-right span {
    font-size: 11px;
    font-weight: 700;
    color: #7A817E;
    text-transform: uppercase;
}
.share-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 14px;
    transition: opacity 0.2s;
}
.share-btn:hover { opacity: 0.8; }
.share-fb { background: #1877F2; }
.share-x { background: #000000; }
.share-wa { background: #25D366; }
.share-copy { background: #7A817E; }

.article-main-img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 28px;
}

.article-body {
    max-width: 820px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 400;
    color: #202522;
}
.article-body p { margin-bottom: 20px; }
.article-body h2, .article-body h3, .article-body h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    margin-top: 32px;
    margin-bottom: 14px;
}
.article-body a { color: #009B63; text-decoration: none; }
.article-body a:hover { text-decoration: underline; }
.article-body img, .article-body iframe {
    max-width: 100%;
    height: auto;
    margin: 24px auto;
    border-radius: 4px;
    display: block;
}
.article-body blockquote {
    background: #F0F7F3;
    border-left: 4px solid #009B63;
    padding: 20px 24px;
    margin: 26px 0;
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    border-radius: 0 4px 4px 0;
}

.article-ad {
    width: 100%;
    margin: 28px 0;
    background: #F4F5F4;
    border: 1px solid #E3E7E5;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7A817E;
    font-size: 12px;
    font-weight: 600;
}

.article-tags {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #E7EBE9;
}
.article-tags strong {
    display: block;
    font-size: 14px;
    margin-bottom: 12px;
}
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tags-list a {
    font-size: 11px;
    padding: 6px 11px;
    background: #EDF5F1;
    border-radius: 14px;
    color: #006C46;
    font-weight: 600;
}
.tags-list a:hover { background: #009B63; color: #FFF; }

.related-news-section { margin-top: 32px; }
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.related-card {
    background: #FFF;
    border: 1px solid #E7EBE9;
    border-radius: 5px;
    overflow: hidden;
}
.related-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.related-info { padding: 12px; }
.related-tag { font-size: 10px; font-weight: 700; color: #009B63; margin-bottom: 6px; display: block; }
.related-title { font-size: 15px; font-weight: 700; line-height: 1.3; color: #111; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.sticky-sidebar {
    position: sticky;
    top: 20px;
}

@media (max-width: 992px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
    .article-headline {
        font-size: 32px;
    }
    .article-spot {
        font-size: 17px;
    }
    .article-body {
        font-size: 16px;
    }
    .article-wrapper {
        padding: 16px;
    }
}
.article-body iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

/* ==================================================
   MEDYA MERKEZÝ (MEDIA CENTER)
   ================================================== */
.media-center-section {
    position: relative;
    width: 100%;
    background-color: #004B38;
    background-image: url('https://www.bursaspordabugun.com/images/haberler/44352_bursaspor-ahmet-efe-cakmakkayayi-geri-getiriyor_32065.jpg');
    background-size: cover;
    background-position: center;
    padding: 56px 0;
    margin-bottom: 0;
}
.media-center-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 75, 56, 0.94);
}
.media-center-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: calc(100% - 48px);
    margin: 0 auto;
}

.media-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}
.media-header-left h3 {
    color: #FFF;
    font-size: 30px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.media-header-left p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
}
.media-header-right {
    display: flex;
    gap: 20px;
}
.media-header-right a {
    color: #FFF;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s;
}
.media-header-right a:hover {
    color: #00A86B;
}

/* VIDEOS ROW */
.media-video-grid {
    display: grid;
    grid-template-columns: 64% calc(36% - 18px);
    gap: 18px;
}
.media-feat-video {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    display: block;
}
.media-feat-video img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.media-feat-video:hover img {
    transform: scale(1.03);
}
.media-feat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}
.media-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.15);
    border: 2px solid #FFF;
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 24px;
    transition: all 0.2s;
}
.media-feat-video:hover .media-play-btn {
    background: #009B63;
    border-color: #009B63;
}
.media-feat-tag {
    color: #00A86B;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.media-feat-title {
    color: #FFF;
    font-size: 28px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    margin-bottom: 8px;
}
.media-feat-meta {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}

/* SIDE VIDEOS */
.media-side-videos {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.media-side-vid {
    display: flex;
    gap: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 5px;
    padding: 10px;
    height: calc((100% - 36px) / 3);
    align-items: center;
    overflow: hidden;
}
.media-side-vid:hover {
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.09);
}
.media-side-thumb {
    position: relative;
    width: 42%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}
.media-side-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.media-side-vid:hover .media-side-thumb img {
    transform: scale(1.03);
}
.media-side-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: rgba(0,0,0,0.5);
    border: 1px solid #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 12px;
}
.media-side-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.media-side-title {
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.media-side-meta {
    color: rgba(255,255,255,0.6);
    font-size: 11px;
}

/* DIVIDER */
.media-divider {
    margin-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 30px;
    margin-bottom: 30px;
}

/* FOTO GALERI */
.media-gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.media-gallery-header h4 {
    color: #FFF;
    font-size: 22px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 800;
}
.media-gallery-header a {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    font-weight: 600;
}
.media-gallery-header a:hover { color: #FFF; }

.media-gallery-grid {
    display: grid;
    grid-template-columns: 50% 1fr 1fr;
    gap: 16px;
}
.media-gal-card {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    display: block;
}
.media-gal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.media-gal-card:hover img {
    transform: scale(1.03);
}
.media-gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}
.media-gal-card.large {
    aspect-ratio: 4/3;
}
.media-gal-card.small {
    aspect-ratio: 3/4;
}
.media-gal-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,0.6);
    color: #FFF;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 13px;
}
.media-gal-title {
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.media-gal-card.large .media-gal-title {
    font-size: 22px;
    font-weight: 800;
}
.media-gal-meta {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
}

@media (max-width: 992px) {
    .media-video-grid { grid-template-columns: 1fr; }
    .media-side-vid { height: 115px; margin-bottom: 16px; }
    .media-gallery-grid { grid-template-columns: 1fr 1fr; }
    .media-gal-card.large { grid-column: span 2; }
}
.media-gallery-grid {
    display: grid !important;
    grid-template-columns: 50% 1fr 1fr !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 16px !important;
}
.media-gal-card.large {
    grid-row: span 2 !important;
    aspect-ratio: 16/10 !important;
}
.media-gal-card.small {
    aspect-ratio: 16/10 !important;
}
.main-hero-slide img {
    transition: transform 0.4s ease;
}
.main-hero-slide:hover img {
    transform: scale(1.025);
}

/* NEW NEWS DETAIL POLISH */
.article-wrapper {
    border: 1px solid #EDF0EE;
    border-radius: 4px;
    box-shadow: none;
}
.article-headline {
    margin-bottom: 16px;
}
.article-spot {
    margin-bottom: 22px;
}
.article-meta-row {
    margin-bottom: 20px;
}
.article-main-img {
    margin-bottom: 24px;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.article-body {
    max-width: 760px;
    font-size: 17.5px;
    line-height: 1.8;
    color: #202522;
}
.article-body p {
    margin-bottom: 20px;
}
.related-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.related-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.related-info {
    flex: 1;
}
.detail-grid {
    margin-bottom: 40px;
}
.share-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 14px;
    transition: all 0.2s;
}
.share-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}
