@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&display=swap");

:root {
    --bg: #ffffff;
    --navy: #1549d1;
    --navy-dark: #0b2c98;
    --accent: #ff9800;
    --accent-dark: #ff3d1f;
    --card: #ffffff;
    --text: #102852;
    --muted: #4f6690;
    --line: #ffffff;
    --gold: #ffd200;
    --blue-soft: #2d86ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Barlow", "Segoe UI", Arial, sans-serif;
    background: #ffffff;
    color: var(--text);
    line-height: 1.5;
    padding-bottom: 112px;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.site-header {
    background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 68%, var(--blue-soft) 100%);
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: none;
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    margin: 0;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: #ffffff;
    max-width: 260px;
}

.brand-logo {
    display: block;
    height: 34px;
    width: auto;
    max-width: 170px;
    max-height: 34px;
    object-fit: contain;
    flex: 0 0 auto;
}

.site-header .brand img {
    display: block;
    height: 34px !important;
    width: auto !important;
    max-width: 170px !important;
    max-height: 34px !important;
    object-fit: contain;
}

.brand-text {
    color: inherit;
    font-size: clamp(1rem, 1.5vw, 1.35rem);
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.main-nav a,
.header-search-btn {
    color: #ffffff;
    text-decoration: none;
    padding: 0.35rem 0.2rem;
    border: none;
    border-radius: 0;
    background: transparent;
    font-size: 0.97rem;
    font-weight: 600;
    transition: color 0.25s ease;
}

.main-nav a:hover,
.header-search-btn:hover {
    color: #ffe28f;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.header-search-form {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.header-search-input {
    width: 190px;
    border: 1px solid rgba(255, 242, 180, 0.85);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 0.42rem 0.75rem;
    font: inherit;
}

.header-search-input::placeholder {
    color: rgba(255, 255, 255, 0.78);
}

.header-search-input:focus {
    outline: none;
    border-color: #ffe28f;
}

.header-search-submit {
    border: 1px solid rgba(255, 242, 180, 0.85);
    border-radius: 8px;
    background: transparent;
    color: #ffffff;
    font: inherit;
    font-weight: 700;
    padding: 0.45rem 0.8rem;
    cursor: pointer;
}

.header-search-submit:hover {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}

main {
    padding: 1.6rem 0 2.4rem;
}

.hero {
    margin-bottom: 1.6rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.panel {
    background: var(--card);
    border: none;
    border-radius: 14px;
    box-shadow: none;
    padding: 1rem;
}

.panel h2,
.section h2 {
    margin-bottom: 0.85rem;
}

.webtv iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 10px;
}

.player {
    background: linear-gradient(165deg, #ffffff 0%, #eef5ff 72%, #fff0cf 100%);
}

.now-playing {
    margin-bottom: 0.75rem;
    color: var(--muted);
}

audio {
    width: 100%;
}

.volume-controls {
    margin-top: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.volume-controls span {
    color: var(--muted);
    font-weight: 600;
}

button {
    border: none;
    background: linear-gradient(115deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #ffffff;
    font-weight: 700;
    border-radius: 10px;
    padding: 0.55rem 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

button:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: none;
}

.section {
    margin-top: 1.7rem;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.program-card {
    background: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 0.85rem;
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 0.75rem;
    align-items: center;
    box-shadow: none;
}

.program-card__media {
    width: 74px;
    height: 74px;
    border-radius: 10px;
    overflow: hidden;
    border: none;
    background: #edf4ff;
}

.program-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.program-card__content {
    min-width: 0;
}

.program-card h3 {
    margin-bottom: 0.2rem;
    line-height: 1.15;
}

.program-card p {
    color: var(--text);
}

.time {
    display: inline-block;
    background: #ffedb5;
    color: #924700;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.top-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.top-list__item {
    background: #ffffff;
    border: 1px solid #d5e3ff;
    border-radius: 14px;
    display: grid;
    grid-template-columns: 46px 68px 1fr auto;
    align-items: center;
    gap: 0.8rem;
    padding: 0.65rem 0.75rem;
}

.top-list__rank {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.82rem;
    color: #ffffff;
    background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.top-list__thumb {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d5e3ff;
    background: #f3f7ff;
}

.top-list__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.top-list__meta {
    min-width: 0;
}

.top-list__meta strong {
    display: block;
    color: #143167;
    font-size: 1.04rem;
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.top-list__meta p {
    color: #4e648d;
    font-size: 0.92rem;
    line-height: 1.2;
}

.top-list__vote {
    padding: 0.48rem 0.9rem;
    border-radius: 999px;
}

.home-news-banner {
    margin-top: 1.1rem;
}

.home-news-banner__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    min-height: 126px;
    border-radius: 10px;
    overflow: hidden;
    border: none;
    text-decoration: none;
    box-shadow: none;
}

.home-news-banner__gif {
    width: 100%;
    height: 100%;
    min-height: 126px;
    object-fit: cover;
    display: block;
}

.home-news-banner__left {
    position: relative;
    display: grid;
    align-content: space-between;
    gap: 0.45rem;
    padding: 0.75rem;
    color: #113060;
    background:
        linear-gradient(180deg, rgba(224, 241, 255, 0.95) 0%, rgba(198, 229, 255, 0.95) 100%),
        radial-gradient(circle at 18% 40%, #f4fbff 0%, #d5ebff 46%, transparent 47%),
        radial-gradient(circle at 45% 68%, #f6fcff 0%, #d7ecff 36%, transparent 37%),
        radial-gradient(circle at 72% 32%, #f4fbff 0%, #d2e9ff 42%, transparent 43%),
        linear-gradient(135deg, #cfe7ff 0%, #9bc7f7 100%);
}

.home-news-banner__state {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.home-news-banner__gov {
    font-size: 0.72rem;
    font-weight: 700;
    opacity: 0.85;
}

.home-news-banner__right {
    background: #ffffff;
    display: grid;
    align-content: center;
    justify-items: start;
    padding: 0.7rem 1rem;
}

.home-news-banner__right strong {
    display: inline-block;
    font-size: clamp(1.3rem, 2.9vw, 3rem);
    line-height: 0.95;
    font-weight: 900;
    color: #ffe900;
    text-shadow: 0 1px 0 #cf2f1a, 1px 0 0 #cf2f1a, -1px 0 0 #cf2f1a, 0 -1px 0 #cf2f1a;
    margin-bottom: 0.18rem;
}

.home-news-banner__right p {
    margin: 0;
    font-size: clamp(0.9rem, 2vw, 2rem);
    font-weight: 800;
    color: #6d6f76;
    line-height: 1.05;
    text-transform: uppercase;
}

.radio-tunein {
    background: #ffffff;
    border: none;
    border-radius: 14px;
    box-shadow: none;
    padding: 1rem;
}

#cc_tunein {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}

#cc_tunein a {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.45rem;
    border: 1px solid #c7dbff;
    border-radius: 8px;
    background: #f4f8ff;
    transition: transform 0.2s ease;
}

#cc_tunein a:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

#cc_tunein img {
    display: block;
    height: 20px;
    width: auto;
}

.news-page {
    background: #ffffff;
    border-radius: 14px;
    border: none;
    padding: 1.15rem;
}

.news-page__titlebar {
    margin-bottom: 1rem;
}

.news-page__titlebar h2 {
    color: var(--navy-dark);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin-bottom: 0.2rem;
}

.news-page__titlebar p {
    color: var(--muted);
    font-weight: 500;
}

.news-search-results {
    margin-bottom: 1rem;
}

.news-search-results h2 {
    margin-bottom: 0.2rem;
}

.news-search-results__term {
    color: #3d5076;
    margin-bottom: 0.75rem;
}

.news-search-results__empty {
    color: #5a6a88;
    font-weight: 500;
}

.news-search-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.news-hero-layout {
    display: grid;
    grid-template-columns: 2.1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-hero-card,
.news-feature-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    min-height: 290px;
    background: #0d2a79;
    box-shadow: none;
}

.news-card-link {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.news-hero-card img,
.news-feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-hero-card .news-overlay,
.news-feature-card .news-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.15rem 1.1rem 0.95rem;
    background: linear-gradient(180deg, rgba(15, 49, 142, 0) 0%, rgba(10, 33, 100, 0.86) 58%, rgba(8, 24, 74, 0.95) 100%);
    color: #ffffff;
}

.news-hero-card .news-overlay h3,
.news-feature-card .news-overlay h3 {
    font-size: clamp(1.15rem, 2.4vw, 2rem);
    line-height: 1.08;
    margin-top: 0.38rem;
}

.news-feature-card .news-overlay h3 {
    font-size: clamp(1rem, 2vw, 1.7rem);
}

.news-hero-card .news-overlay p,
.news-feature-card .news-overlay p {
    margin-top: 0.48rem;
    color: rgba(236, 243, 252, 0.86);
    font-size: 0.82rem;
    letter-spacing: 0.01em;
}

.news-tag {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    background: linear-gradient(110deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: #ffffff;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 4px;
    background: linear-gradient(130deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: #ffffff;
    box-shadow: none;
    z-index: 3;
    padding: 0;
    font-size: 1.45rem;
}

.hero-nav:hover {
    background: linear-gradient(130deg, var(--navy) 0%, var(--blue-soft) 100%);
    box-shadow: none;
    transform: translateY(-50%);
}

.hero-nav--left {
    left: 0.35rem;
}

.hero-nav--right {
    right: 0.35rem;
}

.news-side-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 0.95rem;
}

.news-whatsapp-box {
    border-radius: 8px;
    background: linear-gradient(132deg, #ffd200 0%, #ff9800 52%, #ff4c1f 100%);
    color: #172a52;
    padding: 1rem;
    display: grid;
    align-content: center;
    gap: 0.55rem;
    box-shadow: none;
}

.news-whatsapp-box h3 {
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 800;
}

.news-whatsapp-box p {
    font-size: clamp(1.45rem, 3.2vw, 2rem);
    font-weight: 900;
    letter-spacing: 0.02em;
}

.news-video-box {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
}

.news-video-box img {
    width: 100%;
    height: 100%;
    min-height: 140px;
    object-fit: cover;
    display: block;
}

.news-video-box iframe {
    width: 100%;
    height: 100%;
    min-height: 140px;
    border: 0;
    display: block;
    background: #000000;
}

.news-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-featured-grid .news-feature-card {
    min-height: 340px;
}

.news-list-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1.2rem;
}

.news-list-column {
    display: grid;
    gap: 0.62rem;
}

.news-mini-card {
    display: grid;
    background: #ffffff;
    border-radius: 8px;
    border: none;
    padding: 0.45rem;
}

.news-mini-card__link {
    display: grid;
    grid-template-columns: 102px 1fr;
    gap: 0.58rem;
    align-items: start;
    color: inherit;
    text-decoration: none;
}

.news-mini-card img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    border-radius: 5px;
}

.news-mini-card h4 {
    color: #12316b;
    font-size: 1.04rem;
    line-height: 1.06;
    margin-bottom: 0.22rem;
    font-weight: 700;
}

.news-mini-card p {
    color: #5b6f93;
    font-size: 0.81rem;
    font-weight: 500;
}

.news-mini-card__link:hover h4 {
    text-decoration: underline;
}

.news-more-link {
    display: block;
    width: max-content;
    margin: 0 auto;
    padding: 0.62rem 1.15rem;
    border-radius: 6px;
    background: linear-gradient(110deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.news-more-link:hover {
    background: linear-gradient(110deg, var(--navy) 0%, var(--blue-soft) 100%);
}

.special-reports {
    margin-top: 1.55rem;
    background: #ffffff;
    border-radius: 10px;
    padding: 1.1rem;
}

.special-reports h3 {
    margin-bottom: 0.85rem;
    color: #66759a;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.special-reports h3 span {
    color: var(--navy-dark);
}

.special-reports__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
    margin-bottom: 0.9rem;
}

.special-reports__grid .news-feature-card {
    min-height: 345px;
}

.special-reports__grid--all {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.article-view {
    background: #ffffff;
}

.article-main {
    padding: 1.7rem 0 2.4rem;
}

.article-container {
    width: min(920px, 95%);
}

.article-card,
.article-empty {
    background: #ffffff;
    border: none;
    border-radius: 10px;
    box-shadow: none;
}

.article-card {
    padding: 1.25rem;
}

.article-empty {
    padding: 1.6rem 1.25rem;
    display: grid;
    gap: 0.85rem;
}

.article-tag {
    margin-bottom: 0.65rem;
}

.article-card h1 {
    color: #0e2b67;
    font-size: clamp(1.75rem, 4vw, 3rem);
    line-height: 1.05;
    margin-bottom: 0.55rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    color: #576e98;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.95rem;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.article-meta span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8ea9dd;
}

.article-hero-image {
    margin: 0 0 1.05rem;
    border-radius: 8px;
    overflow: hidden;
    border: none;
}

.article-hero-image img {
    width: 100%;
    display: block;
    max-height: 580px;
    object-fit: cover;
}

.article-content {
    color: #1b325f;
    font-size: 1.06rem;
    line-height: 1.75;
}

.article-content p {
    margin: 0 0 1.05rem;
}

.article-content h2 {
    margin: 1.5rem 0 0.65rem;
    font-size: 1.45rem;
    color: #0f2e6a;
}

.article-share {
    margin-top: 1.3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.article-share a {
    text-decoration: none;
    border: 1px solid #c3d5fd;
    background: #f4f8ff;
    color: #12346d;
    font-weight: 700;
    border-radius: 8px;
    padding: 0.45rem 0.75rem;
}

.article-share a:hover {
    background: #dde9ff;
}

.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: calc(1rem + 96px);
    z-index: 45;
    background: linear-gradient(120deg, #ff9800 0%, #ff4c1f 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    box-shadow: none;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

footer {
    margin-top: 2rem;
    background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 65%, #2065ff 100%);
    color: #ffffff;
    padding: 1.8rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.footer-grid h4 {
    margin-bottom: 0.5rem;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid li {
    margin-bottom: 0.35rem;
}

.footer-grid a {
    color: #ffffff;
    text-decoration: none;
}

.footer-grid a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
}

.footer-player {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    background: linear-gradient(180deg, #0b2c98 0%, #0a247f 55%, #1238b9 100%);
    border-top: 1px solid #4f75ed;
    box-shadow: none;
}

.footer-player audio {
    display: none;
}

.footer-player__inner {
    min-height: 86px;
    display: grid;
    grid-template-columns: 60px 172px 1fr 180px;
    gap: 0.8rem;
    align-items: center;
}

.footer-player__cover {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    background: #12337f;
    border: 1px solid #4f73de;
}

.footer-player__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-player__controls {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.footer-player .player-btn {
    border: 1px solid #456ede;
    background: #163d98;
    color: #f7fbff;
    border-radius: 8px;
    min-width: 44px;
    height: 38px;
    padding: 0 0.65rem;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    box-shadow: none;
    transform: none;
}

.footer-player .player-btn:hover {
    background: #2251be;
    box-shadow: none;
    transform: none;
}

.footer-player .player-btn--main {
    background: linear-gradient(115deg, #ff9800 0%, #ff4c1f 100%);
    border-color: #ffab2e;
    min-width: 72px;
    font-weight: 800;
}

.footer-player .player-btn--main:hover {
    background: linear-gradient(115deg, #ffaa16 0%, #ff5f2f 100%);
}

.footer-player .player-btn--main.is-playing {
    background: linear-gradient(115deg, #ffd200 0%, #ff9800 100%);
    border-color: #ffda4b;
    color: #6b2e00;
}

.footer-player .player-btn--quiet {
    min-width: 48px;
}

.footer-player__track {
    min-width: 0;
}

.footer-player__title {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.32rem;
    letter-spacing: 0.03em;
}

.footer-player__now {
    color: #ffe7a7;
    font-size: 0.78rem;
    margin-bottom: 0.28rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-player__now .cc_streaminfo {
    font-weight: 700;
}

.footer-player__timeline {
    display: grid;
    grid-template-columns: 52px 1fr 60px;
    align-items: center;
    gap: 0.6rem;
}

.footer-player__timeline span {
    color: #e2ecff;
    font-size: 0.75rem;
    font-variant-numeric: tabular-nums;
}

.footer-player input[type="range"] {
    width: 100%;
    accent-color: var(--gold);
    cursor: pointer;
}

.footer-player__timeline input[type="range"]:disabled {
    opacity: 0.75;
    cursor: default;
}

.footer-player__volume {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-player__volume input[type="range"] {
    width: 100px;
}

@media (max-width: 980px) {
    body {
        padding-bottom: 148px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .program-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .news-hero-layout,
    .news-featured-grid,
    .news-list-columns {
        grid-template-columns: 1fr;
    }

    .news-side-stack {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
    }

    .home-news-banner__inner {
        grid-template-columns: 1fr;
    }

    .home-news-banner__left {
        min-height: 76px;
    }

    .home-news-banner__right {
        min-height: 74px;
    }

    .home-news-banner__gif {
        min-height: 150px;
    }

    .special-reports__grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-player__inner {
        grid-template-columns: 56px 160px 1fr;
        padding: 0.35rem 0;
    }

    .footer-player__volume {
        grid-column: 2 / 4;
    }
}

@media (max-width: 680px) {
    body {
        padding-bottom: 178px;
    }

    .header-inner {
        flex-direction: column;
        justify-content: center;
        padding: 0.8rem 0;
    }

    .brand-logo,
    .site-header .brand img {
        height: 30px !important;
        max-height: 30px !important;
        max-width: 145px !important;
    }

    .header-actions {
        justify-content: center;
    }

    .main-nav {
        justify-content: center;
    }

    .header-search-form {
        width: 100%;
        justify-content: center;
    }

    .header-search-input {
        width: min(250px, 65vw);
    }

    .program-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .top-list__item {
        grid-template-columns: 34px 56px 1fr;
        gap: 0.6rem;
        align-items: center;
    }

    .top-list__vote {
        grid-column: 1 / -1;
        width: 100%;
        justify-self: stretch;
    }

    .top-list__thumb {
        width: 56px;
        height: 56px;
    }

    .program-card {
        grid-template-columns: 66px 1fr;
        gap: 0.65rem;
    }

    .program-card__media {
        width: 66px;
        height: 66px;
    }

    .footer-player__inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0.55rem 0 0.7rem;
    }

    .footer-player__cover {
        display: none;
    }

    .footer-player__controls {
        justify-content: flex-start;
    }

    .footer-player__timeline {
        grid-template-columns: 44px 1fr 54px;
        gap: 0.45rem;
    }

    .footer-player__volume {
        width: 100%;
    }

    .footer-player__volume input[type="range"] {
        width: 100%;
    }

    .whatsapp-float {
        bottom: calc(1rem + 154px);
    }

    .news-page {
        padding: 0.8rem;
    }

    .news-mini-card {
        grid-template-columns: 1fr;
    }

    .news-mini-card__link {
        grid-template-columns: 1fr;
    }

    .news-mini-card img {
        height: 138px;
    }

    .news-search-grid {
        grid-template-columns: 1fr;
    }

    .news-side-stack {
        grid-template-columns: 1fr;
    }

    .special-reports {
        padding: 0.8rem;
    }

    .special-reports__grid {
        grid-template-columns: 1fr;
    }

    .article-card {
        padding: 1rem;
    }

    .article-card h1 {
        font-size: clamp(1.4rem, 6.4vw, 2.2rem);
    }

    .article-content {
        font-size: 1rem;
        line-height: 1.7;
    }
}

.footer-admin-access {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.footer-admin-access__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.footer-admin-access__link:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}
body.panel-body .admin-home-player {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border-radius: 22px;
    background: linear-gradient(145deg, #0b2c98 0%, #1549d1 100%);
    color: #ffffff;
}

body.panel-body .admin-home-player__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

body.panel-body .admin-home-player__meta {
    display: grid;
    gap: 0.2rem;
}

body.panel-body .admin-home-player__meta strong {
    font-size: 1rem;
    color: #ffffff;
}

body.panel-body .admin-home-player__meta span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.88rem;
}

body.panel-body .admin-home-player__controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

body.panel-body .admin-home-player__button,
body.panel-body .mobile-sticky-player__button {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

body.panel-body .admin-home-player__button:hover,
body.panel-body .mobile-sticky-player__button:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    transform: none;
    filter: none;
}

body.panel-body .admin-home-player__button:disabled,
body.panel-body .mobile-sticky-player__button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

body.panel-body .admin-home-player__button--primary,
body.panel-body .mobile-sticky-player__button--primary {
    background: linear-gradient(115deg, #ff9800 0%, #ff4c1f 100%);
    border-color: rgba(255, 208, 109, 0.78);
}

body.panel-body .admin-home-player__button--primary:hover,
body.panel-body .mobile-sticky-player__button--primary:hover {
    background: linear-gradient(115deg, #ffaa18 0%, #ff5d30 100%);
}

body.panel-body .admin-home-player__button.is-playing,
body.panel-body .mobile-sticky-player__button.is-playing {
    background: linear-gradient(115deg, #ffd200 0%, #ff9800 100%);
    border-color: rgba(255, 228, 130, 0.88);
    color: #6b2e00;
}

body.panel-body .admin-home-player__button i,
body.panel-body .mobile-sticky-player__button i {
    font-size: 1rem;
}

body.panel-body .admin-home-player__status {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.88rem;
}

body.panel-body .admin-home-news-list {
    gap: 0.9rem;
}

body.panel-body .panel-news-card--compact {
    overflow: hidden;
}

@media (max-width: 767.98px) {
    body.panel-body.panel-body--with-player {
        padding-bottom: 86px;
    }

    body.panel-body .panel-main {
        padding: 0.75rem 0.6rem;
    }

    body.panel-body .panel-hero {
        padding: 1rem 0.9rem;
        margin-bottom: 1rem;
    }

    body.panel-body .panel-section {
        padding: 0.95rem 0.75rem;
        border-radius: 18px;
    }

    body.panel-body .section-heading {
        margin-bottom: 0.85rem;
        gap: 0.75rem;
    }

    body.panel-body .section-heading h3 {
        font-size: 1.1rem;
    }

    body.panel-body .admin-home-news-list--mobile {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    body.panel-body .panel-news-card--compact {
        display: grid;
        grid-template-columns: 96px 1fr;
        border-radius: 18px;
    }

    body.panel-body .panel-news-card--compact .panel-news-card__media {
        grid-row: 1 / 3;
        min-height: 100%;
        height: 100%;
        aspect-ratio: auto;
    }

    body.panel-body .panel-news-card--compact .panel-news-card__body {
        padding: 0.8rem 0.8rem 0.55rem;
        gap: 0.45rem;
    }

    body.panel-body .panel-news-card--compact .panel-news-card__actions {
        padding: 0 0.8rem 0.8rem;
        gap: 0.5rem;
    }

    body.panel-body .panel-news-card--compact .panel-news-card__actions .btn {
        flex: 1 1 0;
        min-width: 0;
    }

    body.panel-body .mobile-sticky-player {
        display: block;
        position: fixed;
        left: 8px;
        right: 8px;
        bottom: 8px;
        z-index: 1050;
        padding: 0.45rem 0.6rem;
        border-radius: 18px;
        background: rgba(7, 19, 44, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 16px 35px rgba(7, 19, 44, 0.24);
    }

    body.panel-body .mobile-sticky-player__inner {
        display: grid;
        grid-template-columns: 40px minmax(0, 1fr) 40px;
        align-items: center;
        gap: 0.55rem;
    }

    body.panel-body .mobile-sticky-player__meta {
        margin: 0;
        display: grid;
        gap: 0.05rem;
        min-width: 0;
    }

    body.panel-body .mobile-sticky-player__meta strong {
        font-size: 0.82rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    body.panel-body .mobile-sticky-player__meta small {
        font-size: 0.68rem;
        color: rgba(255, 255, 255, 0.7);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    body.panel-body .mobile-sticky-player__button {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    body.panel-body .mobile-sticky-player__button i {
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) {
    body.panel-body .mobile-sticky-player {
        display: none !important;
    }
}

body.home-mobile-news {
    background: #f5f7fb;
    color: #12316b;
    padding-bottom: 124px;
}

body.home-mobile-news .footer-player {
    display: none !important;
}

body:not(.home-mobile-news) .blindado-player-shell {
    display: none !important;
}

.home-mobile-news .d-none {
    display: none !important;
}

.home-mobile-news .home-main {
    padding: 1.2rem 0 2.4rem;
}

.home-mobile-news .container {
    width: min(1180px, calc(100% - 32px));
}

.home-mobile-news .site-header {
    background: #1b3fb5;
    box-shadow: 0 18px 40px rgba(9, 22, 69, 0.18);
}

.home-mobile-news .home-app-header__bar {
    min-height: 124px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.home-mobile-news .home-app-header__brand {
    margin: 0;
}

.home-mobile-news .home-app-header__brand-link {
    gap: 0.9rem;
    max-width: none;
}

.home-mobile-news .home-app-header__logo,
.home-mobile-news .site-header .home-app-header__brand img {
    height: 76px !important;
    max-height: 76px !important;
    max-width: 150px !important;
    width: auto !important;
}

.home-mobile-news .home-app-header__name {
    font-size: clamp(1.55rem, 2vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.home-mobile-news .home-app-header__desktop {
    margin-left: auto;
    align-items: center;
    gap: 1rem;
}

.home-mobile-news .home-app-nav {
    gap: 0.9rem;
}

.home-mobile-news .home-app-nav a {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.96rem;
    padding: 0;
}

.home-mobile-news .home-app-nav a:hover {
    color: #fff2ac;
    text-decoration: none;
}

.home-mobile-news .home-app-search {
    gap: 0.55rem;
}

.home-mobile-news .header-search-input {
    width: 190px;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.home-mobile-news .header-search-submit {
    border-color: transparent;
    background: rgba(255, 255, 255, 0.18);
}

.home-mobile-news .header-search-submit:hover {
    background: #ffcf5d;
    color: #12316b;
}

.home-mobile-news .d-md-none {
    display: none !important;
}

.home-mobile-news .d-md-flex {
    display: flex !important;
}

.home-mobile-news .d-md-block {
    display: block !important;
}

.home-mobile-news .home-app-menu {
    position: relative;
}

.home-mobile-news .home-app-menu__toggle {
    list-style: none;
    display: grid;
    gap: 8px;
    justify-items: end;
    align-content: center;
    width: 70px;
    padding: 0;
    cursor: pointer;
}

.home-mobile-news .home-app-menu__toggle::-webkit-details-marker {
    display: none;
}

.home-mobile-news .home-app-menu__toggle span {
    display: block;
    width: 56px;
    height: 6px;
    border-radius: 999px;
    background: #ffffff;
}

.home-mobile-news .home-app-menu__panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: none;
    width: min(340px, calc(100vw - 28px));
    padding: 1rem;
    border-radius: 24px;
    background: #11328a;
    box-shadow: 0 20px 44px rgba(6, 17, 49, 0.34);
    z-index: 80;
}

.home-mobile-news .home-app-menu[open] .home-app-menu__panel {
    display: grid;
    gap: 1rem;
}

.home-mobile-news .home-app-menu__links {
    display: grid;
    gap: 0.9rem;
}

.home-mobile-news .home-app-menu__links a {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    padding: 0;
}

.home-mobile-news .home-app-menu__search {
    display: grid;
    gap: 0.65rem;
}

.home-mobile-news .home-app-menu__search .header-search-input {
    width: 100%;
}

.home-mobile-news .home-hero-section {
    margin-bottom: 1.3rem;
}

.home-mobile-news .home-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) 320px;
    gap: 1rem;
    align-items: stretch;
}

.home-mobile-news .home-hero-slider {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    border-radius: 30px;
    background: #071427;
}

.home-mobile-news .home-hero-slider__link {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.home-mobile-news .home-hero-slider img {
    width: 100%;
    height: 100%;
    min-height: 610px;
    object-fit: cover;
    display: block;
}

.home-mobile-news .home-hero-slider__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 18%, rgba(4, 11, 38, 0.64) 56%, rgba(4, 11, 38, 0.96) 100%);
}

.home-mobile-news .home-hero-slider__overlay h2 {
    margin: 0.8rem 0 0.6rem;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
    max-width: 14ch;
}

.home-mobile-news .home-hero-slider__overlay p {
    margin: 0;
    font-size: clamp(1rem, 1.4vw, 1.3rem);
    line-height: 1.45;
    max-width: 28ch;
    color: rgba(255, 255, 255, 0.88);
}

.home-mobile-news .home-badge,
.home-mobile-news .feed-story__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    background: #1d4ed8;
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-mobile-news .hero-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 72px;
    height: 106px;
    border-radius: 22px;
    background: #1d4ed8;
    color: #ffffff;
    font-size: 3.4rem;
    font-weight: 800;
}

.home-mobile-news .hero-nav:hover {
    background: #2e5fe3;
    transform: translateY(-50%);
}

.home-mobile-news .hero-nav--left {
    left: 1rem;
}

.home-mobile-news .hero-nav--right {
    right: 1rem;
}

.home-mobile-news .home-hero-side {
    display: grid;
    gap: 1rem;
}

.home-mobile-news .home-support-card,
.home-mobile-news .home-sidebar-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 1.25rem;
    box-shadow: 0 18px 44px rgba(12, 29, 75, 0.08);
}

.home-mobile-news .home-support-card--whatsapp {
    background: linear-gradient(180deg, #1b3fb5 0%, #0f286f 100%);
    color: #ffffff;
    display: grid;
    gap: 0.55rem;
    align-content: center;
}

.home-mobile-news .home-support-card__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.82;
}

.home-mobile-news .home-support-card strong {
    font-size: 1.7rem;
    line-height: 1.05;
}

.home-mobile-news .home-support-card p {
    font-size: 0.98rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.82);
}

.home-mobile-news .home-support-card--video {
    display: grid;
    gap: 0.75rem;
}

.home-mobile-news .home-support-card--video iframe,
.home-mobile-news .home-support-card--video img {
    width: 100%;
    min-height: 220px;
    border: 0;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    background: #0b1020;
}

.home-mobile-news .home-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) 360px;
    gap: 1.2rem;
    align-items: start;
}

.home-mobile-news .home-feed {
    background: #ffffff;
    border-radius: 32px;
    padding: 1.5rem 1.5rem 0.5rem;
    box-shadow: 0 18px 44px rgba(12, 29, 75, 0.06);
}

.home-mobile-news .feed-story {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e7edf7;
}

.home-mobile-news .feed-story:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.home-mobile-news .feed-story__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.home-mobile-news .feed-story__title {
    margin: 0.8rem 0 0.55rem;
    color: #11328a;
    font-size: clamp(2.2rem, 4.1vw, 3.5rem);
    line-height: 1.07;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.home-mobile-news .feed-story__meta {
    margin: 0 0 1rem;
    color: #8a97b8;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.home-mobile-news .feed-story__image {
    overflow: hidden;
    border-radius: 28px;
    margin-bottom: 1rem;
    background: #edf2ff;
}

.home-mobile-news .feed-story__image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.home-mobile-news .feed-story__summary {
    margin: 0;
    color: #425170;
    font-size: 1.16rem;
    line-height: 1.65;
}

.home-mobile-news .home-sidebar {
    position: sticky;
    top: 108px;
    display: grid;
    gap: 1rem;
}

.home-mobile-news .home-sidebar-card__head {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.home-mobile-news .home-sidebar-card__head h3 {
    margin: 0;
    color: #11328a;
    font-size: 1.4rem;
    font-weight: 800;
}

.home-mobile-news .home-sidebar-programs {
    grid-template-columns: 1fr;
}

.home-mobile-news .home-sidebar .program-card,
.home-mobile-news .home-sidebar .top-list__item,
.home-mobile-news .home-sidebar .radio-tunein {
    background: #f8faff;
}

.home-mobile-news .home-sidebar .top-list {
    gap: 0.8rem;
}

.home-mobile-news .home-sidebar .top-list__vote {
    border-radius: 999px;
}

.home-mobile-news .home-sidebar .radio-tunein {
    margin-top: 0;
    padding: 0;
}

.home-mobile-news .home-sidebar .home-news-banner__inner {
    grid-template-columns: 1fr;
    border-radius: 20px;
}

.home-mobile-news .whatsapp-float {
    right: 15px;
    bottom: 100px;
    z-index: 1000;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    background: #ff6a00;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    box-shadow: 0 16px 30px rgba(255, 106, 0, 0.34);
}

.home-mobile-news .whatsapp-float:hover {
    transform: translateY(-2px);
    background: #ff7c21;
}

.home-mobile-news footer {
    margin-top: 2rem;
}

.blindado-player-shell {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    background: #11328a;
    box-shadow: 0 -12px 32px rgba(6, 17, 49, 0.32);
}

.blindado-player {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 0.95rem 0;
    color: #ffffff;
}

.blindado-player__play {
    min-width: 148px;
    padding: 0.95rem 1.45rem;
    border-radius: 18px;
    background: #ff6a00;
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 800;
    box-shadow: none;
}

.blindado-player__play:hover {
    background: #ff7b24;
    transform: none;
    filter: none;
}

.blindado-player__content {
    min-width: 0;
    display: grid;
    gap: 0.3rem;
}

.blindado-player__title {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.05;
    font-weight: 800;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blindado-player__status {
    display: block;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blindado-player__volume {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.blindado-player__mute {
    min-width: 56px;
    padding: 0.48rem 0.65rem;
    border-radius: 12px;
    background: #0b256f;
    color: #ffffff;
    font-size: 0.96rem;
    font-weight: 800;
    box-shadow: none;
}

.blindado-player__mute:hover {
    background: #12358f;
    transform: none;
    filter: none;
}

.blindado-player__range {
    width: 148px;
    accent-color: #ffd200;
}

@media (max-width: 980px) {
    .home-mobile-news .home-hero-layout,
    .home-mobile-news .home-content-grid {
        grid-template-columns: 1fr;
    }

    .home-mobile-news .home-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    body.home-mobile-news {
        padding-bottom: 118px;
    }

    .home-mobile-news .container {
        width: min(100%, calc(100% - 28px));
    }

    .home-mobile-news .home-main {
        padding-top: 1rem;
    }

    .home-mobile-news .d-md-flex,
    .home-mobile-news .d-md-block {
        display: none !important;
    }

    .home-mobile-news .d-md-none {
        display: block !important;
    }

    .home-mobile-news .home-app-header__bar {
        min-height: 96px;
        padding: 0.85rem 0;
    }

    .home-mobile-news .home-app-header__logo,
    .home-mobile-news .site-header .home-app-header__brand img {
        height: 64px !important;
        max-height: 64px !important;
        max-width: 122px !important;
    }

    .home-mobile-news .home-app-header__name {
        font-size: 1.75rem;
    }

    .home-mobile-news .home-app-menu__toggle {
        width: 60px;
    }

    .home-mobile-news .home-app-menu__toggle span {
        width: 48px;
        height: 5px;
    }

    .home-mobile-news .home-hero-slider {
        min-height: 410px;
        border-radius: 24px;
    }

    .home-mobile-news .home-hero-slider img {
        min-height: 410px;
    }

    .home-mobile-news .home-hero-slider__overlay {
        padding: 1.2rem;
    }

    .home-mobile-news .home-hero-slider__overlay h2 {
        font-size: clamp(1.8rem, 7vw, 2.7rem);
        max-width: 13ch;
    }

    .home-mobile-news .home-hero-slider__overlay p {
        font-size: 1rem;
        max-width: 26ch;
    }

    .home-mobile-news .hero-nav {
        width: 58px;
        height: 88px;
        border-radius: 18px;
        font-size: 3rem;
    }

    .home-mobile-news .hero-nav--left {
        left: 0.55rem;
    }

    .home-mobile-news .hero-nav--right {
        right: 0.55rem;
    }

    .home-mobile-news .home-feed {
        background: transparent;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
    }

    .home-mobile-news .feed-story {
        margin-bottom: 1.7rem;
        padding-bottom: 0;
        border-bottom: none;
    }

    .home-mobile-news .feed-story__title {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .home-mobile-news .feed-story__meta {
        font-size: 0.98rem;
    }

    .home-mobile-news .feed-story__image {
        border-radius: 20px;
    }

    .home-mobile-news .feed-story__summary {
        font-size: 1.04rem;
    }

    .home-mobile-news .whatsapp-float {
        bottom: 102px;
        right: 15px;
        padding: 0.9rem 1.4rem;
        font-size: 1rem;
    }

    .blindado-player {
        width: calc(100% - 28px);
        gap: 0.95rem;
        padding: 0.85rem 0 0.95rem;
    }

    .blindado-player__play {
        min-width: 116px;
        padding: 0.85rem 0.95rem;
        font-size: 1.45rem;
        border-radius: 18px;
    }

    .blindado-player__title {
        font-size: 1.22rem;
    }

    .blindado-player__status {
        font-size: 0.95rem;
    }

    .blindado-player__mute {
        min-width: 48px;
        padding: 0.42rem 0.55rem;
        border-radius: 10px;
        font-size: 0.9rem;
    }

    .blindado-player__range {
        width: 110px;
    }
}
