:root {
    --rv-green: #00843d;
    --rv-green-dark: #00522f;
    --rv-green-deep: #062f2f;
    --rv-green-soft: #e7f6ee;
    --rv-yellow: #F8C200;
    --rv-yellow-dark: #d9a900;
    --rv-ink: #07191b;
    --rv-title: #10232a;
    --rv-text: #59646a;
    --rv-muted: #859096;
    --rv-line: #e5ece8;
    --rv-white: #ffffff;
    --rv-smoke: #f6f8f7;
    --rv-shadow: 0 22px 55px rgba(8, 27, 26, .14);
    --rv-radius: 8px;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    color: var(--rv-text);
    background: var(--rv-white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    color: var(--rv-green);
    transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

a:hover,
a:focus {
    color: var(--rv-yellow-dark);
    text-decoration: none;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
}

.container {
    width: calc(100% - 30px);
    max-width: 1170px;
}

.row.align-items-center {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.rv-topbar {
    background: #053937;
    color: rgba(255, 255, 255, .84);
    font-size: 13px;
}

.rv-topbar-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.rv-top-links,
.rv-top-right,
.rv-top-socials {
    display: flex;
    align-items: center;
}

.rv-top-links {
    gap: 15px;
}

.rv-top-links a,
.rv-register-link {
    color: var(--rv-white);
    font-size: 14px;
    font-weight: 700;
}

.rv-top-links span {
    width: 1px;
    height: 13px;
    background: rgba(255, 255, 255, .55);
}

.rv-top-right {
    gap: 24px;
}

.rv-register-link i {
    color: var(--rv-yellow);
    margin-right: 8px;
}

.rv-top-socials {
    gap: 8px;
}

.rv-top-socials a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #06232c;
    color: var(--rv-white);
    font-size: 16px;
}

.rv-top-socials a:hover {
    background: var(--rv-yellow);
    color: var(--rv-green-deep);
}

.rv-now-playing {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.rv-now-cover {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border-radius: 50%;
    object-fit: cover;
    background: var(--rv-white);
}

.rv-now-text {
    min-width: 0;
    line-height: 1.2;
}

.rv-now-text strong {
    color: var(--rv-yellow);
    font-size: 12px;
    font-weight: 800;
}

.rv-now-text span {
    color: var(--rv-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rv-top-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rv-top-actions button {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: var(--rv-white);
    padding: 0;
}

.rv-top-actions button:hover {
    background: var(--rv-yellow);
    color: var(--rv-green-deep);
}

.rv-main-nav {
    position: relative;
    z-index: 20;
    background: rgba(6, 47, 47, .97);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.rv-main-nav-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.rv-brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    max-width: 280px;
    min-height: 58px;
    padding: 7px 12px;
    border-radius: var(--rv-radius);
    background: var(--rv-white);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
}

.rv-brand img {
    display: block;
    width: auto;
    max-width: 244px;
    max-height: 58px;
    object-fit: contain;
}

.rv-navbar {
    flex: 1 1 auto;
    margin: 0;
    border: 0;
    min-height: 0;
    background: transparent;
}

.rv-navbar .navbar-collapse {
    padding: 0;
    border: 0;
    box-shadow: none;
}

.rv-navbar .navbar-nav {
    float: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0;
}

.rv-navbar .navbar-nav > li {
    float: none;
}

.rv-navbar .navbar-nav > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    color: rgba(255, 255, 255, .88) !important;
    background: transparent !important;
    border-radius: 999px;
    padding: 10px 11px;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.rv-navbar .navbar-nav > li > a i {
    color: var(--rv-yellow);
    font-size: 12px;
}

.rv-navbar .navbar-nav > li > a:hover,
.rv-navbar .navbar-nav > li > a:focus {
    background: rgba(255, 196, 0, .14) !important;
    color: var(--rv-white) !important;
}

.rv-login-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    border-radius: 999px;
    padding: 12px 18px;
    background: var(--rv-yellow);
    color: var(--rv-green-deep) !important;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 12px 28px rgba(255, 196, 0, .28);
}

.rv-login-link:hover {
    background: var(--rv-white);
    color: var(--rv-green-dark) !important;
}

.rv-side-menu-button {
    display: none;
    width: 40px;
    height: 34px;
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    padding: 0;
}

.rv-side-menu-button span {
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px auto;
    background: var(--rv-white);
}

.rv-layout-chrome {
    position: relative;
    z-index: 30;
    min-height: 260px;
    padding: 0;
    background:
        linear-gradient(rgba(5, 24, 33, .82), rgba(5, 24, 33, .82)),
        url("../audicast/img/hero/hero-bg-1-1.jpg") center top / cover no-repeat;
}

.rv-is-home > .rv-layout-chrome,
.rv-is-home > .rv-layout-newsletter,
.rv-is-home > .rv-layout-footer-shell {
    display: none !important;
}

.rv-layout-chrome .rv-topbar,
.rv-layout-chrome .rv-main-nav {
    position: absolute;
    left: 50%;
    width: calc(100% - 60px);
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    transform: translateX(-50%);
}

.rv-layout-chrome .rv-topbar {
    top: 38px;
    z-index: 60;
    background: rgba(24, 84, 77, .94);
    border-radius: 0 0 24px 24px;
}

.rv-layout-chrome .rv-topbar-inner,
.rv-layout-chrome .rv-main-nav-inner {
    width: 100%;
    max-width: none;
    padding-left: 30px;
    padding-right: 30px;
}

.rv-layout-chrome .rv-topbar-inner {
    min-height: 50px;
}

.rv-layout-chrome .rv-top-links,
.rv-layout-chrome .rv-top-right,
.rv-layout-chrome .rv-top-socials,
.rv-layout-chrome .rv-main-nav-inner {
    display: flex;
    align-items: center;
}

.rv-layout-chrome .rv-main-nav {
    top: 88px;
    z-index: 55;
    background: rgba(7, 48, 49, .78);
    border-bottom: 0;
    border-radius: 0 0 28px 28px;
    backdrop-filter: blur(2px);
}

.rv-layout-chrome .rv-main-nav-inner {
    min-height: 82px;
    justify-content: space-between;
}

.rv-layout-chrome .rv-brand {
    flex: 0 0 210px;
    max-width: 230px;
    min-height: 58px;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.rv-layout-chrome .rv-brand img {
    max-width: 220px;
    max-height: 62px;
}

.rv-layout-chrome .rv-navbar .navbar-nav {
    flex-wrap: nowrap;
    gap: 20px;
}

.rv-layout-chrome .rv-navbar .navbar-nav > li > a {
    position: relative;
    min-height: auto;
    padding: 10px 0;
    background: transparent !important;
    color: var(--rv-white) !important;
    font-size: 14px;
}

.rv-layout-chrome .rv-navbar .navbar-nav > li > a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;
    height: 2px;
    background: var(--rv-yellow);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .25s ease;
}

.rv-layout-chrome .rv-navbar .navbar-nav > li > a:hover:after {
    transform: scaleX(1);
}

.rv-layout-chrome .rv-navbar .navbar-nav > li > a i {
    display: none;
}

.rv-layout-chrome .rv-menu-caret {
    display: inline-block !important;
    margin-left: 4px;
    color: var(--rv-white);
}

.rv-layout-chrome .rv-navbar .menu-item-has-children {
    position: relative;
}

.rv-layout-chrome .rv-navbar .mega-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    z-index: 50;
    min-width: 190px;
    margin: 0;
    padding: 14px 0;
    list-style: none;
    background: var(--rv-white);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .22);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: all .22s ease;
}

.rv-layout-chrome .rv-navbar .menu-item-has-children:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.rv-layout-chrome .rv-navbar .mega-menu a {
    display: block;
    padding: 8px 18px;
    color: var(--rv-title);
    font-family: var(--rv-title-font);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.rv-layout-chrome .rv-navbar .mega-menu a:hover {
    color: var(--rv-yellow-dark);
}

.rv-layout-chrome .rv-login-link {
    min-height: 52px;
    padding: 15px 28px;
    background: var(--rv-white);
    color: var(--rv-title) !important;
    box-shadow: none;
}

.rv-layout-chrome .rv-login-link:hover {
    background: var(--rv-yellow);
}

.rv-layout-chrome .rv-side-menu-button {
    display: block;
}

.rv-is-home .rv-topbar {
    position: absolute;
    top: 38px;
    left: 50%;
    z-index: 60;
    width: calc(100% - 60px);
    max-width: 1170px;
    transform: translateX(-50%);
    background: rgba(24, 84, 77, .94);
    border-radius: 0 0 24px 24px;
}

.rv-is-home .rv-topbar-inner,
.rv-is-home .rv-main-nav-inner {
    width: 100%;
    max-width: none;
    padding-left: 30px;
    padding-right: 30px;
}

.rv-is-home .rv-topbar-inner {
    min-height: 50px;
}

.rv-is-home .rv-main-nav {
    position: absolute;
    top: 88px;
    left: 50%;
    z-index: 55;
    width: calc(100% - 60px);
    max-width: 1170px;
    transform: translateX(-50%);
    background: rgba(7, 48, 49, .78);
    border-bottom: 0;
    border-radius: 0 0 28px 28px;
    backdrop-filter: blur(2px);
}

.rv-is-home .rv-main-nav-inner {
    min-height: 82px;
}

.rv-is-home .rv-brand {
    max-width: 230px;
    min-height: 58px;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.rv-is-home .rv-brand img {
    max-width: 220px;
    max-height: 62px;
}

.rv-is-home .rv-navbar .navbar-nav {
    flex-wrap: nowrap;
    gap: 20px;
}

.rv-is-home .rv-navbar .navbar-nav > li > a {
    min-height: auto;
    padding: 10px 0;
    background: transparent !important;
    color: var(--rv-white) !important;
    font-size: 14px;
}

.rv-is-home .rv-navbar .navbar-nav > li > a i {
    display: none;
}

.rv-is-home .rv-login-link {
    min-height: 52px;
    padding: 15px 28px;
    background: var(--rv-white);
    color: var(--rv-title) !important;
    box-shadow: none;
}

.rv-is-home .rv-login-link:hover {
    background: var(--rv-yellow);
}

.rv-is-home .rv-side-menu-button {
    display: block;
}

.rv-navbar .navbar-toggle {
    float: none;
    margin: 10px 0;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: var(--rv-radius);
    background: rgba(255, 255, 255, .08);
}

.rv-navbar .navbar-toggle .icon-bar {
    background: var(--rv-white);
}

.rv-page {
    width: 100%;
    min-height: 420px;
    background: var(--rv-white);
}

.rv-content-pad {
    padding: 0;
}

.rv-page .rv-section {
    width: calc(100% - 30px);
    max-width: 1170px;
    margin: 0 auto;
    padding: 64px 0;
}

.rv-page .rv-section > .container {
    width: 100%;
    max-width: 1170px;
    padding-left: 0;
    padding-right: 0;
}

.rv-page .rv-section h1,
.rv-page .rv-section h2,
.rv-page .rv-section h3,
.rv-block-title {
    color: var(--rv-title);
}

.rv-block-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 24px;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0;
}

.rv-block-title:before {
    content: "";
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    background: url("../audicast/img/icon/microphone.svg") center / contain no-repeat;
}

.rv-card,
.rv-panel,
.rv-item {
    background: var(--rv-white);
    border: 1px solid var(--rv-line);
    border-radius: var(--rv-radius);
    color: var(--rv-text);
    box-shadow: 0 14px 34px rgba(8, 27, 26, .08);
}

.rv-panel,
.rv-card {
    padding: 20px;
    margin-bottom: 18px;
}

.rv-item {
    margin-bottom: 18px;
    overflow: hidden;
    padding: 16px;
}

.rv-item > img,
.rv-item > a > img,
.rv-item > .embed-responsive {
    width: calc(100% + 32px);
    max-width: none;
    margin: -16px -16px 16px;
}

.rv-panel h3,
.rv-card h3,
.rv-card h4,
.rv-item h3,
.rv-item h4 {
    color: var(--rv-title);
    margin-top: 0;
    letter-spacing: 0;
}

.rv-panel p,
.rv-card p,
.rv-item p {
    color: var(--rv-text);
}

.rv-muted {
    color: var(--rv-muted);
}

.rv-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--rv-radius);
    background: var(--rv-smoke);
}

.rv-avatar {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
    background: var(--rv-smoke);
}

.rv-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--rv-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--rv-green-soft), #fff8cc);
    color: var(--rv-green-dark);
    font-size: 34px;
}

