/* ================================================================
   YRC Indonesia – Design System
   Marine Conservation NGO Visual Identity
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&family=Open+Sans:wght@400;600&display=swap');

/* --- CSS Variables ------------------------------------------- */
:root {
    --yrc-navy:  #1B4332;
    --yrc-sea:   #2D6A4F;
    --yrc-teal:  #52B788;
    --yrc-sky:   #D8F3DC;
    --yrc-sand:  #F4F1E8;
    --yrc-dark:  #1A2E1A;
    --yrc-muted: #556B55;
    --yrc-green: #2D6A4F;
}

/* --- Base ---------------------------------------------------- */
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--yrc-dark); line-height: 1.7; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
a { transition: all 0.3s ease; }

/* --- Navbar -------------------------------------------------- */
#header-wrap { background-color: var(--yrc-navy) !important; }
#primary-menu-trigger .svg-trigger path { stroke: #fff !important; }
.primary-menu .menu-container > .menu-item > .menu-link,
.primary-menu .menu-container > .menu-item > .menu-link > div { color: #fff !important; }
.primary-menu .menu-container > .menu-item > .menu-link:hover,
.primary-menu .menu-container > .menu-item > .menu-link:hover > div { color: var(--yrc-teal) !important; }

/* --- Navbar Action Buttons (Login / Webmail) ---------------- */
.primary-menu .menu-container > .menu-item > .menu-btn-login,
.primary-menu .menu-container > .menu-item > .menu-btn-webmail {
    padding: 0 6px !important;
    align-self: center;
}
.primary-menu .menu-container > .menu-item > .menu-btn-login > div,
.primary-menu .menu-container > .menu-item > .menu-btn-webmail > div {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 18px !important;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.15s;
    cursor: pointer;
}
/* Login — outline white */
.primary-menu .menu-container > .menu-item > .menu-btn-login > div {
    background: transparent !important;
    border: 2px solid rgba(255,255,255,0.7) !important;
    color: #fff !important;
}
.primary-menu .menu-container > .menu-item > .menu-btn-login:hover > div {
    background: #fff !important;
    border-color: #fff !important;
    color: var(--yrc-navy) !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}
/* Webmail — solid teal */
.primary-menu .menu-container > .menu-item > .menu-btn-webmail > div {
    background: var(--yrc-teal) !important;
    border: 2px solid var(--yrc-teal) !important;
    color: #fff !important;
}
.primary-menu .menu-container > .menu-item > .menu-btn-webmail:hover > div {
    background: #3d9970 !important;
    border-color: #3d9970 !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(82,183,136,0.35);
    transform: translateY(-1px);
}

/* --- Page Title --------------------------------------------- */
#page-title.bg-color {
    background: linear-gradient(135deg, var(--yrc-navy) 0%, var(--yrc-sea) 100%) !important;
    padding: 44px 0;
}
#page-title.bg-color h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: 0.02em;
}
.breadcrumb-item a { color: rgba(255,255,255,0.8); }
.breadcrumb-item a:hover { color: var(--yrc-teal); }
.breadcrumb-item.active { color: var(--yrc-teal); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* --- Section helpers ---------------------------------------- */
.yrc-section    { padding: 70px 0; }
.yrc-section-sm { padding: 50px 0; }
.yrc-bg-sand    { background-color: var(--yrc-sand); }
.yrc-bg-sky     { background-color: var(--yrc-sky); }
.yrc-bg-navy    { background-color: var(--yrc-navy); }

/* --- Section label + title ---------------------------------- */
.yrc-label {
    display: block;
    color: var(--yrc-teal);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.yrc-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--yrc-navy);
    font-size: 2rem;
    margin-bottom: 8px;
    line-height: 1.2;
}
.yrc-title-white { color: #fff !important; }

/* --- Wave divider ------------------------------------------- */
.yrc-wave { display: block; width: 100%; overflow: hidden; line-height: 0; margin-bottom: -1px; }
.yrc-wave svg { display: block; width: 100%; }

/* --- Layanan / Program cards -------------------------------- */
.yrc-card {
    background: #fff;
    border-radius: 12px;
    border-top: 4px solid var(--yrc-sea);
    padding: 28px 22px;
    transition: all 0.3s ease;
    height: 100%;
}
.yrc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,119,182,0.15);
}
.yrc-card .yrc-icon {
    width: 60px; height: 60px;
    background: var(--yrc-sky);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
}
.yrc-card .yrc-icon img {
    max-width: 36px; max-height: 36px; object-fit: contain;
}
.yrc-card h3 {
    font-size: 1rem; font-weight: 700; color: var(--yrc-navy); margin-bottom: 8px;
}
.yrc-card h3 a { color: var(--yrc-navy); text-decoration: none; }
.yrc-card h3 a:hover { color: var(--yrc-sea); }
.yrc-card p { font-size: 0.87rem; color: var(--yrc-muted); margin: 0; line-height: 1.6; }

