/* ═══════════════════════════════════════════════════════════
   ÖZEL DERS AL - BLOG & VİDEO DERSLER CSS v3.0
   Navy: #1A2340 | Yellow: #F5A623 | Font: Playfair + Jakarta
   ═══════════════════════════════════════════════════════════ */

/* ─── GENEL ─────────────────────────────────────────────── */
.odal-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ─── BLOG HERO ─────────────────────────────────────────── */
.odal-blog-hero {
    position: relative;
    background: linear-gradient(135deg, #1A2340 0%, #2A3660 50%, #1A2340 100%);
    padding: 100px 0 60px;
    overflow: hidden;
}
.odal-blog-hero__bg {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(245,166,35,0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(245,166,35,0.1) 0%, transparent 40%);
}
.odal-blog-hero__content { position: relative; text-align: center; }
.odal-blog-hero__badge {
    display: inline-block;
    background: rgba(245,166,35,0.15);
    color: #F5A623;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 20px;
    border: 1px solid rgba(245,166,35,0.3);
}
.odal-blog-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.odal-blog-hero__title span { color: #F5A623; }
.odal-blog-hero__desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 32px;
}
.odal-blog-hero__search {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.odal-blog-hero__search input {
    flex: 1;
    background: none;
    border: none;
    padding: 14px 20px;
    color: #fff;
    font-size: 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    outline: none;
}
.odal-blog-hero__search input::placeholder { color: rgba(255,255,255,0.5); }
.odal-blog-hero__search button {
    background: #F5A623;
    border: none;
    padding: 14px 20px;
    color: #1A2340;
    cursor: pointer;
    transition: background 0.3s;
}
.odal-blog-hero__search button:hover { background: #e6951a; }

/* ─── FİLTRELER ─────────────────────────────────────────── */
.odal-blog-filters { background: #f8f9fa; padding: 20px 0; border-bottom: 1px solid #e5e7eb; }
.odal-blog-filters__wrap {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}
.odal-blog-filter__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #4B5563;
    background: #fff;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
}
.odal-blog-filter__btn:hover { border-color: #F5A623; color: #F5A623; }
.odal-blog-filter__btn.active {
    background: #1A2340;
    color: #fff;
    border-color: #1A2340;
}
.odal-blog-filter__count {
    background: rgba(0,0,0,0.1);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 12px;
}
.odal-blog-filter__btn.active .odal-blog-filter__count {
    background: rgba(245,166,35,0.3);
    color: #F5A623;
}

/* ─── FEATURED POST ─────────────────────────────────────── */
.odal-blog-featured { padding: 40px 0; }
.odal-blog-featured__card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26,35,64,0.08);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}
.odal-blog-featured__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26,35,64,0.15);
}
.odal-blog-featured__img {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}
.odal-blog-featured__img img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.odal-blog-featured__placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #1A2340, #2A3660);
    font-size: 64px;
}
.odal-blog-featured__badge {
    position: absolute;
    top: 16px; left: 16px;
    background: #F5A623;
    color: #1A2340;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.odal-blog-featured__info { padding: 40px 40px 40px 0; display: flex; flex-direction: column; justify-content: center; }
.odal-blog-featured__title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #1A2340;
    line-height: 1.3;
    margin-bottom: 12px;
}
.odal-blog-featured__excerpt {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 20px;
}
.odal-blog-featured__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: #9CA3AF;
}
.odal-blog-featured__author {
    display: flex;
    align-items: center;
    gap: 8px;
}
.odal-blog-featured__author img { border-radius: 50%; }

/* ─── BLOG GRID ─────────────────────────────────────────── */
.odal-blog-grid { padding: 0 0 60px; }
.odal-blog-grid__layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}
.odal-blog-grid__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* ─── BLOG CARD ─────────────────────────────────────────── */
.odal-blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26,35,64,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.odal-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(26,35,64,0.12);
}
.odal-blog-card__link { text-decoration: none; display: block; }
.odal-blog-card__img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.odal-blog-card__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.odal-blog-card:hover .odal-blog-card__img img { transform: scale(1.05); }
.odal-blog-card__placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #f0f2f5, #e5e7eb);
    font-size: 48px;
}
.odal-blog-card__read-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: rgba(26,35,64,0.8);
    color: #fff;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    backdrop-filter: blur(4px);
}
.odal-blog-card__body { padding: 20px; }
.odal-blog-card__cat {
    display: inline-block;
    background: rgba(245,166,35,0.12);
    color: #F5A623;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 10px;
}
.odal-blog-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #1A2340;
    line-height: 1.4;
    margin-bottom: 8px;
}
.odal-blog-card__excerpt {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 16px;
}
.odal-blog-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
}
.odal-blog-card__date { color: #9CA3AF; }
.odal-blog-card__more {
    color: #F5A623;
    font-weight: 600;
    transition: color 0.3s;
}
.odal-blog-card:hover .odal-blog-card__more { color: #1A2340; }

/* ─── PAGINATION ────────────────────────────────────────── */
.odal-blog-pagination { margin-top: 40px; text-align: center; }
.odal-blog-pagination ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 0;
}
.odal-blog-pagination li { display: inline-block; }
.odal-blog-pagination a,
.odal-blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}
.odal-blog-pagination a {
    background: #fff;
    color: #4B5563;
    border: 1px solid #e5e7eb;
}
.odal-blog-pagination a:hover {
    background: #1A2340;
    color: #fff;
    border-color: #1A2340;
}
.odal-blog-pagination .current {
    background: #F5A623;
    color: #1A2340;
    font-weight: 700;
    border: 1px solid #F5A623;
}