.rv-button,
.rv-play-button,
.btn.rv-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    background: var(--rv-green);
    color: var(--rv-white) !important;
    padding: 12px 20px;
    min-height: 44px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0;
}

.rv-button:hover,
.rv-play-button:hover {
    background: var(--rv-yellow);
    color: var(--rv-green-deep) !important;
}

.rv-button.rv-button-yellow {
    background: var(--rv-yellow);
    color: var(--rv-green-deep) !important;
}

.rv-button.rv-button-yellow:hover {
    background: var(--rv-white);
    color: var(--rv-green-dark) !important;
}

.rv-is-home .rv-home-hero-actions .rv-button,
.rv-is-home .rv-home-hero-actions .rv-button.rv-button-yellow {
    min-width: 150px;
    min-height: 50px;
    padding: 13px 24px;
    background: #287f7a;
    color: var(--rv-white) !important;
    box-shadow: none;
}

.rv-is-home .rv-home-hero-actions .rv-button:hover,
.rv-is-home .rv-home-hero-actions .rv-button.rv-button-yellow:hover {
    background: var(--rv-yellow);
    color: var(--rv-green-deep) !important;
}

.rv-empty {
    border-radius: var(--rv-radius);
    padding: 22px;
    background: var(--rv-smoke);
    color: var(--rv-muted);
    text-align: center;
}

