﻿:root {
    --re-bg: #f8f4ed;
    --re-bg-soft: #fffaf2;
    --re-ink: #16181d;
    --re-muted: #5c6472;
    --re-border: #e7dcc8;
    --re-brand: #cd3f1b;
    --re-brand-dark: #a63315;
    --re-panel: #111318;
    --re-panel-soft: #1a1d24;
    --re-white: #ffffff;
    --re-shadow: 0 20px 52px rgba(21, 24, 30, 0.13);
}

.re-landing-main {
    background:
        radial-gradient(circle at 88% 10%, rgba(205, 63, 27, 0.16), transparent 34%),
        radial-gradient(circle at 12% 32%, rgba(72, 106, 180, 0.12), transparent 36%),
        linear-gradient(180deg, var(--re-bg-soft), var(--re-bg));
    color: var(--re-ink);
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

.re-shell {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.re-nav-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: none;
    background: #f9f3e7 !important;
    border-bottom: 1px solid rgba(22, 24, 29, 0.16);
    box-shadow: 0 6px 16px rgba(18, 22, 31, 0.08);
}

.re-nav {
    padding: 14px 0;
}

.re-nav-wrap .navbar,
.re-nav-wrap .re-nav,
.re-nav-wrap .container-fluid,
.re-nav-wrap .navbar-collapse {
    background: #f9f3e7 !important;
}

.re-logo img {
    height: 38px;
    width: auto;
}

.re-menu .nav-link {
    font-family: "Sora", sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.14em;
    color: #11141c !important;
    font-weight: 700;
    padding-inline: 12px !important;
}

.re-nav-actions {
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.re-menu .nav-link:hover,
.re-menu .nav-link:focus {
    color: var(--re-brand) !important;
}

.re-menu .nav-link.active {
    color: var(--re-brand) !important;
}

.re-btn-solid,
.re-btn-outline {
    min-width: 112px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-family: "Sora", sans-serif;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.12em;
    font-weight: 700;
    line-height: 1;
    padding: 11px 18px;
}

.re-btn-solid {
    background: var(--re-brand);
    border: 1px solid var(--re-brand);
    color: var(--re-white) !important;
}

.re-btn-solid:hover,
.re-btn-solid:focus {
    background: var(--re-brand-dark);
    border-color: var(--re-brand-dark);
    color: var(--re-white) !important;
}

.re-btn-outline {
    background: #fff4e6;
    border: 1px solid #313744;
    color: #212630 !important;
}

.re-btn-outline:hover,
.re-btn-outline:focus {
    border-color: var(--re-brand);
    background: #ffe8dc;
    color: var(--re-brand) !important;
}

.re-nav .navbar-toggler {
    border-color: rgba(17, 20, 28, 0.28);
    border-radius: 10px;
    padding: 6px 9px;
}

.re-nav .navbar-toggler-icon {
    background-image: none;
    width: 20px;
    height: 14px;
    position: relative;
}

.re-nav .navbar-toggler-icon::before,
.re-nav .navbar-toggler-icon::after,
.re-nav .navbar-toggler-icon {
    border-top: 2px solid #151823;
}

.re-nav .navbar-toggler-icon::before,
.re-nav .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
}

.re-nav .navbar-toggler-icon::before {
    top: 5px;
}

.re-nav .navbar-toggler-icon::after {
    top: 10px;
}

.re-login-modal .modal-dialog {
    max-width: 430px;
}

.re-login-modal-content {
    border: 1px solid #e4d6bf;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(18, 21, 30, 0.2);
}

.re-login-modal .modal-title {
    font-family: "Sora", sans-serif;
    font-size: 17px;
    letter-spacing: 0.02em;
    color: #181b25;
}

.re-login-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.re-login-label {
    font-family: "Sora", sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4f5767;
}

.re-login-input {
    width: 100%;
    border: 1px solid #d3d9e5;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    color: #111822;
    background: #fff;
    margin-bottom: 8px;
}

.re-login-input:focus {
    outline: none;
    border-color: #a2afc8;
    box-shadow: 0 0 0 3px rgba(162, 175, 200, 0.2);
}

.re-login-submit {
    margin-top: 6px;
    border: 0;
    border-radius: 10px;
    background: var(--re-brand);
    color: #fff;
    font-family: "Sora", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
    padding: 11px;
    font-weight: 700;
}

.re-login-full-page-link {
    margin-top: 12px;
    display: inline-block;
    color: #4f607e;
    font-size: 12px;
}

.re-section {
    padding: 28px 0;
}

.re-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
    gap: 16px;
}

