/* ===== Our Joy FM 106.3 - Mobile-First Stylesheet ===== */
/* Colors: Blue (#1a237e, #283593), White (#fff), Orange (#ff6f00, #e65100) */
/* Breakpoints: 480px (phablet), 768px (tablet), 1024px (desktop), 1200px (wide) */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
    color: #333;
    background: #f4f6fb;
    line-height: 1.5;
    overflow-x: hidden;
}
a { color: #e65100; text-decoration: none; -webkit-tap-highlight-color: rgba(255,111,0,0.2); }
a:hover { color: #ff6f00; text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 900; line-height: 1.2; }

.o-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.hide, .u-access { position: absolute; left: -9999px; }
.text-center { text-align: center; }

/* ===== HEADER (mobile-first) ===== */
.c-page-head-wrapper {
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #1a237e 100%);
    border-bottom: 3px solid #ff6f00;
}
.c-page-head {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    gap: 16px;
}
.c-page-head__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.c-logo { height: 50px; width: auto; display: block; }
.c-logo--large { height: 60px; }

.c-locations { position: relative; flex-shrink: 0; }
.c-locations__button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-family: inherit;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.c-locations__button:hover { background: rgba(255,255,255,0.2); }
.c-locations__icon { fill: #fff; flex-shrink: 0; }
.c-locations__list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    z-index: 200;
    min-width: 160px;
    margin-top: 6px;
    overflow: hidden;
}
.c-locations__list.is-open { display: block; }
.c-locations__list-item { border-bottom: 1px solid #eee; }
.c-locations__list-item:last-child { border-bottom: none; }
.c-locations__link {
    display: block;
    padding: 12px 16px;
    color: #333;
    font-size: 14px;
    transition: background 0.2s;
}
.c-locations__link:hover { background: #fff3e0; color: #e65100; text-decoration: none; }

/* Header On Air (mobile-first) */
.c-page-head__output { width: 100%; }
.c-output--header {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 10px 14px;
    gap: 12px;
    width: 100%;
}
.c-output--header .c-output__body { color: #fff; flex: 1; min-width: 0; }
.c-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #ff6f00;
    color: #fff;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 4px;
}
.c-tag--live { background: #d32f2f; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.c-output__title { color: #fff; font-size: 15px; display: block; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.c-output__meta { color: rgba(255,255,255,0.7); font-size: 12px; }
.c-output--header .c-output__media {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}
.c-output--header .c-output__media img { width: 100%; height: 100%; object-fit: cover; }
.c-output__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity 0.3s;
}
.c-output__media:hover .c-output__overlay { opacity: 1; }
@media (hover: none) { .c-output__overlay { opacity: 0; } }
.c-listen-live {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    background: #ff6f00;
    padding: 6px 10px;
    border-radius: 4px;
    transition: background 0.2s;
}
.c-listen-live:hover { background: #e65100; text-decoration: none; color: #fff; }
.c-listen-live__icon { fill: #fff; width: 16px; height: 16px; }

/* ===== NAVIGATION (mobile-first) ===== */
.c-nav-primary-wrapper {
    background: #fff;
    box-shadow: 0 2px 12px rgba(26,35,126,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}
.c-nav-primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.c-nav-primary .global-nav-top {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 150;
    border-radius: 0 0 10px 10px;
    max-height: 80vh;
    overflow-y: auto;
}
.c-nav-primary .global-nav-top.is-open { display: flex; }
.c-nav-primary ul li { position: relative; }
.c-nav-primary ul li a {
    display: block;
    padding: 14px 18px;
    color: #333;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f5f5f5;
    transition: color 0.2s, background 0.2s;
}
.c-nav-primary ul li:last-child a { border-bottom: none; }
.c-nav-primary ul li a:hover,
.c-nav-primary ul li.on a {
    color: #e65100;
    background: #fff8e1;
    text-decoration: none;
}
.c-nav-primary ul li ul {
    display: none;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
}
.c-nav-primary ul li ul li a {
    padding-left: 30px;
    font-weight: 400;
    text-transform: none;
    font-size: 13px;
    letter-spacing: 0;
}
.c-nav-primary .nav-right { display: none; }

/* Mobile nav buttons (visible by default) */
.c-nav-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    width: 100%;
}
.c-nav-mobile__item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    font-family: inherit;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.c-nav-mobile__item svg { fill: #333; }
.c-nav-mobile__item:hover { color: #e65100; background: #fff8e1; }
.c-nav-mobile__item:hover svg { fill: #e65100; }

/* ===== PAGE MAIN ===== */
.c-page-main { padding-top: 20px; }

/* ===== HERO ===== */
.c-hero {
    background: linear-gradient(135deg, #1a237e, #283593);
    color: #fff;
    padding: 36px 0;
    text-align: center;
    margin-bottom: 20px;
}
.c-hero h1 { font-size: 24px; margin-bottom: 10px; }
.c-hero h1 span { color: #ff6f00; }
.c-hero p { font-size: 15px; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 20px; padding: 0 16px; }
.c-hero .c-btn {
    background: #ff6f00;
    color: #fff;
    padding: 12px 28px;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
    display: inline-block;
}
.c-hero .c-btn:hover { background: #e65100; text-decoration: none; }

/* ===== ON AIR ROW ===== */
.c-output-row {
    background: #fff;
    padding: 20px 0;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.c-output-row__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
}
.o-headline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
}
.o-headline__main { color: #1a237e; }
.o-headline__sub { color: #ff6f00; font-size: 13px; font-weight: 400; text-transform: none; }
.c-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: #283593;
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}
.c-btn:hover { background: #1a237e; text-decoration: none; color: #fff; }
.c-btn--orange { background: #ff6f00; }
.c-btn--orange:hover { background: #e65100; }
.c-btn--sec { background: #e0e0e0; color: #333; }
.c-btn--sec:hover { background: #bdbdbd; color: #333; }
.c-btn svg { fill: #fff; flex-shrink: 0; }
.u-mr--small { margin-right: 6px; }
.u-mb { margin-bottom: 12px; }
.u-ml { margin-left: 6px; }

.dv-grid { display: flex; flex-wrap: wrap; margin: 0 -8px; }
.dv-grid__item { padding: 0 8px; width: 100%; }

/* Two-column layout (mobile: stacked) */
.dv-grid__item--flex-300 { width: 100%; }
.dv-grid__item--fix-300 { width: 100%; }

.c-output {
    display: flex;
    gap: 12px;
    background: #fafbff;
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #e8eaf6;
    height: 100%;
    transition: box-shadow 0.2s;
}
.c-output:hover { box-shadow: 0 4px 16px rgba(26,35,126,0.1); }
.c-output .c-output__media {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.c-output .c-output__media img { width: 100%; height: 100%; object-fit: cover; }
.c-output .c-output__body { flex: 1; min-width: 0; }
.c-output .c-output__title { color: #1a237e; font-size: 15px; display: block; margin-bottom: 4px; }
.c-output .c-output__description { font-size: 13px; color: #666; margin-bottom: 6px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.c-output .c-output__meta { font-size: 12px; color: #ff6f00; font-weight: 700; }

/* ===== CONTENT BLOCKS ===== */
.o-content-block {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(26,35,126,0.06);
    margin-bottom: 20px;
    overflow: hidden;
}
.o-content-block .o-headline {
    padding: 14px 16px;
    border-bottom: 3px solid #ff6f00;
    font-size: 16px;
}
.o-content-block .o-headline a { color: #1a237e; }
.o-content-block .o-headline a:hover { color: #e65100; text-decoration: none; }
.o-content-block__inner { padding: 14px 16px; }

.gm-sec {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.c-pod {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fafbff;
    border: 1px solid #e8eaf6;
}
.c-pod:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,35,126,0.1);
}
.c-pod__link { display: block; color: inherit; }
.c-pod__link:hover { text-decoration: none; color: inherit; }
.c-pod__img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.c-pod__content { padding: 12px; }
.c-pod__title {
    display: block;
    font-size: 14px;
    color: #1a237e;
    line-height: 1.4;
    font-weight: 700;
}
.c-pod__description { font-size: 13px; color: #666; margin-top: 4px; line-height: 1.5; }
.c-pod__emphasis { font-style: italic; color: #888; font-size: 12px; }
.c-pod__category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ff6f00;
    margin-bottom: 4px;
}
.c-pod__date { font-size: 11px; color: #999; margin-top: 4px; }

/* ===== SIDEBAR ===== */
.c-page-main__secondary { padding-top: 0; }
.c-search-box {
    display: flex;
    border: 2px solid #e8eaf6;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s;
}
.c-search-box:focus-within { border-color: #ff6f00; }
.c-search-box__input {
    flex: 1;
    border: none;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    min-width: 0;
}
.c-search__icon {
    background: #283593;
    border: none;
    padding: 0 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.2s;
}
.c-search__icon:hover { background: #1a237e; }
.c-search__icon svg { fill: #fff; width: 20px; height: 20px; }

.tb-app-store__icons ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.tb-app-store__icons ul li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #1a237e;
    color: #fff;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    transition: opacity 0.2s;
}
.tb-app-store__icons ul li a:hover { opacity: 0.85; text-decoration: none; }
.tb-app-store__icons ul li a svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

.tb-social ul { display: flex; gap: 10px; flex-wrap: wrap; }
.tb-social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: transform 0.2s, opacity 0.2s;
}
.tb-social ul li a:hover { transform: scale(1.1); opacity: 0.85; }
.tb-social ul li a svg { width: 20px; height: 20px; fill: #fff; }

/* ===== SCHEDULE TABLE ===== */
.c-schedule-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.c-schedule-table thead th {
    background: #1a237e;
    color: #fff;
    padding: 10px 12px;
    text-align: left;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.c-schedule-table tbody td {
    padding: 10px 12px;
    border-bottom: 1px solid #e8eaf6;
}
.c-schedule-table tbody tr:hover td { background: #fff8e1; }

/* ===== OAPs ===== */
.oaps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.oap-card {
    text-align: center;
    padding: 16px 10px;
    background: #fafbff;
    border-radius: 10px;
    border: 1px solid #e8eaf6;
    transition: transform 0.2s, box-shadow 0.2s;
}
.oap-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26,35,126,0.1);
}
.oap-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
    border: 3px solid #e8eaf6;
    transition: border-color 0.2s;
}
.oap-card:hover img { border-color: #ff6f00; }
.oap-card h4 { font-size: 14px; color: #1a237e; margin-bottom: 4px; }
.oap-card p { font-size: 12px; color: #ff6f00; font-weight: 600; }

/* ===== CHART ===== */
.chart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e8eaf6;
}
.chart-item:last-child { border-bottom: none; }
.chart-number {
    width: 32px;
    height: 32px;
    background: #1a237e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    flex-shrink: 0;
}
.chart-item:nth-child(1) .chart-number { background: #ff6f00; }
.chart-item:nth-child(2) .chart-number { background: #e65100; }
.chart-item:nth-child(3) .chart-number { background: #bf360c; }
.chart-info { flex: 1; }
.chart-info .artist { font-weight: 700; color: #1a237e; font-size: 14px; }
.chart-info .song { font-size: 13px; color: #666; }

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}
.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    background: #fff;
    border: 1px solid #e8eaf6;
    color: #333;
    transition: all 0.2s;
}
.pagination a:hover {
    background: #283593;
    color: #fff;
    text-decoration: none;
    border-color: #283593;
}
.pagination .active {
    background: #ff6f00;
    color: #fff;
    border-color: #ff6f00;
}

/* ===== RATE CARD ===== */
.rate-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.rate-card {
    background: #fafbff;
    border: 1px solid #e8eaf6;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.rate-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26,35,126,0.1);
}
.rate-card h3 { color: #1a237e; font-size: 18px; margin-bottom: 8px; }
.rate-card .price {
    font-size: 28px;
    font-weight: 900;
    color: #ff6f00;
    margin-bottom: 14px;
}
.rate-card ul { text-align: left; padding: 0 8px; }
.rate-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e8eaf6;
    font-size: 13px;
    color: #555;
}
.rate-card ul li:last-child { border-bottom: none; }

/* ===== PLAYER PAGE ===== */
.player-page {
    background: linear-gradient(135deg, #1a237e, #283593);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}
.player-container {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    backdrop-filter: blur(20px);
}
.player-container .c-logo { margin: 0 auto 16px; height: 50px; }
.player-container h1 { color: #fff; font-size: 24px; margin-bottom: 6px; }
.player-container .frequency { color: #ff6f00; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.player-container .status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #81c784;
    font-size: 13px;
    margin-bottom: 20px;
}
.player-container .status .dot {
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
.player-container .play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ff6f00;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.2s, background 0.2s;
}
.player-container .play-btn:hover { transform: scale(1.05); background: #e65100; }
.player-container .play-btn svg { fill: #fff; width: 30px; height: 30px; }
.player-container .now-playing { color: rgba(255,255,255,0.7); }
.player-container .now-playing strong { color: #fff; display: block; font-size: 18px; margin-bottom: 4px; }

/* ===== SAY HELLO FORM ===== */
.contact-form .form-group { margin-bottom: 16px; }
.contact-form label {
    display: block;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 6px;
    font-size: 14px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e8eaf6;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
    outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: #ff6f00; }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .form-row { display: flex; flex-direction: column; gap: 0; }
.contact-form .submit-btn {
    background: #ff6f00;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
    width: 100%;
}
.contact-form .submit-btn:hover { background: #e65100; }
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
}
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.alert-error { background: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }

/* Category filter buttons (news page) */
.cat-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.cat-filter .c-btn { font-size: 11px; padding: 8px 14px; }

/* ===== SINGLE POST PAGE ===== */
.post-header {
    background: linear-gradient(135deg, #1a237e, #283593);
    color: #fff;
    padding: 28px 0;
    margin-bottom: 20px;
}
.post-header .category { color: #ff6f00; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.post-header h1 { font-size: 22px; margin: 8px 0; }
.post-header .meta { color: rgba(255,255,255,0.6); font-size: 13px; }
.post-content { font-size: 15px; line-height: 1.8; color: #444; max-width: 800px; margin: 0 auto; }
.post-content p { margin-bottom: 16px; }
.post-content img { border-radius: 10px; margin: 16px 0; }
.post-content h2, .post-content h3 { color: #1a237e; margin: 20px 0 10px; }
.share-buttons { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.share-buttons a {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 14px; color: #fff; border-radius: 6px; font-size: 12px; font-weight: 700;
}

/* ===== FOOTER ===== */
.c-page-footer {
    background: #1a237e;
    color: rgba(255,255,255,0.7);
    padding: 36px 0;
    margin-top: 30px;
}
.c-page-footer__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}
.c-page-footer__col { width: 100%; }
.c-page-footer__col h4 {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 8px;
}
.c-page-footer__col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: #ff6f00;
}
.c-page-footer__col ul li { margin-bottom: 8px; }
.c-page-footer__col ul li a { color: rgba(255,255,255,0.6); font-size: 13px; transition: color 0.2s; }
.c-page-footer__col ul li a:hover { color: #ff6f00; }
.c-page-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
}
.c-page-footer__bottom .social-links { display: flex; gap: 10px; justify-content: center; margin-bottom: 14px; flex-wrap: wrap; }
.c-page-footer__bottom .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: background 0.2s;
}
.c-page-footer__bottom .social-links a:hover { background: #ff6f00; }
.c-page-footer__bottom .social-links a svg { width: 16px; height: 16px; fill: #fff; }

.tb-social .social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.tb-social .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #333;
    transition: background 0.2s;
}
.tb-social .social-links a:hover { background: #ff6f00; }
.tb-social .social-links a svg { width: 16px; height: 16px; fill: #fff; }

/* ===== SMALL PHONES (< 400px) ===== */
@media (max-width: 399px) {
    .oaps-grid { grid-template-columns: 1fr; }
    .c-output-row__header { flex-direction: column; align-items: stretch; }
    .c-output-row__header .c-btn { justify-content: center; }
    .gm-sec { grid-template-columns: 1fr; }
    .c-schedule-table { font-size: 12px; }
    .c-schedule-table thead th,
    .c-schedule-table tbody td { padding: 8px 6px; }
    .c-output .c-output__media { width: 70px; height: 70px; }
    .c-output .c-output__title { font-size: 13px; }
}

/* ===== TABLET (>= 480px) ===== */
@media (min-width: 480px) {
    html { font-size: 16px; }
    .o-wrapper { padding: 0 20px; }
    .c-logo { height: 60px; }
    .c-logo--large { height: 70px; }
    .c-output--header { padding: 12px 20px; gap: 16px; }
    .c-output--header .c-output__media { width: 90px; height: 90px; }
    .c-output__title { font-size: 16px; }
    .c-hero h1 { font-size: 30px; }
    .c-hero p { font-size: 16px; }
    .o-headline { font-size: 20px; }
    .gm-sec { grid-template-columns: repeat(2, 1fr); }
    .oaps-grid { grid-template-columns: repeat(3, 1fr); }
    .oap-card img { width: 120px; height: 120px; }
    .contact-form .submit-btn { width: auto; }
    .post-header h1 { font-size: 28px; }
    .c-output-row__header { flex-direction: row; align-items: center; }
    .player-container { padding: 36px 28px; }
    .player-container h1 { font-size: 26px; }
    .c-schedule-table { font-size: 14px; }
    .rate-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== TABLET LANDSCAPE (>= 768px) ===== */
@media (min-width: 768px) {
    .o-wrapper { padding: 0 24px; }
    .c-logo { height: 65px; }
    .c-logo--large { height: 80px; }

    /* Desktop nav */
    .c-nav-mobile { display: none; }
    .c-nav-primary .global-nav-top {
        display: flex !important;
        flex-direction: row;
        position: static;
        box-shadow: none;
        border-radius: 0;
        max-height: none;
        overflow: visible;
        width: auto;
    }
    .c-nav-primary ul li a {
        padding: 16px 14px;
        font-size: 12px;
        border-bottom: 3px solid transparent;
    }
    .c-nav-primary ul li:last-child a { border-bottom: 3px solid transparent; }
    .c-nav-primary ul li a:hover,
    .c-nav-primary ul li.on a { border-bottom-color: #ff6f00; }
    .c-nav-primary ul li ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        min-width: 220px;
        z-index: 150;
        border-radius: 0 0 8px 8px;
        overflow: hidden;
    }
    .c-nav-primary ul li:hover ul { display: block; }
    .c-nav-primary ul li ul li { border-bottom: 1px solid #f0f0f0; }
    .c-nav-primary ul li ul li:last-child { border-bottom: none; }
    .c-nav-primary ul li ul li a {
        padding: 12px 20px;
        font-size: 13px;
        font-weight: 400;
        text-transform: none;
        letter-spacing: 0;
        border-bottom: none;
    }
    .c-nav-primary ul li ul li a:hover { background: #fff8e1; }
    .c-nav-primary .nav-right { display: flex; align-items: center; gap: 10px; }

    /* Header: side by side */
    .c-page-head {
        flex-direction: row;
        padding: 24px 0;
        gap: 24px;
    }
    .c-page-head__main { flex-wrap: nowrap; }
    .c-page-head__output { width: auto; flex-shrink: 0; }
    .c-output--header { width: auto; min-width: 320px; }
    .c-output--header .c-output__media { width: 100px; height: 100px; }

    /* Grid */
    .dv-grid { margin: 0 -12px; }
    .dv-grid__item { padding: 0 12px; }
    .xl-one-third { width: 33.333%; }
    .one-half { width: 50%; }
    .gm-sec { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .oaps-grid { grid-template-columns: repeat(4, 1fr); }

    /* Two-column layout */
    .dv-grid__item--flex-300 { flex: 1; width: auto; }
    .dv-grid__item--fix-300 { width: 300px; flex-shrink: 0; }
    .c-page-main__secondary { padding-top: 4px; }

    .c-hero { padding: 50px 0; }
    .c-hero h1 { font-size: 34px; }
    .c-hero p { font-size: 17px; }
    .o-headline { font-size: 22px; }

    .o-content-block .o-headline { padding: 18px 24px; font-size: 17px; }
    .o-content-block__inner { padding: 20px 24px; }
    .c-output-row { padding: 30px 0; margin-bottom: 30px; }
    .c-page-main { padding-top: 30px; }
    .c-output .c-output__media { width: 120px; height: 120px; }
    .c-output .c-output__title { font-size: 16px; }
    .c-output__description { -webkit-line-clamp: unset; }
    .c-output-row__header { margin-bottom: 24px; }

    .c-schedule-table thead th { padding: 12px 16px; font-size: 13px; }
    .c-schedule-table tbody td { padding: 12px 16px; }

    .post-header { padding: 40px 0; }
    .post-header h1 { font-size: 32px; }
    .post-content { font-size: 16px; }

    .c-page-footer { padding: 50px 0 24px; }
    .c-page-footer__grid { flex-direction: row; gap: 40px; }
    .c-page-footer__col { flex: 1; min-width: 200px; }
    .c-page-footer__col h4 { font-size: 15px; margin-bottom: 16px; }

    .rate-grid { gap: 24px; }

    .contact-form .form-row { flex-direction: row; gap: 20px; }
    .contact-form .form-row .form-group { flex: 1; }

    .player-container h1 { font-size: 28px; }
    .player-container .play-btn { width: 80px; height: 80px; }
    .player-container .play-btn svg { width: 36px; height: 36px; }

    .c-schedule-table thead th:first-child { border-radius: 8px 0 0 0; }
    .c-schedule-table thead th:last-child { border-radius: 0 8px 0 0; }
}

/* ===== DESKTOP (>= 1024px) ===== */
@media (min-width: 1024px) {
    .c-nav-primary ul li a { padding: 16px 18px; font-size: 13px; }
    .c-output--header { min-width: 360px; }
    .c-hero { padding: 60px 0; }
    .c-hero h1 { font-size: 38px; }
    .c-hero p { font-size: 18px; }
    .post-header h1 { font-size: 36px; }
    .oaps-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
    .rate-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== WIDE (>= 1200px) ===== */
@media (min-width: 1200px) {
    .o-wrapper { padding: 0 30px; }
    .rate-grid { grid-template-columns: repeat(3, 1fr); }
}