.form-control {
    min-height: 44px;
    border: 1px solid var(--rv-line);
    border-radius: 999px;
    background: var(--rv-white);
    color: var(--rv-title);
    box-shadow: none;
}

.form-control::placeholder {
    color: var(--rv-muted);
}

textarea.form-control {
    height: auto;
    min-height: 140px;
    border-radius: var(--rv-radius);
    padding: 14px 18px;
}

.form-group label {
    color: var(--rv-title);
    font-weight: 800;
}

.btn-primary {
    border: 0;
    border-radius: 999px;
    background: var(--rv-green);
    color: var(--rv-white);
    padding: 12px 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--rv-yellow);
    color: var(--rv-green-deep);
}

.pagination {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0 0;
    padding: 0;
}

.pagination > li {
    display: block;
}

.pagination > li > a,
.pagination > li > span {
    border: 1px solid var(--rv-line);
    border-radius: 999px !important;
    color: var(--rv-title);
    padding: 8px 13px;
}

.pagination > .active > span,
.pagination > li > a:hover {
    border-color: var(--rv-green);
    background: var(--rv-green);
    color: var(--rv-white);
}

.alert {
    border-radius: var(--rv-radius);
}

.rv-autoplay-note {
    display: none;
    margin-top: 7px;
    color: var(--rv-yellow);
    font-size: 13px;
}