/* ─── EMPTY STATE ───────────────────────────────────────── */
.odal-blog-empty {
    text-align: center;
    padding: 80px 20px;
}
.odal-blog-empty__icon { font-size: 64px; margin-bottom: 16px; }
.odal-blog-empty h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #1A2340;
    margin-bottom: 8px;
}
.odal-blog-empty p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #6B7280;
    margin-bottom: 24px;
}
.odal-blog-empty__btn {
    display: inline-block;
    background: #F5A623;
    color: #1A2340;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

/* ─── SIDEBAR ───────────────────────────────────────────── */
.odal-blog-sidebar { position: sticky; top: 100px; }
.odal-sidebar__widget {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(26,35,64,0.06);
}
.odal-sidebar__title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #1A2340;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f2f5;
}
.odal-sidebar__search {
    display: flex;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}
.odal-sidebar__search input {
    flex: 1;
    border: none;
    padding: 10px 14px;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    outline: none;
}
.odal-sidebar__search button {
    background: #1A2340;
    color: #fff;
    border: none;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.odal-sidebar__cats { list-style: none; padding: 0; margin: 0; }
.odal-sidebar__cats li { border-bottom: 1px solid #f0f2f5; }
.odal-sidebar__cats li:last-child { border-bottom: none; }
.odal-sidebar__cats a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #4B5563;
    transition: color 0.3s;
}
.odal-sidebar__cats a:hover { color: #F5A623; }
.odal-sidebar__cat-count {
    background: #f0f2f5;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 12px;
    color: #9CA3AF;
}
.odal-sidebar__popular {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    text-decoration: none;
    border-bottom: 1px solid #f0f2f5;
    transition: transform 0.2s;
}
.odal-sidebar__popular:last-child { border-bottom: none; }
.odal-sidebar__popular:hover { transform: translateX(4px); }
.odal-sidebar__popular-rank {
    flex-shrink: 0;
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    background: #1A2340;
    color: #F5A623;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.odal-sidebar__popular-info h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1A2340;
    margin: 0 0 4px;
    line-height: 1.4;
}
.odal-sidebar__popular-info span {
    font-size: 12px;
    color: #9CA3AF;
}
.odal-sidebar__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.odal-sidebar__tag {
    display: inline-block;
    padding: 6px 14px;
    background: #f0f2f5;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: #4B5563;
    text-decoration: none;
    transition: all 0.3s;
}
.odal-sidebar__tag:hover {
    background: #1A2340;
    color: #F5A623;
}

/* ─── SIDEBAR CTA ───────────────────────────────────────── */
.odal-sidebar__cta {
    background: linear-gradient(135deg, #1A2340, #2A3660) !important;
    text-align: center;
    color: #fff;
}
.odal-sidebar__cta-icon { font-size: 40px; margin-bottom: 12px; }
.odal-sidebar__cta h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
}
.odal-sidebar__cta p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}
.odal-sidebar__cta-btn {
    display: block;
    background: #F5A623;
    color: #1A2340;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 10px;
    transition: background 0.3s;
}
.odal-sidebar__cta-btn:hover { background: #e6951a; }
.odal-sidebar__cta-wa {
    display: block;
    color: #25D366;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

/* ─── SIDEBAR NEWSLETTER ────────────────────────────────── */
.odal-sidebar__newsletter {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.odal-sidebar__newsletter input {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    outline: none;
}
.odal-sidebar__newsletter input:focus { border-color: #F5A623; }
.odal-sidebar__newsletter button {
    background: #1A2340;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}
.odal-sidebar__newsletter button:hover { background: #F5A623; color: #1A2340; }

/* ─── SINGLE POST HERO ──────────────────────────────────── */
.odal-single-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding: 100px 0 50px;
}
.odal-single-hero__bg {
    position: absolute; inset: 0;
    overflow: hidden;
}
.odal-single-hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.odal-single-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,35,64,0.95) 0%, rgba(26,35,64,0.4) 100%);
}
.odal-single-hero__content { position: relative; max-width: 800px; }
.odal-single-hero__cat {
    display: inline-block;
    background: #F5A623;
    color: #1A2340;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    margin-bottom: 16px;
}
.odal-single-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}
.odal-single-hero__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.odal-single-hero__author {
    display: flex;
    align-items: center;
    gap: 8px;
}
.odal-single-hero__author img { border-radius: 50%; }
.odal-single-hero__date,
.odal-single-hero__read {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ─── SINGLE CONTENT ────────────────────────────────────── */
.odal-single-content { padding: 50px 0 60px; }
.odal-single-content__layout {
    display: grid;
    grid-template-columns: 60px 1fr 320px;
    gap: 30px;
    align-items: start;
}

/* ─── SHARE SIDEBAR ─────────────────────────────────────── */
.odal-single-share__sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.odal-single-share__label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.odal-single-share__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
}
.odal-single-share__btn--fb { background: #E7F0FF; color: #1877F2; }
.odal-single-share__btn--fb:hover { background: #1877F2; color: #fff; }
.odal-single-share__btn--tw { background: #E8F5FD; color: #000; }
.odal-single-share__btn--tw:hover { background: #000; color: #fff; }
.odal-single-share__btn--wa { background: #E7F8EE; color: #25D366; }
.odal-single-share__btn--wa:hover { background: #25D366; color: #fff; }
.odal-single-share__btn--copy { background: #f0f2f5; color: #4B5563; }
.odal-single-share__btn--copy:hover { background: #1A2340; color: #fff; }

/* ─── ARTICLE BODY ──────────────────────────────────────── */
.odal-single-article__body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
}
.odal-single-article__body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #1A2340;
    margin: 40px 0 16px;
}
.odal-single-article__body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #1A2340;
    margin: 32px 0 12px;
}
.odal-single-article__body p { margin-bottom: 20px; }
.odal-single-article__body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
}
.odal-single-article__body blockquote {
    border-left: 4px solid #F5A623;
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(245,166,35,0.06);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #1A2340;
}
.odal-single-article__body ul,
.odal-single-article__body ol {
    padding-left: 24px;
    margin-bottom: 20px;
}
.odal-single-article__body li { margin-bottom: 8px; }
.odal-single-article__body a { color: #F5A623; text-decoration: underline; }
.odal-single-article__body pre {
    background: #1A2340;
    color: #e5e7eb;
    padding: 20px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 24px 0;
}

/* ─── TAGS ──────────────────────────────────────────────── */
.odal-single-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 24px 0;
    margin-top: 32px;
    border-top: 1px solid #e5e7eb;
}
.odal-single-tags__label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1A2340;
}
.odal-single-tags__item {
    padding: 6px 14px;
    background: #f0f2f5;
    border-radius: 50px;
    font-size: 13px;
    color: #4B5563;
    text-decoration: none;
    transition: all 0.3s;
}
.odal-single-tags__item:hover {
    background: #F5A623;
    color: #1A2340;
}

/* ─── AUTHOR BOX ────────────────────────────────────────── */
.odal-single-author {
    display: flex;
    gap: 20px;
    padding: 24px;
    margin-top: 24px;
    background: #f8f9fa;
    border-radius: 16px;
}
.odal-single-author__avatar img { border-radius: 50%; }
.odal-single-author__label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: #F5A623;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.odal-single-author__name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #1A2340;
    margin: 4px 0 8px;
}
.odal-single-author__bio {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 8px;
}
.odal-single-author__count {
    font-size: 13px;
    color: #9CA3AF;
}

/* ─── POST NAVIGATION ───────────────────────────────────── */
.odal-single-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}
.odal-single-nav__item {
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}
.odal-single-nav__item:hover {
    border-color: #F5A623;
    box-shadow: 0 4px 16px rgba(245,166,35,0.15);
}
.odal-single-nav__item--next { text-align: right; }
.odal-single-nav__dir {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: #F5A623;
    font-weight: 600;
    margin-bottom: 4px;
}
.odal-single-nav__title {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: #1A2340;
    font-weight: 600;
}

/* ─── RELATED POSTS ─────────────────────────────────────── */
.odal-related-posts {
    padding: 60px 0;
    background: #f8f9fa;
}
.odal-related-posts__title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #1A2340;
    text-align: center;
    margin-bottom: 32px;
}
.odal-related-posts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ─── VIDEO HERO ────────────────────────────────────────── */
.odal-video-hero {
    background: linear-gradient(135deg, #0F1629 0%, #1A2340 50%, #2A3660 100%);
    padding: 100px 0 60px;
    text-align: center;
}
.odal-video-hero__badge {
    display: inline-block;
    background: rgba(245,166,35,0.15);
    color: #F5A623;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 20px;
    border: 1px solid rgba(245,166,35,0.3);
}
.odal-video-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.odal-video-hero__title span { color: #F5A623; }
.odal-video-hero__desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 32px;
}
.odal-video-hero__stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}
.odal-video-hero__stat {
    text-align: center;
}
.odal-video-hero__stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #F5A623;
}
.odal-video-hero__stat span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* ─── VIDEO GRID ────────────────────────────────────────── */
.odal-video-grid { padding: 40px 0 60px; }
.odal-video-grid__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ─── VIDEO CARD ────────────────────────────────────────── */
.odal-video-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26,35,64,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.odal-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(26,35,64,0.12);
}
.odal-video-card__link { text-decoration: none; display: block; }
.odal-video-card__thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #0F1629;
}
.odal-video-card__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.odal-video-card:hover .odal-video-card__thumb img { transform: scale(1.05); }
.odal-video-card__placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #0F1629, #1A2340);
    font-size: 48px;
}
.odal-video-card__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 56px; height: 56px;
    background: rgba(245,166,35,0.9);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
    opacity: 0.9;
}
.odal-video-card:hover .odal-video-card__play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}
.odal-video-card__duration {
    position: absolute;
    bottom: 10px; right: 10px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
}
.odal-video-card__body { padding: 20px; }
.odal-video-card__brans {
    display: inline-block;
    background: rgba(26,35,64,0.08);
    color: #1A2340;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 10px;
}
.odal-video-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #1A2340;
    line-height: 1.4;
    margin-bottom: 8px;
}
.odal-video-card__excerpt {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 16px;
}
.odal-video-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: #9CA3AF;
}
.odal-video-card__watch {
    color: #F5A623;
    font-weight: 600;
}