.re-hero-main,
.re-hero-side,
.re-band-card,
.re-episode-card,
.re-grid-card,
.re-host-card,
.re-contact-card {
    position: relative;
    overflow: hidden;
}

.re-hero-main,
.re-hero-side {
    min-height: 560px;
    border-radius: 26px;
    box-shadow: var(--re-shadow);
}

.re-hero-main::after {
    content: "";
    position: absolute;
    right: 28px;
    top: 20px;
    width: 92px;
    height: 92px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    z-index: 2;
}

.re-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.re-hero-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.re-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 17, 24, 0.05), rgba(15, 17, 24, 0.84));
}

.re-hero-text {
    position: absolute;
    left: 34px;
    right: 24px;
    bottom: 34px;
    z-index: 2;
    transform: translate3d(var(--hero-mx, 0px), var(--hero-my, 0px), 0);
    transition: transform 0.16s ease-out;
}

.re-hero-kicker {
    color: #ffe7dc;
    font-family: "Sora", sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
}

.re-hero-title,
.re-section h3,
.re-contact-title {
    font-family: "DM Serif Display", serif;
    letter-spacing: 0.01em;
}

.re-hero-title {
    color: var(--re-white);
    font-size: clamp(34px, 5.1vw, 66px);
    line-height: 0.92;
    margin: 0;
}

.re-hero-title .accent {
    color: #ffcfad;
}

.re-side-box {
    position: absolute;
    right: 20px;
    left: 20px;
    bottom: 20px;
    background: linear-gradient(145deg, rgba(17, 19, 24, 0.88), rgba(17, 19, 24, 0.62));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    padding: 18px;
    z-index: 2;
}

.re-side-box h4 {
    color: #f8f0e8;
    font-family: "Sora", sans-serif;
    font-size: 17px;
    margin-bottom: 8px;
}

.re-side-box p {
    color: #d6d9e0;
    font-size: 12px;
    line-height: 1.55;
    margin-bottom: 12px;
}

.re-hero-submeta {
    font-size: 11px;
    color: #ffdbc9 !important;
    letter-spacing: 0.04em;
}

.re-mini-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--re-brand);
    border: 1px solid var(--re-brand);
    color: var(--re-white);
    border-radius: 999px;
    text-transform: uppercase;
    font-size: 10px;
    font-family: "Sora", sans-serif;
    letter-spacing: 0.12em;
    font-weight: 700;
    padding: 9px 14px;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.re-mini-button:hover,
.re-mini-button:focus {
    color: var(--re-white);
    background: var(--re-brand-dark);
    border-color: var(--re-brand-dark);
    transform: translateY(-2px);
}

.re-episode-row,
.re-grid-row,
.re-host-row {
    display: grid;
    gap: 16px;
}

.re-episode-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 34px;
}

.re-episode-card {
    background: #fff;
    border: 1px solid var(--re-border);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(18, 20, 26, 0.08);
    min-height: 316px;
}

.re-episode-thumb {
    width: 100%;
    height: 168px;
    object-fit: cover;
}

.re-episode-body {
    padding: 14px;
}

.re-episode-body h5 {
    font-family: "Sora", sans-serif;
    font-size: 14px;
    line-height: 1.45;
    margin: 0 0 10px;
    min-height: 58px;
}

.re-meta {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7c8493;
    margin-bottom: 12px;
}

.re-welcome {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: center;
    gap: 28px;
}

.re-small-kicker {
    color: var(--re-brand);
    text-transform: uppercase;
    font-size: 11px;
    font-family: "Sora", sans-serif;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    font-weight: 700;
}

.re-welcome h3,
.re-grid-wrap h3,
.re-team-wrap h3,
.re-contact-title {
    color: #151922;
    margin: 0 0 14px;
    line-height: 1;
    font-size: clamp(34px, 3.3vw, 58px);
}

.re-welcome p,
.re-grid-wrap p,
.re-team-wrap p {
    color: var(--re-muted);
    font-size: 14px;
    line-height: 1.7;
}

.re-welcome ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.re-welcome ul li {
    margin-bottom: 8px;
    font-size: 13px;
    color: #2f3541;
}

.re-welcome ul li i {
    color: var(--re-brand);
    margin-right: 8px;
}