.rv-autoplay-blocked .rv-autoplay-note {
    display: block;
}

.rv-persistent-player {
    border: 0;
    display: block;
    background: transparent;
}

.rv-persistent-player.is-hidden {
    position: fixed;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
}

.rv-persistent-player.is-visible {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    height: 74px;
    background: #050505;
    box-shadow: 0 -8px 28px rgba(0, 0, 0, .35);
}

.rv-whatsapp-request i {
    margin-right: 8px;
    font-size: 1.05em;
}

.rv-whatsapp-watch .play-btn i {
    font-size: 18px;
}

body.rv-has-bottom-player {
    padding-bottom: 74px;
}

body.rv-player-blocked .rv-top-actions:after {
    content: "clique no volume";
    color: var(--rv-yellow);
    font-size: 12px;
    white-space: nowrap;
}

body.rv-has-bottom-player.rv-player-blocked .rv-top-actions:after {
    content: "";
}

body.rv-loading .rv-page {
    opacity: .55;
    transition: opacity .16s ease;
}

.rv-footer {
    position: relative;
    overflow: hidden;
    background: #051f25;
    color: rgba(255, 255, 255, .72);
    padding: 72px 0 0;
}

.rv-footer:after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: 20px;
    width: 260px;
    height: 180px;
    background: url("../audicast/img/shape/footer-shape-1-1.svg") center / contain no-repeat;
    opacity: .18;
    pointer-events: none;
}