/* ─── VIDEO PLAYER ──────────────────────────────────────── */
.odal-video-player {
    background: #0F1629;
    padding: 100px 0 20px;
}
.odal-video-player__frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.odal-video-player__frame iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.odal-video-player__video {
    width: 100%;
    border-radius: 16px;
}
.odal-video-player__no-video {
    text-align: center;
    padding: 80px;
    color: rgba(255,255,255,0.5);
}
.odal-video-player__no-icon { font-size: 64px; margin-bottom: 16px; }

/* ─── VIDEO INFO ────────────────────────────────────────── */
.odal-video-info { padding: 40px 0 60px; }
.odal-video-info__layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}
.odal-video-info__title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    color: #1A2340;
    margin: 12px 0 16px;
}
.odal-video-info__meta {
    display: flex;
    gap: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 24px;
}
.odal-video-info__content {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}
.odal-video-info__share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #6B7280;
}

/* ─── SIDEBAR VIDEO ITEMS ───────────────────────────────── */
.odal-sidebar__video-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    text-decoration: none;
    border-bottom: 1px solid #f0f2f5;
    transition: transform 0.2s;
}
.odal-sidebar__video-item:last-child { border-bottom: none; }
.odal-sidebar__video-item:hover { transform: translateX(4px); }
.odal-sidebar__video-thumb {
    position: relative;
    width: 80px; height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #0F1629;
}
.odal-sidebar__video-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.odal-sidebar__video-ph {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.odal-sidebar__video-dur {
    position: absolute;
    bottom: 2px; right: 2px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 10px;
}
.odal-sidebar__video-info h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1A2340;
    margin: 0 0 4px;
    line-height: 1.3;
}
.odal-sidebar__video-info span {
    font-size: 11px;
    color: #9CA3AF;
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .odal-blog-grid__layout { grid-template-columns: 1fr; }
    .odal-blog-sidebar { position: static; }
    .odal-single-content__layout { grid-template-columns: 1fr; }
    .odal-single-share { display: none; }
    .odal-single-sidebar { display: none; }
    .odal-video-info__layout { grid-template-columns: 1fr; }
    .odal-video-info__sidebar { order: 2; }
}
@media (max-width: 768px) {
    .odal-blog-hero { padding: 80px 0 40px; }
    .odal-blog-hero__title { font-size: 32px; }
    .odal-blog-grid__cards { grid-template-columns: 1fr; }
    .odal-blog-featured__card { grid-template-columns: 1fr; }
    .odal-blog-featured__info { padding: 24px; }
    .odal-blog-featured__img { min-height: 220px; }
    .odal-related-posts__grid { grid-template-columns: 1fr; }
    .odal-single-hero__title { font-size: 28px; }
    .odal-single-hero__meta { flex-wrap: wrap; gap: 10px; }
    .odal-single-nav { grid-template-columns: 1fr; }
    .odal-video-hero__title { font-size: 32px; }
    .odal-video-grid__cards { grid-template-columns: 1fr; }
}