/* --- Article cards ------------------------------------------ */
.yrc-art-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0,63,107,.09);
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 28px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.yrc-art-card:hover { box-shadow: 0 8px 28px rgba(0,63,107,.16); transform: translateY(-3px); }
.yrc-art-card .entry-image { overflow: hidden; border-radius: 0; height: 100%; }
.yrc-art-card .entry-image a { display: block; height: 100%; }
.yrc-art-card .entry-image img { transition: transform 0.35s ease; display: block; height: 100% !important; min-height: 200px; }
.yrc-art-card:hover .entry-image img { transform: scale(1.04); }
.yrc-art-card .grid-inner { min-height: 220px; }
.yrc-art-card .col-md-8 { padding: 22px 24px; }
@media (max-width: 767px) { .yrc-art-card .col-md-8 { padding: 18px; } }

/* --- Article detail page ------------------------------------ */
.yrc-detail-card {
    background: #fff;
    border-radius: 14px;
    padding: 36px 40px 44px;
    box-shadow: 0 4px 24px rgba(0,63,107,.10);
}
@media (max-width: 767px) { .yrc-detail-card { padding: 22px 18px 30px; } }
.yrc-detail-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.7rem;
    color: var(--yrc-dark);
    line-height: 1.3;
    margin: 10px 0 12px;
}
.yrc-detail-lead {
    color: var(--yrc-muted);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 18px;
    font-style: italic;
    border-left: 3px solid var(--yrc-teal);
    padding-left: 14px;
}
.yrc-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    font-size: 0.84rem;
    color: var(--yrc-muted);
    margin-bottom: 22px;
    padding: 12px 16px;
    background: var(--yrc-sand);
    border-radius: 8px;
}
.yrc-detail-meta i { color: var(--yrc-teal); margin-right: 4px; }
.yrc-detail-meta a { color: var(--yrc-sea); text-decoration: none; }
.yrc-detail-img { margin: 0 -40px 30px; }
@media (max-width: 767px) { .yrc-detail-img { margin: 0 -18px 22px; } }
.yrc-detail-img img {
    width: 100%; max-height: 450px;
    object-fit: cover; display: block;
}
.yrc-detail-body { font-size: 0.97rem; line-height: 1.85; color: #333; }
.yrc-detail-body img { max-width: 100%; border-radius: 8px; height: auto; }
.yrc-detail-body p { margin-bottom: 1.2rem; }
.yrc-detail-body h2,.yrc-detail-body h3,.yrc-detail-body h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; color: var(--yrc-navy); margin-top: 1.6rem;
}
.yrc-detail-tags {
    display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
    margin-top: 28px; padding-top: 20px; border-top: 1px solid #ebebeb;
}
.yrc-detail-tags-label {
    font-size: 0.8rem; font-weight: 700;
    color: var(--yrc-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-right: 4px;
}
.yrc-detail-tags a {
    border: 1px solid var(--yrc-sea); color: var(--yrc-sea);
    border-radius: 20px; font-size: 0.76rem; padding: 3px 12px;
    text-decoration: none; transition: all 0.2s;
}
.yrc-detail-tags a:hover { background: var(--yrc-sea); color: #fff; }
.yrc-detail-share {
    display: flex; align-items: center; gap: 14px;
    margin: 20px 0 24px; padding: 16px 0;
    border-top: 1px solid #ebebeb; border-bottom: 1px solid #ebebeb;
    font-size: 0.88rem; font-weight: 700; color: var(--yrc-muted);
}

/* Program prev/next pagination */
.yrc-program-nav {
    display: flex; justify-content: space-between; align-items: stretch;
    gap: 16px; margin-top: 32px; padding-top: 24px;
    border-top: 2px solid #e8f5e9;
}
.yrc-program-nav-prev,
.yrc-program-nav-next { flex: 1; }
.yrc-program-nav-next { text-align: right; }
.yrc-program-nav-prev a,
.yrc-program-nav-next a {
    display: flex; flex-direction: column; gap: 4px;
    padding: 14px 18px; border-radius: 10px;
    background: #f7fdf9; border: 1px solid #d0ead8;
    text-decoration: none; transition: background 0.2s, border-color 0.2s;
    height: 100%;
}
.yrc-program-nav-next a { align-items: flex-end; }
.yrc-program-nav-prev a:hover,
.yrc-program-nav-next a:hover { background: var(--yrc-teal); border-color: var(--yrc-teal); }
.yrc-program-nav-prev a:hover .yrc-program-nav-label,
.yrc-program-nav-next a:hover .yrc-program-nav-label,
.yrc-program-nav-prev a:hover .yrc-program-nav-title,
.yrc-program-nav-next a:hover .yrc-program-nav-title { color: #fff; }
.yrc-program-nav-label {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.07em; color: var(--yrc-teal);
}
.yrc-program-nav-title {
    font-size: 0.9rem; font-weight: 600; color: var(--yrc-navy);
    line-height: 1.4;
}
@media (max-width: 575px) {
    .yrc-program-nav { flex-direction: column; }
    .yrc-program-nav-next { text-align: left; }
    .yrc-program-nav-next a { align-items: flex-start; }
}
.yrc-detail-comments { margin-top: 10px; }
.yrc-related { margin-top: 36px; padding-top: 28px; border-top: 1px solid #ebebeb; }
.yrc-related-heading {
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 0.88rem; color: var(--yrc-navy);
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px;
}
.yrc-related-card {
    display: flex; gap: 0; align-items: stretch;
    background: var(--yrc-sand); border-radius: 10px; overflow: hidden;
    text-decoration: none !important; transition: box-shadow 0.25s, transform 0.25s;
    height: 100%;
}
.yrc-related-card:hover { box-shadow: 0 6px 20px rgba(0,63,107,.13); transform: translateY(-2px); }
.yrc-related-img { flex-shrink: 0; width: 90px; overflow: hidden; }
.yrc-related-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.yrc-related-card:hover .yrc-related-img img { transform: scale(1.06); }
.yrc-related-body { padding: 12px 14px; }
.yrc-related-body h6 {
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 0.82rem; color: var(--yrc-dark); line-height: 1.45; margin: 0 0 6px;
}
.yrc-related-card:hover .yrc-related-body h6 { color: var(--yrc-sea); }
.yrc-related-body span { font-size: 0.75rem; color: var(--yrc-muted); }
.yrc-related-body span i { margin-right: 3px; color: var(--yrc-teal); }

.yrc-badge {
    display: inline-block;
    background: var(--yrc-teal); color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 20px; margin-bottom: 8px;
}
.yrc-art-card .entry-title h2 a,
.yrc-art-card .entry-title h3 a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 1rem;
    color: var(--yrc-dark); text-decoration: none;
}
.yrc-art-card .entry-title h2 a:hover,
.yrc-art-card .entry-title h3 a:hover { color: var(--yrc-sea); }

.yrc-read-more { color: var(--yrc-teal) !important; font-weight: 600; font-size: 0.87rem; text-decoration: none !important; }
.yrc-read-more::after { content: ' →'; }
.yrc-read-more:hover { color: var(--yrc-sea) !important; }

/* --- Sidebar ------------------------------------------------- */
.sidebar .widget {
    background: #fff;
    border-radius: 10px;
    padding: 20px 22px;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0,63,107,.07);
}
.sidebar .widget h4 {
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 0.85rem; color: var(--yrc-navy);
    text-transform: uppercase; letter-spacing: 0.1em;
    border-bottom: 2px solid var(--yrc-teal);
    padding-bottom: 8px; margin-bottom: 14px;
}
.sidebar .widget_links ul { list-style: none; padding: 0; margin: 0; }
.sidebar .widget_links ul li { padding: 5px 0; border-bottom: 1px solid #f5f5f5; }
.sidebar .widget_links ul li a { color: var(--yrc-dark); font-size: 0.9rem; }
.sidebar .widget_links ul li a:hover { color: var(--yrc-sea); padding-left: 4px; }
.sidebar .tagcloud a {
    border: 1px solid var(--yrc-sea); color: var(--yrc-sea);
    border-radius: 20px; font-size: 0.76rem;
    padding: 3px 10px; margin: 3px 2px;
    display: inline-block; transition: all 0.3s;
}
.sidebar .tagcloud a:hover { background: var(--yrc-sea); color: #fff; }

/* --- Galeri / Album cards ----------------------------------- */
.posts-md .entry-image { overflow: hidden; border-radius: 10px; }
.posts-md .entry-image img { transition: transform 0.35s ease; }
.posts-md .entry-image:hover img { transform: scale(1.04); }
.posts-md .entry-title.title-sm h3 { font-size: 0.95rem; font-weight: 700; }
.posts-md .entry-title.title-sm h3 a { color: var(--yrc-dark); }
.posts-md .entry-title.title-sm h3 a:hover { color: var(--yrc-sea); }

/* --- Testimoni ---------------------------------------------- */
.yrc-testi .testi-content p { font-size: 1rem; color: var(--yrc-dark); font-style: italic; }
.yrc-testi .testi-meta { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--yrc-navy); }
.yrc-testi .testi-meta span { display: block; font-weight: 400; color: var(--yrc-muted); font-size: 0.85rem; }

/* --- Contact info cards ------------------------------------- */
.yrc-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px; text-align: center;
    border-bottom: 4px solid var(--yrc-teal);
    transition: all 0.3s ease; height: 100%;
}
.yrc-info-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,119,182,0.12); }
.yrc-info-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--yrc-sky);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
}
.yrc-info-icon i { color: var(--yrc-sea); font-size: 1.6rem; }
.yrc-info-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem; font-weight: 700; color: var(--yrc-navy);
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 6px;
}
.yrc-info-card .subtitle {
    display: block; font-size: 0.88rem;
    color: var(--yrc-muted); font-weight: 400;
    text-transform: none; letter-spacing: 0;
}
.yrc-info-card .subtitle a { color: var(--yrc-sea); }
.yrc-info-card .subtitle a:hover { color: var(--yrc-teal); }