.rv-footer h4 {
    color: var(--rv-white);
    font-size: 17px;
    margin: 0 0 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.rv-footer p {
    color: rgba(255, 255, 255, .72);
}

.rv-footer a {
    color: rgba(255, 255, 255, .78);
}

.rv-footer a:hover {
    color: var(--rv-yellow);
}

.rv-footer-logo {
    display: inline-block;
    max-width: 220px;
    max-height: 84px;
    object-fit: contain;
    padding: 8px 12px;
    border-radius: var(--rv-radius);
    background: var(--rv-white);
}

.rv-footer-socials,
.rv-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rv-footer-socials a,
.rv-socials a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: var(--rv-white);
}

.rv-footer-socials a:hover,
.rv-socials a:hover {
    background: var(--rv-yellow);
    color: var(--rv-green-deep);
}

.rv-footer-bottom {
    margin-top: 48px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
}

.rv-footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rv-footer-list li {
    margin-bottom: 8px;
}

.rv-home-hero {
    position: relative;
    min-height: 920px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    color: var(--rv-white);
    background-color: #082b2c;
    background-position: center top;
    background-size: cover;
}

.rv-home-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 24, 33, .75), rgba(5, 24, 33, .88)),
        linear-gradient(90deg, rgba(7, 57, 55, .78), rgba(5, 24, 33, .18));
}

.rv-home-hero:after {
    content: "";
    position: absolute;
    left: -12%;
    right: -12%;
    bottom: -146px;
    height: 310px;
    background: rgba(34, 125, 119, .72);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.rv-home-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 330px 0 250px;
}

.rv-home-hero-content {
    max-width: 1040px;
    margin: 0 auto;
    text-align: center;
}

.rv-home-kicker,
.rv-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--rv-green);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.rv-home-kicker {
    color: var(--rv-yellow);
}

.rv-section-kicker:before,
.rv-home-kicker:before {
    content: "";
    width: 20px;
    height: 20px;
    background: url("../audicast/img/icon/microphone.svg") center / contain no-repeat;
}

.rv-home-kicker:before {
    filter: brightness(0) invert(1);
    opacity: .95;
}

.rv-home-hero h1 {
    margin: 32px 0 18px;
    color: var(--rv-yellow);
    font-size: 78px;
    line-height: .92;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0;
}

.rv-home-hero h1 span {
    color: inherit;
}

.rv-home-hero h2 {
    margin: 0;
    color: var(--rv-white);
    font-size: 58px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
}

.rv-home-hero p {
    max-width: 620px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, .82);
    line-height: 1.75;
}

.rv-home-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    position: absolute;
    right: calc((100% - 1170px) / 2);
    bottom: 205px;
    margin-top: 0;
}

.rv-home-hero-mini {
    position: absolute;
    left: calc((100% - 1170px) / 2);
    bottom: 172px;
    width: 350px;
    border: 3px solid rgba(255, 255, 255, .85);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .35);
}

.rv-home-hero-mini:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 24px solid var(--rv-white);
    transform: translate(-35%, -50%);
}

.rv-home-hero-mini img {
    width: 100%;
    height: 112px;
    object-fit: cover;
    display: block;
}

.rv-home-hero-inner:after {
    content: "";
    position: absolute;
    left: calc((100% - 1170px) / 2 + 420px);
    bottom: 214px;
    width: 80px;
    height: 80px;
    border-right: 7px solid var(--rv-yellow);
    border-bottom: 7px solid var(--rv-yellow);
    border-radius: 50%;
    transform: rotate(34deg);
}

.rv-home-floating-player {
    position: relative;
    z-index: 5;
    max-width: 1170px;
    margin: -70px auto 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 28px;
    align-items: center;
    padding: 32px;
    border-radius: var(--rv-radius);
    background: var(--rv-white);
    box-shadow: var(--rv-shadow);
}

.rv-home-floating-player h2 {
    margin: 8px 0 12px;
    color: var(--rv-title);
    font-size: 34px;
    line-height: 1.08;
    font-weight: 900;
}

.rv-home-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
    color: var(--rv-muted);
    font-size: 13px;
}

.rv-wave-line {
    height: 44px;
    border-radius: 999px;
    background:
        repeating-linear-gradient(90deg, var(--rv-green) 0 3px, transparent 3px 8px),
        linear-gradient(180deg, transparent 15px, rgba(0, 132, 61, .12) 15px 29px, transparent 29px);
    opacity: .82;
}

.rv-floating-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--rv-radius);
}