.re-cutout {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.re-cutout::before {
    content: "";
    position: absolute;
    width: min(84%, 380px);
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    background: radial-gradient(circle at 50% 50%, rgba(205, 63, 27, 0.25), rgba(205, 63, 27, 0.05));
    bottom: 12px;
}

.re-cutout img {
    width: 66%;
    max-width: 350px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 14px 32px rgba(17, 20, 27, 0.26));
}

.re-cutout-link {
    width: 66%;
    max-width: 350px;
    position: relative;
    z-index: 1;
    display: inline-flex;
    justify-content: center;
    align-items: flex-end;
    text-decoration: none;
}

.re-cutout-link img {
    width: 100%;
    max-width: none;
    transition: transform 0.24s ease, filter 0.24s ease;
}

.re-cutout-link:hover img,
.re-cutout-link:focus-visible img {
    transform: translateY(-3px) scale(1.015);
    filter: drop-shadow(0 18px 36px rgba(17, 20, 27, 0.34));
}

.re-cutout-cta {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(10, 12, 18, 0.82);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.re-outline-word {
    position: absolute;
    right: 2%;
    top: 8%;
    color: rgba(22, 24, 29, 0.07);
    text-transform: uppercase;
    text-align: right;
    line-height: 0.86;
    font-family: "Sora", sans-serif;
    font-size: clamp(40px, 7vw, 92px);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.re-band-list {
    display: grid;
    gap: 12px;
}

.re-band-card {
    min-height: 234px;
    border-radius: 20px;
    box-shadow: var(--re-shadow);
}

.re-band-info {
    position: absolute;
    inset: auto 0 0 0;
    padding: 18px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 14px;
}

.re-band-info h4 {
    color: var(--re-white);
    margin: 0;
    font-family: "DM Serif Display", serif;
    font-size: clamp(36px, 4.5vw, 60px);
    line-height: 0.9;
}

.re-band-info p {
    color: #e2e6ed;
    font-size: 12px;
    margin: 0 0 8px;
    max-width: 440px;
}

.re-grid-wrap {
    text-align: center;
}

.re-visitors-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    background: linear-gradient(135deg, #fff9f1, #fff);
    border: 1px solid var(--re-border);
    border-radius: 20px;
    box-shadow: 0 12px 26px rgba(19, 22, 29, 0.08);
    padding: 20px;
}

.re-visitors-head h3 {
    color: #151922;
    margin: 8px 0 12px;
    line-height: 1;
    font-size: clamp(32px, 3vw, 50px);
}

.re-visitors-head p {
    color: var(--re-muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.re-visitors-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e8dcc8;
    border-radius: 14px;
    padding: 14px;
}

.re-visitors-card img {
    width: 100%;
    max-width: 360px;
    height: auto;
    display: block;
}

.re-grid-wrap h3,
.re-team-wrap h3 {
    font-size: clamp(36px, 3.8vw, 62px);
}

.re-filter {
    display: inline-flex;
    border: 1px solid var(--re-border);
    border-radius: 999px;
    margin-bottom: 24px;
    padding: 5px;
    background: #fff;
}

.re-filter button {
    border: 0;
    padding: 8px 14px;
    border-radius: 999px;
    background: transparent;
    color: #1d2330;
    font-family: "Sora", sans-serif;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
}

.re-filter .active {
    background: var(--re-brand);
    color: var(--re-white);
}

.re-grid-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.re-grid-card {
    background: #fff;
    border: 1px solid var(--re-border);
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 12px 26px rgba(19, 22, 29, 0.08);
}

.re-grid-card img {
    width: 100%;
    height: 204px;
    object-fit: cover;
}

.re-grid-card .inner {
    padding: 12px;
}

.re-grid-card h5 {
    font-family: "Sora", sans-serif;
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 10px;
}

.re-grid-pager {
    margin-top: 18px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: #4e5564;
    font-family: "Sora", sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.re-grid-pager button {
    border: 1px solid #c8cfdb;
    background: #fff;
    color: #1e2533;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    line-height: 1;
    cursor: pointer;
}

.re-grid-pager button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.re-sponsor {
    background: linear-gradient(135deg, #151822, #1f2433);
    color: var(--re-white);
    padding: 56px 0;
    margin: 36px 0;
}

.re-sponsor h3 {
    color: var(--re-white);
    text-align: center;
    margin-bottom: 10px;
    font-size: clamp(30px, 3vw, 52px);
}

.re-sponsor p {
    text-align: center;
    color: #cfd6e2;
    margin-bottom: 20px;
    font-size: 13px;
}

.re-sponsor-row {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    margin-top: 16px;
}

.re-brand {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 12px 14px;
    text-align: center;
    font-family: "Sora", sans-serif;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.14em;
    color: #eef2fa;
    text-decoration: none;
}

.re-brand:hover,
.re-brand:focus {
    color: #fff;
    border-color: #fff;
}

.re-host-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.re-host-card {
    min-height: 326px;
    border-radius: 18px;
    background: #dfe4eb;
}

.re-host-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.re-host-name {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(205, 63, 27, 0.9);
    color: var(--re-white);
    border-radius: 999px;
    padding: 7px 12px;
    font-family: "Sora", sans-serif;
    text-transform: capitalize;
    font-size: 11px;
    letter-spacing: 0.11em;
}

.re-host-social {
    position: absolute;
    right: 10px;
    top: 10px;
    display: grid;
    gap: 6px;
    z-index: 3;
}

.re-host-social a {
    width: 24px;
    height: 24px;
    background: rgba(17, 22, 31, 0.8);
    color: #f7f8fb;
    font-size: 11px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.re-contact {
    margin-top: 30px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.re-contact-title {
    font-size: clamp(34px, 3.5vw, 56px);
}

.re-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.re-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.re-contact-list i {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffe4dc;
    color: var(--re-brand);
    font-size: 13px;
}

.re-contact-card {
    background: var(--re-panel);
    border-radius: 20px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: var(--re-shadow);
}

.re-contact-card input,
.re-contact-card textarea {
    width: 100%;
    border: 1px solid #2e3542;
    border-radius: 12px;
    background: var(--re-panel-soft);
    color: #f5f8ff;
    padding: 10px;
    font-size: 13px;
    margin-bottom: 10px;
}

.re-contact-card input::placeholder,
.re-contact-card textarea::placeholder {
    color: #9da7bb;
}

.re-contact-card .label {
    font-size: 10px;
    text-transform: uppercase;
    color: #cad1de;
    font-family: "Sora", sans-serif;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
    display: block;
}

.re-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.re-contact-submit {
    background: var(--re-brand);
    color: var(--re-white);
    border: 0;
    border-radius: 12px;
    width: 100%;
    padding: 11px;
    font-family: "Sora", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 10px;
}

.re-stream-platform {
    background: #f7efe2;
    margin-top: 30px;
    padding: 28px 0;
    border-top: 1px solid var(--re-border);
    border-bottom: 1px solid var(--re-border);
}

.re-stream-platform .line-1 {
    text-align: center;
    font-family: "DM Serif Display", serif;
    font-size: clamp(34px, 3.5vw, 52px);
    margin-bottom: 16px;
    color: #141924;
}

.re-stream-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    text-align: center;
}

.re-stream-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border: 1px solid #dcccb4;
    border-radius: 999px;
    background: #fff;
    padding: 10px 14px;
    color: #202737;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    font-family: "Barlow Condensed", sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.re-stream-pill i {
    color: var(--re-brand);
    font-size: 16px;
}

.re-stream-pill:hover,
.re-stream-pill:focus {
    border-color: var(--re-brand);
    color: #121826;
}

.re-footer {
    background: #0d1018;
    color: #d3d8e4;
}

.re-footer-shell {
    padding-top: 40px;
    padding-bottom: 28px;
}

.re-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 24px;
}

.re-footer-logo {
    max-height: 46px;
    width: auto;
    margin-bottom: 12px;
    object-fit: contain;
}

.re-footer-intro {
    font-size: 12px;
    line-height: 1.75;
    color: #9ca5b8;
    margin-bottom: 0;
}

.re-footer-title {
    color: #eef1f8;
    text-transform: uppercase;
    font-family: "Sora", sans-serif;
    letter-spacing: 0.12em;
    font-size: 10px;
    margin-bottom: 10px;
}

.re-footer-links,
.re-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 2;
}

.re-footer-links a,
.re-footer-links li {
    color: #b8c0d1;
    text-decoration: none;
}

.re-footer-links a:hover,
.re-footer-links a:focus {
    color: #fff;
}

.re-footer-icon {
    color: var(--re-brand);
    margin-right: 8px;
}

.re-footer-social {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.re-footer-social a {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #182130;
    color: #f4f6fb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-decoration: none;
}

.re-footer-bottom-note {
    text-align: center;
    font-size: 11px;
    color: #8e98aa;
    padding-top: 14px;
}

.re-copyright-bar {
    background: #f0e9dd;
    color: #5f6675;
    font-size: 11px;
    text-align: center;
    padding: 10px;
}

.re-article-list-section,
.re-article-detail-section {
    padding-top: 40px;
}

.re-article-list-head {
    margin-bottom: 22px;
    text-align: center;
}

.re-article-list-head h2 {
    font-family: "DM Serif Display", serif;
    font-size: clamp(34px, 3.8vw, 54px);
    color: #141924;
    line-height: 1;
    margin: 0 0 10px;
}

.re-article-list-head p {
    color: #646f83;
    max-width: 760px;
    margin: 0 auto;
}

.re-filter-form {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr auto auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
    position: relative;
    z-index: 30;
}

.re-filter-form input,
.re-filter-form select {
    border: 1px solid #dfcfb4;
    background: #fff;
    border-radius: 12px;
    height: 42px;
    padding: 0 12px;
    font-size: 13px;
    color: #1d2534;
}

.re-filter-form button {
    border: 0;
    border-radius: 12px;
    background: var(--re-brand);
    color: #fff;
    height: 42px;
    min-width: 94px;
    text-transform: uppercase;
    font-size: 11px;
    font-family: "Sora", sans-serif;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.re-filter-reset {
    height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid #dfcfb4;
    background: #fff7e9;
    color: #5e4f3b;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.re-inline-detail {
    color: #7a8396;
    font-size: 12px;
    margin-bottom: 8px;
}

.re-inline-detail-link {
    display: inline-block;
    text-decoration: none;
    border-bottom: 1px dashed #b8a383;
}

.re-inline-detail-link:hover,
.re-inline-detail-link:focus {
    color: var(--re-brand);
    border-bottom-color: var(--re-brand);
}

.re-article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.re-article-card {
    background: #fff;
    border: 1px solid var(--re-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(16, 20, 30, 0.08);
}

.re-article-card-thumb {
    display: block;
    position: relative;
}

.re-article-card-thumb img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.re-article-tag {
    position: absolute;
    left: 12px;
    top: 12px;
    border-radius: 999px;
    background: rgba(17, 22, 31, 0.86);
    color: #f1f5ff;
    font-size: 10px;
    font-family: "Sora", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    padding: 5px 9px;
}

.re-article-card-body {
    padding: 14px;
}

.re-article-meta {
    margin-bottom: 8px;
    font-size: 11px;
    color: #6e7789;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.re-article-meta i {
    margin-right: 5px;
}

.re-article-card-body h3 {
    margin-bottom: 10px;
    font-family: "Sora", sans-serif;
    font-size: 18px;
    line-height: 1.4;
}

.re-article-card-body h3 a {
    color: #172032;
    text-decoration: none;
}

.re-article-card-body h3 a:hover,
.re-article-card-body h3 a:focus {
    color: var(--re-brand);
}

.re-article-card-body p {
    color: #626d82;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.re-article-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, 1fr);
    gap: 18px;
}

.re-article-main,
.re-article-side {
    background: #fff;
    border: 1px solid var(--re-border);
    border-radius: 20px;
    box-shadow: 0 14px 30px rgba(17, 21, 31, 0.08);
}

.re-article-main {
    padding: 22px;
}

.re-article-title {
    font-family: "DM Serif Display", serif;
    font-size: clamp(34px, 3.4vw, 50px);
    line-height: 1;
    color: #151b28;
    margin: 0 0 10px;
}

.re-article-byline {
    color: #677185;
    font-size: 13px;
    margin-bottom: 16px;
}

.re-article-cover {
    width: 100%;
    border-radius: 14px;
    max-height: 480px;
    object-fit: cover;
    margin-bottom: 16px;
}

.re-article-content {
    color: #2b3444;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.re-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.re-article-tags span {
    background: #f4e8d5;
    border: 1px solid #edd8bc;
    border-radius: 999px;
    color: #6f4c24;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: "Sora", sans-serif;
    padding: 6px 10px;
}

.re-article-side {
    padding: 18px;
    align-self: start;
    position: sticky;
    top: 90px;
}

.re-article-side h3 {
    font-family: "Sora", sans-serif;
    font-size: 16px;
    color: #171f2d;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.re-trend-filter {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.re-trend-filter a {
    font-family: "Sora", sans-serif;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #e0d2bc;
    color: #5a6373;
    background: #fff;
    border-radius: 999px;
    padding: 5px 9px;
}

.re-trend-filter a.is-active {
    background: #d3461f;
    border-color: #d3461f;
    color: #fff;
}

.re-article-side-list {
    display: grid;
    gap: 10px;
}

.re-article-side-item {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 10px;
    text-decoration: none;
    border: 1px solid #e8dcca;
    border-radius: 12px;
    padding: 8px;
    background: #fffaf1;
}

.re-article-side-item img {
    width: 86px;
    height: 68px;
    object-fit: cover;
    border-radius: 8px;
}

.re-article-side-item p {
    margin: 0 0 5px;
    color: #7f8899;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.re-article-side-item h4 {
    margin: 0;
    color: #1b2434;
    font-size: 13px;
    line-height: 1.4;
    font-family: "Sora", sans-serif;
}

.re-article-side-item small {
    display: inline-block;
    margin-top: 4px;
    color: #6b7588;
    font-size: 10px;
    letter-spacing: 0.04em;
}

.re-article-side-item:hover,
.re-article-side-item:focus {
    border-color: #d9bea0;
}

.re-gallery-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.re-gallery-photo {
    border: 0;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    background: #f2eadb;
}

.re-gallery-photo img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.re-gallery-photo:hover img,
.re-gallery-photo:focus img {
    transform: scale(1.04);
}

.re-gallery-modal-content {
    background: #10151f;
    border: 1px solid #293247;
    color: #eef3ff;
}

.re-gallery-modal-image {
    width: 100%;
    max-height: 74vh;
    object-fit: contain;
    border-radius: 10px;
}

.re-list-stack {
    display: grid;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.re-list-thumb-link {
    display: block;
}

.re-list-item h3 a {
    color: #1a2232;
    text-decoration: none;
}

.re-list-item h3 a:hover,
.re-list-item h3 a:focus {
    color: var(--re-brand);
}

.re-list-item {
    background: #fff;
    border: 1px solid var(--re-border);
    border-radius: 16px;
    padding: 10px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 14px;
    box-shadow: 0 10px 20px rgba(17, 24, 34, 0.06);
}

.re-list-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.re-list-item h3 {
    font-family: "Sora", sans-serif;
    font-size: 20px;
    margin-bottom: 6px;
    color: #1a2232;
}

.re-list-item p {
    margin-bottom: 8px;
    color: #667186;
    font-size: 13px;
}

.re-list-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.re-list-meta-row span {
    font-size: 12px;
    color: #4d5668;
    background: #f7f2e8;
    border: 1px solid #ead9bf;
    border-radius: 999px;
    padding: 4px 10px;
}

.re-status-pill {
    font-family: "Sora", sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.re-status-pill.status-upcoming {
    color: #155e39;
    background: #d7f7e6;
    border-color: #9ce2be;
}

.re-status-pill.status-ongoing {
    color: #0d4e80;
    background: #d9ecff;
    border-color: #9ec7ef;
}

.re-status-pill.status-completed {
    color: #7f1f1f;
    background: #ffe2de;
    border-color: #f0b0a6;
}

.re-empty-box {
    grid-column: 1 / -1;
    text-align: center;
    border: 1px dashed #d8c5a8;
    background: #fff9ef;
    color: #776956;
    border-radius: 14px;
    padding: 24px 16px;
}

.re-pagination-wrap {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.re-pagination-wrap .pagination {
    margin-bottom: 0;
    gap: 6px;
}

.re-pagination-wrap .page-link {
    border-radius: 10px;
    border: 1px solid #dccab0;
    color: #5b4e3d;
    min-width: 38px;
    text-align: center;
}

.re-pagination-wrap .active > .page-link {
    background: var(--re-brand);
    border-color: var(--re-brand);
    color: #fff;
}

.re-fade {
    opacity: 1;
    transform: none;
    transition: opacity 0.72s ease, transform 0.72s ease;
}

body.js-motion .re-fade {
    opacity: 0;
    transform: translateY(24px);
}

body.js-motion .re-fade.re-show {
    opacity: 1;
    transform: translateY(0);
}

.re-float {
    animation: reFloatY 5.4s ease-in-out infinite;
}

@keyframes reFloatY {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 1199px) {
    .re-shell { padding: 0 16px; }
    .re-section { padding: 22px 0; }
    .re-hero-grid { grid-template-columns: 1fr; }
    .re-hero-main,
    .re-hero-side { min-height: 430px; }
    .re-episode-row,
    .re-grid-row,
    .re-host-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .re-welcome { grid-template-columns: 1fr; }
    .re-cutout { min-height: 300px; }
    .re-cutout img { width: 48%; }
    .re-cutout-link { width: 48%; }
    .re-outline-word { right: auto; left: 50%; transform: translateX(-50%); text-align: center; }
    .re-sponsor-row { grid-template-columns: repeat(3, minmax(120px, 1fr)); }
    .re-footer-grid { grid-template-columns: 1fr 1fr; }
    .re-visitors-wrap { grid-template-columns: 1fr; }
    .re-visitors-head { text-align: center; }
}

@media (max-width: 991px) {
    .re-nav-actions { margin-top: 14px; width: 100%; justify-content: flex-start; }
    .re-menu .nav-link { font-size: 11px; padding-inline: 0 !important; }
    .re-hero-title { font-size: clamp(30px, 6.4vw, 44px); }
    .re-welcome h3,
    .re-grid-wrap h3,
    .re-team-wrap h3,
    .re-contact-title,
    .re-article-title,
    .re-article-list-head h2 { font-size: clamp(28px, 5.4vw, 38px); }
    .re-contact { grid-template-columns: 1fr; }
    .re-contact-card { max-width: 680px; }
    .re-stream-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .re-article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .re-article-detail-grid { grid-template-columns: 1fr; }
    .re-filter-form {
        grid-template-columns: 1fr 1fr;
    }
    .re-gallery-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .re-article-side {
        position: static;
        top: auto;
    }
}

@media (max-width: 767px) {
    .re-shell { padding: 0 12px; }
    .re-section { padding: 14px 0; }
    .re-hero-main,
    .re-hero-side { min-height: 290px; border-radius: 16px; }
    .re-hero-text { left: 16px; right: 16px; bottom: 16px; }
    .re-side-box { left: 12px; right: 12px; bottom: 12px; }
    .re-episode-row,
    .re-grid-row,
    .re-host-row,
    .re-contact,
    .re-welcome,
    .re-sponsor-row,
    .re-contact-grid,
    .re-footer-grid,
    .re-stream-row { grid-template-columns: 1fr; }
    .re-band-info { flex-direction: column; align-items: flex-start; }
    .re-band-info h4 { font-size: 34px; }
    .re-host-card { min-height: 280px; }
    .re-cutout img { width: 62%; }
    .re-cutout-link { width: 62%; }
    .re-outline-word { font-size: 44px; }
    .re-filter { width: 100%; justify-content: center; flex-wrap: wrap; border-radius: 16px; }
    .re-filter button { padding: 6px 9px; font-size: 9px; }
    .re-stream-pill { min-height: 44px; }
    .re-article-grid { grid-template-columns: 1fr; }
    .re-article-main,
    .re-article-side { padding: 14px; }
    .re-visitors-wrap { padding: 14px; border-radius: 14px; }
    .re-visitors-card { padding: 10px; }
    .re-filter-form {
        grid-template-columns: 1fr;
    }
    .re-list-item {
        grid-template-columns: 1fr;
    }
    .re-list-item img {
        height: 150px;
    }
    .re-gallery-photo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .re-logo img { height: 32px; }
    .re-hero-title { font-size: 28px; }
    .re-hero-main,
    .re-hero-side { min-height: 250px; }
    .re-hero-text { left: 12px; right: 12px; bottom: 12px; }
    .re-hero-kicker { font-size: 9px; margin-bottom: 6px; }
    .re-episode-thumb { height: 140px; }
    .re-grid-card img { height: 150px; }
    .re-article-card-thumb img { height: 170px; }
    .re-contact-title,
    .re-grid-wrap h3,
    .re-team-wrap h3,
    .re-welcome h3,
    .re-stream-platform .line-1,
    .re-article-list-head h2,
    .re-article-title { font-size: 30px; }
    .re-episode-body h5,
    .re-grid-card h5,
    .re-list-item h3 { font-size: 16px; }
    .re-mini-button { font-size: 9px; padding: 7px 11px; }
}