/* --- Flash / Alert ------------------------------------------ */
.alert-yrc-sukses {
    background: #d1fae5; color: #065f46;
    border: 1px solid #6ee7b7; border-radius: 8px;
    padding: 14px 20px; font-size: 0.9rem; font-weight: 600;
}
.alert-yrc-sukses i { margin-right: 8px; }

/* --- Form controls ------------------------------------------ */
.yrc-form-wrap .sm-form-control,
.yrc-form-wrap textarea.sm-form-control {
    border: 1.5px solid #d0dde8; border-radius: 8px;
    padding: 10px 14px; font-size: 0.9rem; width: 100%;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.yrc-form-wrap .sm-form-control:focus,
.yrc-form-wrap textarea.sm-form-control:focus {
    border-color: var(--yrc-teal);
    box-shadow: 0 0 0 3px rgba(0,180,216,0.12);
    outline: none;
}
.yrc-form-wrap label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem; font-weight: 700; color: var(--yrc-navy);
    letter-spacing: 0.04em; margin-bottom: 6px; display: block;
}

/* --- Buttons ------------------------------------------------ */
.yrc-btn {
    background: var(--yrc-teal); color: #fff !important;
    border: none; border-radius: 30px;
    padding: 12px 30px; min-height: 44px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 0.88rem;
    letter-spacing: 0.05em; text-transform: uppercase;
    transition: all 0.3s ease; cursor: pointer; display: inline-block;
}
.yrc-btn:hover {
    background: var(--yrc-sea); color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,119,182,0.3);
}