.rv-floating-image img {
    width: 100%;
    height: 214px;
    display: block;
    object-fit: cover;
}

.rv-section-wrap {
    padding: 72px 0;
}

.rv-section-wrap.rv-section-soft {
    background: var(--rv-smoke);
}

.rv-section-head {
    margin-bottom: 30px;
}

.rv-section-head h2 {
    margin: 6px 0 0;
    color: var(--rv-title);
    font-size: 38px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 0;
}

.rv-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.rv-feature-card {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    border-radius: var(--rv-radius);
    background: var(--rv-green-deep);
    box-shadow: 0 18px 40px rgba(8, 27, 26, .12);
}

.rv-feature-card img {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
}

.rv-feature-body {
    padding: 18px 18px 20px;
    background: var(--rv-white);
}

.rv-feature-body h3 {
    min-height: 54px;
    margin: 0 0 16px;
    color: var(--rv-title);
    font-size: 20px;
    line-height: 1.18;
    font-weight: 900;
}

.rv-listen-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--rv-title);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.rv-listen-link i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rv-yellow);
    color: var(--rv-green-deep);
}

.rv-cta-band {
    position: relative;
    overflow: hidden;
    padding: 76px 0;
    color: var(--rv-white);
    background:
        linear-gradient(90deg, rgba(6, 47, 47, .94), rgba(6, 47, 47, .7)),
        url("../audicast/img/about/ab-4-1.jpg") center / cover no-repeat;
}

.rv-cta-band h2 {
    margin: 10px 0 0;
    color: var(--rv-white);
    font-size: 46px;
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: 0;
}

.rv-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}

.rv-about-media {
    position: relative;
    min-height: 460px;
}

.rv-about-media:before {
    content: "";
    position: absolute;
    left: 5%;
    top: 7%;
    width: 86%;
    height: 86%;
    border-radius: 50%;
    border: 3px solid var(--rv-line);
}

.rv-about-media > img {
    position: relative;
    z-index: 1;
    width: 78%;
    max-width: 400px;
    height: 470px;
    object-fit: cover;
    border-radius: 999px 999px 8px 8px;
    display: block;
    margin: 0 auto;
}

.rv-mini-player {
    position: absolute;
    z-index: 2;
    right: 4%;
    bottom: 22px;
    width: 220px;
    padding: 14px;
    border-radius: var(--rv-radius);
    background: #082b2c;
    color: var(--rv-white);
    box-shadow: 0 18px 38px rgba(8, 27, 26, .22);
}

.rv-mini-player .rv-wave-line {
    height: 36px;
    margin-bottom: 10px;
    background:
        repeating-linear-gradient(90deg, var(--rv-yellow) 0 3px, transparent 3px 8px),
        linear-gradient(180deg, transparent 12px, rgba(255, 196, 0, .12) 12px 24px, transparent 24px);
}

.rv-mini-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.rv-mini-controls button {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: var(--rv-white);
    color: var(--rv-green-deep);
}

.rv-about-content h2 {
    margin: 8px 0 18px;
    color: var(--rv-title);
    font-size: 44px;
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: 0;
}

.rv-about-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 24px;
}

.rv-stat-pill {
    min-width: 140px;
}

.rv-stat-pill strong {
    display: block;
    color: var(--rv-title);
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
}

.rv-stat-pill span {
    color: var(--rv-muted);
    font-size: 13px;
}

.rv-episode-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 42px;
    align-items: center;
}

.rv-episode-image {
    position: relative;
}

.rv-episode-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--rv-radius);
    box-shadow: var(--rv-shadow);
}

.rv-episode-image:before {
    content: "";
    position: absolute;
    left: -18px;
    top: 24px;
    width: 28px;
    height: 72%;
    background: var(--rv-yellow);
    border-radius: var(--rv-radius);
}

.rv-episode-list {
    display: grid;
    gap: 16px;
}

.rv-episode-row {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-radius: var(--rv-radius);
    background: var(--rv-white);
    box-shadow: 0 16px 38px rgba(8, 27, 26, .09);
}

.rv-episode-row .play-btn {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--rv-yellow);
    color: var(--rv-green-deep);
}

.rv-episode-row small {
    display: block;
    color: var(--rv-muted);
    font-size: 12px;
    margin-bottom: 2px;
}

.rv-episode-row h3 {
    margin: 0;
    color: var(--rv-title);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
}

.rv-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.rv-blog-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    border-radius: var(--rv-radius);
    background: var(--rv-green-deep);
    box-shadow: 0 18px 40px rgba(8, 27, 26, .15);
}

.rv-blog-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .78;
}

.rv-blog-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 24%, rgba(5, 31, 37, .95));
}

.rv-blog-content {
    position: relative;
    z-index: 1;
    padding: 24px;
    color: var(--rv-white);
}

.rv-blog-date {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    min-width: 54px;
    padding: 8px;
    border-radius: var(--rv-radius);
    background: var(--rv-yellow);
    color: var(--rv-green-deep);
    font-size: 13px;
    line-height: 1.1;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
}

.rv-blog-date span {
    display: block;
    font-size: 18px;
}

.rv-blog-content h3 {
    margin: 0 0 12px;
    color: var(--rv-white);
    font-size: 24px;
    line-height: 1.08;
    font-weight: 900;
}

.rv-blog-content a {
    color: var(--rv-white);
}

.rv-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
}

.rv-platform-strip {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
}

.rv-platform-icons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.rv-platform-link {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: var(--rv-radius);
    background: var(--rv-white);
    border: 1px solid var(--rv-line);
    color: var(--rv-title);
    font-weight: 900;
}

.rv-platform-link i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rv-green-soft);
    color: var(--rv-green);
    font-size: 20px;
}

.rv-newsletter {
    padding: 54px 0;
    color: var(--rv-white);
    background:
        linear-gradient(90deg, rgba(6, 47, 47, .95), rgba(6, 47, 47, .76)),
        url("../audicast/img/about/ab-1-1.jpg") center / cover no-repeat;
}

.rv-newsletter h2 {
    margin: 4px 0 0;
    color: var(--rv-white);
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 0;
}

.rv-newsletter .rv-section-kicker {
    color: var(--rv-yellow);
}

.rv-newsletter .rv-section-kicker:before {
    filter: brightness(0) invert(1);
}

.rv-newsletter-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
}

.rv-layout-newsletter .row {
    display: flex;
    align-items: center;
}

.rv-newsletter-form {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 10px 12px 10px 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .15);
}

.rv-newsletter-form input {
    flex: 1;
    min-width: 0;
    height: 48px;
    padding: 0;
    border: 0;
    color: var(--rv-white);
    background: transparent;
}

.rv-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .82);
}

.rv-newsletter-form button {
    flex: 0 0 auto;
    min-height: 50px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    color: var(--rv-green-deep);
    background: var(--rv-white);
    font-weight: 900;
    text-transform: uppercase;
}

.rv-newsletter-form button:hover {
    background: var(--rv-yellow);
}

.rv-footer-credit {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.rv-footer-dev {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .62) !important;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
    transition: color .2s ease;
}

.rv-footer-dev:hover {
    color: var(--rv-white) !important;
}

.rv-footer-dev img {
    width: auto;
    max-width: 116px;
    max-height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1) grayscale(1);
    opacity: .86;
}

.rv-footer-dev strong {
    color: var(--rv-white);
    font-size: 13px;
}

.rv-ad-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.rv-ad-card {
    min-height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border: 1px solid var(--rv-line);
    border-radius: var(--rv-radius);
    background: var(--rv-white);
}

.rv-ad-card img {
    max-height: 82px;
    object-fit: contain;
}

@media (max-width: 1199px) {
    .rv-layout-chrome .rv-topbar,
    .rv-layout-chrome .rv-main-nav,
    .rv-is-home .rv-topbar,
    .rv-is-home .rv-main-nav {
        width: calc(100% - 40px);
    }

    .rv-is-home .rv-home-hero-actions {
        right: 30px;
    }

    .rv-is-home .rv-home-hero-mini {
        left: 30px;
    }

    .rv-is-home .rv-home-hero-inner:after {
        left: 455px;
    }

    .rv-main-nav-inner {
        gap: 12px;
    }

    .rv-brand {
        max-width: 220px;
    }

    .rv-brand img {
        max-width: 196px;
    }

    .rv-navbar .navbar-nav > li > a {
        padding: 9px 8px;
        font-size: 11px;
    }
}