/* --- CTA Donasi banner -------------------------------------- */
.yrc-cta {
    background: linear-gradient(135deg, var(--yrc-navy) 0%, var(--yrc-sea) 100%);
    padding: 60px 30px; text-align: center;
}
.yrc-cta h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 20px;
}

/* --- Footer ------------------------------------------------- */
#footer.dark {
    background-color: var(--yrc-dark) !important;
    border-top: 3px solid var(--yrc-teal);
}
#footer.dark .footer-info p { color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.6; }
#footer.dark h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--yrc-teal) !important;
}
#footer.dark .social-icons a { color: rgba(255,255,255,0.8) !important; transition: color 0.3s, transform 0.3s; }
#footer.dark .social-icons a:hover { color: var(--yrc-teal) !important; transform: translateY(-2px); }
#copyrights { background-color: rgba(0,0,0,0.25); }
#copyrights, #copyrights a { color: rgba(255,255,255,0.55); font-size: 0.82rem; }
#copyrights a:hover { color: var(--yrc-teal); }

/* --- Report / Buku cards ------------------------------------ */
.yrc-report-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,63,107,0.08);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.yrc-report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0,63,107,0.16);
}
.yrc-report-cover {
    display: block;
    position: relative;
    overflow: hidden;
}
.yrc-report-cover img {
    width: 100%; height: 220px; object-fit: cover;
    transition: transform 0.35s ease;
    display: block;
}
.yrc-report-card:hover .yrc-report-cover img { transform: scale(1.05); }
.yrc-report-overlay {
    position: absolute; inset: 0;
    background: rgba(0,63,107,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.yrc-report-overlay i { color: #fff; font-size: 2rem; }
.yrc-report-card:hover .yrc-report-overlay { opacity: 1; }
.yrc-report-body {
    padding: 12px; flex: 1;
    display: flex; flex-direction: column; justify-content: space-between;
}
.yrc-report-body h6 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem; font-weight: 700;
    color: var(--yrc-dark); line-height: 1.4;
    margin-bottom: 10px; min-height: 34px;
}
.yrc-report-btn {
    display: block; text-align: center;
    background: var(--yrc-navy); color: #fff !important;
    border-radius: 6px; padding: 7px 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; font-weight: 700;
    text-decoration: none !important;
    transition: background 0.3s ease;
}
.yrc-report-btn:hover { background: var(--yrc-sea); color: #fff !important; }
.yrc-report-btn i { margin-right: 4px; }

/* --- TikTok embed ------------------------------------------- */
.yrc-tiktok-wrap {
    max-width: 780px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 28px rgba(0,63,107,.12);
    overflow: hidden;
    padding: 8px 8px 0;
}
.yrc-tiktok-wrap .tiktok-embed { margin: 0 !important; }

/* --- Video cards -------------------------------------------- */
.yrc-video-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0,63,107,.10);
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.yrc-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,63,107,.18);
}
.yrc-video-thumb {
    position: relative;
    padding-bottom: 56.25%;   /* 16:9 */
    height: 0;
    overflow: hidden;
    background: #000;
}
.yt-consent-btn {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: #000;
    cursor: pointer;
    overflow: hidden;
}
.yt-consent-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease, filter .35s ease;
}
.yt-consent-btn:hover img {
    transform: scale(1.05);
    filter: brightness(.82);
}
.yrc-video-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.70) 0%, rgba(0,0,0,.20) 50%, transparent 100%);
    pointer-events: none;
}
.yrc-video-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .2px;
    border: 1px solid rgba(255,255,255,.35);
    box-shadow: 0 8px 20px rgba(0,0,0,.30);
    pointer-events: none;
    white-space: nowrap;
    transition: background .2s;
}
.yt-consent-btn:hover .yrc-video-play-btn {
    background: rgba(255,255,255,.28);
}
.yrc-play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ff0000;
    flex-shrink: 0;
}
.yrc-play-icon::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #fff;
    margin-left: 2px;
}
.yrc-video-source-label {
    position: absolute;
    left: 12px;
    bottom: 10px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    opacity: .80;
    text-transform: uppercase;
    letter-spacing: .4px;
    pointer-events: none;
}
.yrc-video-thumb iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.yrc-video-body {
    padding: 16px 18px 18px;
    flex: 1;
}
.yrc-video-body h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--yrc-dark);
    line-height: 1.45;
    margin: 0;
}

/* --- Responsive --------------------------------------------- */
@media (max-width: 768px) {
    .yrc-section    { padding: 50px 0; }
    .yrc-section-sm { padding: 36px 0; }
    .yrc-title      { font-size: 1.6rem; }
    .yrc-art-card .entry-image img { border-radius: 8px 8px 0 0; }
}