@media (max-width: 991px) {
    .rv-layout-chrome {
        min-height: auto;
        padding: 18px 0 24px;
    }

    .rv-layout-chrome .rv-topbar,
    .rv-layout-chrome .rv-main-nav {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }

    .rv-layout-chrome .rv-navbar .navbar-nav {
        gap: 0;
    }

    .rv-main-nav-inner {
        display: block;
        padding: 12px 0;
    }

    .rv-brand {
        margin: 0 auto 10px;
        justify-content: center;
    }

    .rv-navbar .navbar-header {
        text-align: center;
    }

    .rv-navbar .navbar-toggle {
        float: none;
    }

    .rv-navbar .navbar-nav {
        display: block;
        text-align: center;
        padding: 8px 0;
    }

    .rv-navbar .navbar-nav > li > a {
        justify-content: center;
    }

    .rv-login-link {
        margin: 8px auto 0;
        width: max-content;
    }

    .rv-home-floating-player,
    .rv-about-grid,
    .rv-episode-grid,
    .rv-platform-strip {
        grid-template-columns: 1fr;
    }

    .rv-feature-grid,
    .rv-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rv-home-floating-player {
        max-width: calc(100% - 30px);
    }

    .rv-home-hero h1 {
        font-size: 68px;
    }

    .rv-home-hero h2 {
        font-size: 40px;
    }

    .rv-floating-image img {
        height: 260px;
    }

    .rv-about-media {
        min-height: 420px;
    }

    .rv-newsletter-actions {
        justify-content: flex-start;
        margin-top: 20px;
    }

    .rv-layout-newsletter .row {
        display: block;
    }

    .rv-newsletter-form {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .container,
    .rv-page .rv-section {
        width: calc(100% - 22px);
    }

    .rv-topbar-inner {
        display: block;
        padding: 7px 0;
    }

    .rv-top-actions {
        justify-content: center;
        margin-top: 7px;
    }

    .rv-now-playing {
        justify-content: center;
    }

    .rv-home-hero {
        min-height: 540px;
    }

    .row.align-items-center {
        display: block;
    }

    .rv-home-hero-inner {
        padding: 64px 0 120px;
    }

    .rv-home-hero h1 {
        font-size: 52px;
    }

    .rv-home-hero h2 {
        font-size: 34px;
    }

    .rv-home-hero-mini {
        display: none;
    }

    .rv-home-floating-player {
        grid-template-columns: 1fr;
        padding: 22px;
        margin-bottom: 44px;
    }

    .rv-section-wrap {
        padding: 54px 0;
    }

    .rv-section-head h2,
    .rv-about-content h2,
    .rv-cta-band h2 {
        font-size: 34px;
    }

    .rv-feature-grid,
    .rv-blog-grid,
    .rv-platform-icons,
    .rv-ad-grid {
        grid-template-columns: 1fr;
    }

    .rv-feature-body h3 {
        min-height: 0;
    }

    .rv-about-media {
        min-height: auto;
    }

    .rv-about-media:before {
        display: none;
    }

    .rv-about-media > img {
        width: 100%;
        height: 360px;
        border-radius: var(--rv-radius);
    }

    .rv-mini-player {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 14px;
    }

    .rv-footer .text-right,
    .rv-footer-credit,
    .rv-socials {
        text-align: left;
        justify-content: flex-start;
        margin-top: 14px;
    }

    .rv-layout-chrome .rv-topbar,
    .rv-layout-chrome .rv-main-nav {
        width: calc(100% - 22px);
    }

    .rv-newsletter-form {
        align-items: stretch;
        flex-direction: column;
        border-radius: var(--rv-radius);
        padding: 16px;
    }

    .rv-newsletter-form input {
        width: 100%;
    }

    .rv-newsletter-form button {
        width: 100%;
    }

    .rv-cta-band .text-right {
        text-align: left;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .rv-home-hero h1 {
        font-size: 38px;
    }

    .rv-home-hero h2 {
        font-size: 26px;
    }

    .rv-home-floating-player h2 {
        font-size: 28px;
    }

    .rv-section-head h2,
    .rv-about-content h2,
    .rv-cta-band h2 {
        font-size: 30px;
    }

    .rv-episode-row {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
        padding: 14px;
    }

    .rv-episode-row .play-btn {
        width: 42px;
        height: 42px;
    }
}
