/* ====== FONTS ====== */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
    --clr--orange: 255, 85, 21; /* #FF5515 */
    --clr--gray: 17, 18, 34; /* #111222 */
    --clr--light--gray: 234, 234, 234; /* #EAEAEA */
    --clr--black: 0, 0, 0; /* #000000 */
    --clr--white: 255, 255, 255; /* #ffffff */

    --fnt--inter: "Inter", sans-serif;
}

/* ====== SCROLL ====== */
::-webkit-scrollbar {
    width: 0.5em;
    height: 0.5em;
}

::-webkit-scrollbar-track {
    background: rgb(var(--clr--white));
    box-shadow: inset 2px 2px 3px rgba(rgb(var(--clr--gray)), 0.4);
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

::-webkit-scrollbar-thumb {
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    background: rgb(var(--clr--orange));
    box-shadow: inset 0px 0px 8px rgba(var(--clr--gray), 0.4);
}

html,
body {
    color: rgb(var(--clr--black));
    font-size: clamp(16px, 1vw, 22px);
    font-weight: 400;
    font-family: var(--fnt--inter);
    line-height: 1.2;
    background: rgb(var(--clr--white));
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* overflow-x: hidden; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 5px 0;
    line-height: 1;
    font-weight: 600;
}

h1 {
    font-size: clamp(32px, 2.5vw, 60px);
}

h2 {
    font-size: clamp(24px, 2.1vw, 48px);
}

h3 {
    font-size: clamp(21px, 1.4vw, 36px);
}

h4 {
    font-size: clamp(18px, 1.1vw, 27px);
}

h5 {
    font-size: clamp(17px, 0.9vw, 23px);
}

h6 {
    line-height: 1.3;
}

p,
ul,
ol {
    font-size: clamp(16px, 1vw, 22px);
    line-height: 1.3;
}

p:nth-last-of-type(1) {
    margin-bottom: 0;
}

ul,
ol {
    padding-left: 20px;
}

.small,
small {
    display: inline-block;
    font-weight: 400;
    line-height: 1.2;
    font-size: 14px !important;
}

a {
    color: currentColor;
}

section.copy-section p a,
.accordion-body p a {
    color: rgb(var(--clr--orange));
}

.desktop {
    display: block !important;
}

.mobile {
    display: none !important;
}

img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    max-width: 100%;
}

section {
    position: relative;
}

.section-row {
    padding-block: clamp(30px, 3em, 60px);
    padding-inline: 0;
    position: relative;
}

.titles>h1,
.titles>h2 {
    font-size: clamp(36px, 4vw, 92px);
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
}

.titles__highlighter {
    color: rgb(var(--clr--orange));
}

.titles__highlighter_white {
    color: rgb(var(--clr--white));
}

h2.titles__sub-heading,
.titles__sub-heading {
    font-size: clamp(19px, 1.4vw, 36px);
    font-weight: 600;
    text-align: center;
    text-transform: unset;
}

.fw100 {
    font-weight: 100;
}

.fw300 {
    font-weight: 300;
}

.fw400 {
    font-weight: 400;
}

.fw500 {
    font-weight: 500;
}

.fw600 {
    font-weight: 600;
}

.fw700,
strong {
    font-weight: 700;
}

.fw900 {
    font-weight: 900;
}

.ls {
    letter-spacing: 1.5px;
}

.italic {
    font-style: italic;
}

.fnt--inter {
    font-family: var(--fnt--inter);
}

/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* ====== COLORS ====== */
.clr--orange {
    color: rgb(var(--clr--orange)) !important;
}

.clr--gray {
    color: rgb(var(--clr--gray)) !important;
}

.clr--light--gray {
    color: rgb(var(--clr--light--gray)) !important;
}

.clr--black {
    color: rgb(var(--clr--black)) !important;
}

.clr--white {
    color: rgb(var(--clr--white)) !important;
}

.bgclr--orange {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--orange));
}

.bgclr--gray {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--gray));
}

.bgclr--light--gray {
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--light--gray));
}

.bgclr--black {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--black));
}

.bgclr--white {
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--white));
}

/* Input Fields */
.form-control {
    color: rgb(var(--clr--black));
    font-size: clamp(15px, 1.2vw, 19px);
    font-weight: 400;
    line-height: 1.3;
    min-height: 30px;
    padding: 15px;
    background-color: rgb(var(--clr--white));
    border: 2px solid rgb(var(--clr--white));
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

textarea.form-control {
    min-height: 300px;
}

.form-control:disabled {
    background-color: rgb(var(--clr--white), .2);
    opacity: .6;
}

.form-control:focus {
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--white));
    border: 2px solid rgb(var(--clr--orange));
    outline: 0;
    box-shadow: none;
    transition: ease-in .3s;
    -webkit-transition: ease-in .3s;
    -moz-transition: ease-in .3s;
    -ms-transition: ease-in .3s;
    -o-transition: ease-in .3s;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 2px solid rgb(var(--clr--orange));
    -webkit-text-fill-color: var(--clr--black);
    box-shadow: 0 0 0px 1000px rgba(var(--clr--black), 0.1) inset;
    -webkit-box-shadow: 0 0 0px 1000px rgba(var(--clr--black), 0.1) inset;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    -moz-transition: background-color 5000s ease-in-out 0s;
    -ms-transition: background-color 5000s ease-in-out 0s;
    -o-transition: background-color 5000s ease-in-out 0s;
}

.invalid-feedback {
    color: rgb(var(--clr--white));
    font-size: 13px;
    text-align: center;
    background-color: rgb(220, 53, 69);
    padding: 5px 10px;
}

.signup_form_response.alert-success,
.signup_form_response.alert-danger {
    color: rgb(var(--clr--white));
    text-align: center;
    padding: 10px;
    margin: 25px 0 0;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.signup_form_response.alert-success {
    background-color: rgb(0, 141, 78);
    border-color: rgb(0, 141, 78);
}

.signup_form_response.alert-danger {
    background-color: rgb(220, 53, 69);
    border-color: rgb(220, 53, 69);
}

.signup_form_response.alert-success:is(:empty),
.signup_form_response.alert-danger:is(:empty) {
    padding: 0;
    margin: 0;
    border: 0;
}

/* ====== BUTTONS ====== */
.btn {
    font-size: clamp(17px, 2vw, 24px);
    font-weight: 500 !important;
    color: rgb(var(--clr--white));
    line-height: 1.1;
    transition: ease-in .4s;
    -webkit-transition: ease-in .4s;
    -moz-transition: ease-in .4s;
    -ms-transition: ease-in .4s;
    -o-transition: ease-in .4s;
    width: fit-content;
    padding: 8px 30px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn:hover,
a:hover {
    text-decoration: none;
}

.btn-large {
    font-size: clamp(18px, 1.3vw, 41px);
    padding: 12px 50px;
    position: relative;
    z-index: 9;
}

.primary--btn {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--orange));
    border: 2px solid rgb(var(--clr--orange));
}

.primary--btn:hover,
.primary--btn:active,
.primary--btn:focus-visible {
    color: rgb(var(--clr--orange)) !important;
    background-color: rgb(var(--clr--light--gray)) !important;
    border: 2px solid rgb(var(--clr--light--gray)) !important;
}

.primary--btn.disabled {
    background-color: rgba(var(--clr--orange), 0.6);
    border-color: rgba(var(--clr--orange), 0.6);
    cursor: not-allowed;
    color: rgb(var(--clr--white));
}

/* Grid laout */
.grid-two,
.grid-three,
.grid-four,
.grid-five {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.grid-two>* {
    width: calc((100% / 2) - 13px);
}

.grid-three>* {
    width: calc((100% / 3) - 17px);
}

.grid-four>* {
    width: calc((100% / 4) - 19px);
}

.grid-five>* {
    width: calc((100% / 5) - 20px);
}

/* ====== Modals ====== */
.wvca-modal__btn-close {
    background: rgba(var(--clr--white), 0);
    position: absolute;
    top: 30px;
    right: 30px;
    opacity: 1;
}

.wvca-modal__btn-close:focus {
    box-shadow: none;
}

.wvca-modal__btn-close:before {
    content: "\f00d";
    font-family: "Font Awesome 5 Free";
    font-size: 24px;
    line-height: 18px;
    font-weight: 900;
    color: rgb(var(--clr--white));
}

.wvca-modal__btn-close:focus {
    background: rgba(var(--clr--white), 0);
    position: absolute;
    top: 30px;
    right: 30px;
}

/* ====== HEADER ====== */
.header {
    width: 100%;
    background-color: rgb(var(--clr--white));
    padding: 10px 0;
    /* position: relative;
    z-index: 9; */
    box-shadow: 0 2px 10px rgba(var(--clr--black), 0.1);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.header__fixed-header {
    background-color: rgb(var(--clr--white));
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(var(--clr--black), 0.1);
    transform: translateY(0);
}

.header__logo {
    max-width: 250px;
    padding: 10px 0;
    line-height: 1;
    position: relative;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.header__fixed-header .header__logo {
    max-width: 180px;
    padding: 0;
}

.header__logo img {
    height: auto;
    position: relative;
}

/* ====== NAVIGATION ====== */
.header__navbar_collapse {
    justify-content: flex-end;
}

.header__navbar {
    justify-content: space-between;
}

ul#menu-menu,
ul#header__navbar--menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__navbar_collapse.collapsing {
    height: unset !important;
}

.header__navbar .navbar-nav .nav-link,
.menu-item a {
    color: rgb(var(--clr--gray));
    font-size: clamp(16px, 1vw, 21px);
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

.header__navbar .navbar-nav .active-nav .nav-link,
.header__navbar .navbar-nav .nav-link:hover,
.menu-item.current-menu-item a,
.menu-item:hover a {
    color: rgb(var(--clr--orange));
}

.header__navbar .navbar-nav li.nav-item ul.sub-nav,
ul#menu-menu li.menu-item ul.sub-menu {
    min-width: 250px;
    padding: 10px;
    margin: 0;
    list-style: none;
    background: rgb(226, 226, 226);
    border: none;
    border-radius: 10px;
    position: absolute;
    z-index: 9;
    display: none;
}

.header__navbar .navbar-nav li.nav-item:hover ul.sub-nav,
ul#menu-menu li.menu-item:hover ul.sub-menu {
    display: block;
}

.header__navbar .navbar-nav li.nav-item ul.sub-nav li a,
ul#menu-menu li.menu-item ul.sub-menu li a {
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    padding: 5px 10px;
    display: block;
}

.header__navbar .navbar-nav li.nav-item ul.sub-nav li a:hover,
ul#menu-menu li.menu-item ul.sub-menu li a:hover {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--orange));
}

.nav-btn a {
    color: rgb(var(--clr--white)) !important;
    font-weight: 500;
    background-color: rgb(var(--clr--orange));
    padding: 6px 30px !important;
    margin-left: 15px;
    border: 2px solid rgb(var(--clr--orange));
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.nav-btn a:hover {
    color: rgb(var(--clr--orange)) !important;
    background-color: rgb(var(--clr--white));
}

.nav-btn iframe {
    margin-left: 15px;
}

.header__navbar_toggler {
    border: 0;
}

.header__navbar_toggler:focus {
    box-shadow: unset;
}

.header__navbar_icon {
    background-color: rgb(var(--clr--orange));
    width: 32px;
    height: 3px;
    margin: 6px 0;
    display: block;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.header__navbar .header__navbar_toggler[aria-expanded="true"] .header__navbar_icon:nth-of-type(1),
button.header__navbar_toggler.button-toggled .header__navbar_icon:nth-of-type(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.header__navbar .header__navbar_toggler[aria-expanded="true"] .header__navbar_icon:nth-of-type(2),
button.header__navbar_toggler.button-toggled .header__navbar_icon:nth-of-type(2) {
    opacity: 0;
}

.header__navbar .header__navbar_toggler[aria-expanded="true"] .header__navbar_icon:nth-of-type(3),
button.header__navbar_toggler.button-toggled .header__navbar_icon:nth-of-type(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.header__navbar .header__navbar_toggler.collapsed .header__navbar_icon {
    opacity: 1 !important;
    transform: rotate(0deg) translate(0px, 0px) !important;
    -webkit-transform: rotate(0deg) translate(0px, 0px) !important;
    -moz-transform: rotate(0deg) translate(0px, 0px) !important;
    -ms-transform: rotate(0deg) translate(0px, 0px) !important;
    -o-transform: rotate(0deg) translate(0px, 0px) !important;
}

/* ====== Hero Section ====== */
.gutter-top {
    margin-top: 88px;
}

.hero-banner__container {
    width: 100%;
    height: 75vh;
    min-height: 350px;
    position: relative;
}

.hero-banner__container:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgb(var(--clr--black));
    background: -webkit-linear-gradient(90deg, rgba(var(--clr--black), 0.6) 0%, rgba(var(--clr--black), 0) 100%);
    background: -moz-linear-gradient(90deg, rgba(var(--clr--black), 0.6) 0%, rgba(var(--clr--black), 0) 100%);
    background: linear-gradient(90deg, rgba(var(--clr--black), 0.6) 0%, rgba(var(--clr--black), 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}

.hero-banner__container img,
.hero-banner__container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner__content-area {
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 9;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.hero-banner__content-wrapper {
    margin-top: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.hero-banner__content {
    width: 700px;
    max-width: 100%;
}

.hero-banner__content .hero-banner__hero-title {
    color: rgb(var(--clr--white));
    font-size: clamp(42px, 4.5vw, 92px);
    font-weight: 900;
}

.hero-banner__content .hero-banner__hero-copy p {
    color: rgb(var(--clr--white));
    font-size: clamp(16px, 1.4vw, 28px);
    margin-block: 30px;
}

/* ====== Spotify Modal ====== */
.spotify-modal__content {
    background-color: rgb(var(--clr--orange));
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.spotify-modal__body_img {
    width: 100%;
}

.spotify-modal__body_copy {
    text-align: center;
    background-color: rgb(var(--clr--gray));
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.spotify-modal__body_spotify-logo {
    width: 210px;
    margin-bottom: 25px;
}

.spotify-modal__body_title>* {
    font-size: clamp(24px, 2.1vw, 48px) !important;
    color: rgb(var(--clr--white));
    text-transform: uppercase !important;
    line-height: 1.2 !important;
}

.spotify-modal__body_title>* span {
    display: block;
}

.spotify-modal__btn {
    color: rgb(var(--clr--white));
    font-weight: 700 !important;
    background-color: rgb(var(--clr--orange));
    padding: 12px 40px;
    border: 2px solid rgb(var(--clr--orange));
}

.spotify-modal__btn:hover,
.spotify-modal__btn:active,
.spotify-modal__btn:focus-visible {
    color: rgb(var(--clr--black)) !important;
    background-color: rgb(var(--clr--light--gray)) !important;
    border: 2px solid rgb(var(--clr--light--gray)) !important;
}

.spotify-modal__btn.disabled {
    background-color: rgba(var(--clr--orange), 0.6);
    border-color: rgba(var(--clr--orange), 0.6);
    cursor: not-allowed;
    color: rgb(var(--clr--white));
}

/* ====== Influencer Section ====== */
.influencer-banner__mobile-wrapper {
    height: 700px;
    margin-bottom: 50px;
    position: relative;
}

.influencer-banner__left-mobile {
    width: 250px;
    position: absolute;
    bottom: 30px;
    left: 15%;
    z-index: 9;
    transform: rotate(355deg) translate(-50%, 0);
    -webkit-transform: rotate(355deg) translate(-50%, 0);
    -moz-transform: rotate(355deg) translate(-50%, 0);
    -ms-transform: rotate(355deg) translate(-50%, 0);
    -o-transform: rotate(355deg) translate(-50%, 0);
}

.influencer-banner__middle-mobile {
    width: 290px;
    position: absolute;
    bottom: 100px;
    left: 38%;
    z-index: 99;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
}

.influencer-banner__right-mobile {
    width: 250px;
    position: absolute;
    bottom: 10px;
    left: 60%;
    z-index: 9;
    transform: rotate(5deg) translate(-50%, 0);
    -webkit-transform: rotate(5deg) translate(-50%, 0);
    -moz-transform: rotate(5deg) translate(-50%, 0);
    -ms-transform: rotate(5deg) translate(-50%, 0);
    -o-transform: rotate(5deg) translate(-50%, 0);
}

img.influencer-banner__icon {
    width: 100px;
    position: absolute;
    z-index: 99;
}

.influencer-banner__share-icon {
    width: 130px !important;
    top: 0;
    left: 0;
}

.influencer-banner__lovely-icon {
    top: 12%;
    left: 58%;
}

.influencer-banner__chat-icon {
    top: 40%;
    left: 14%;
}

.influencer-banner__heart-icon {
    top: 58%;
    left: 50%;
}

.influencer-banner__like-icon {
    top: 90%;
    left: 10%;
}

.influencer-banner__content_heading {
    font-size: clamp(42px, 4.2vw, 82px);
    font-weight: 900;
    color: rgb(var(--clr--black));
    text-transform: uppercase;
    margin-bottom: .4em;
}

.influencer-banner__content_heading-highlight {
    color: rgb(var(--clr--white));
}

.influencer-banner__share-grid {
    text-align: center;
    width: 100%;
    max-width: 350px;
    margin-top: 90px;
    justify-content: flex-end;
}

.influencer-banner__share-grid a i {
    color: rgb(var(--clr--white));
    font-size: clamp(21px, 2.4vw, 48px);
}

.influencer-banner__share-grid a:hover i {
    color: rgb(var(--clr--gray));
}

/* ====== TOPICS ====== */
.topics-section__grid-wrapper {
    position: relative;
}

.topics-section__grid {
    margin: 100px 0 50px;
}

.topics-section__grid-item_card {
    width: 100%;
    height: 650px;
    perspective: 800px;
}

.topics-section__grid-item_donation-card {
    height: 450px;
}

.topics-section__grid-item_content {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgb(var(--clr--white));
    transition: transform 1s;
    -webkit-transition: transform 1s;
    -moz-transition: transform 1s;
    -ms-transition: transform 1s;
    -o-transition: transform 1s;
    transform-style: preserve-3d;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.topics-section__grid-item_card:hover .topics-section__grid-item_content {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    -ms-transition: transform 0.5s;
    -o-transition: transform 0.5s;
}

.topics-section__grid-item_front,
.topics-section__grid-item_back {
    color: rgb(var(--clr--white));
    font-family: var(--fnt--typestar);
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 90px 30px;
    background: var(--grid--item--bg) no-repeat 50% 50%;
    background-size: cover;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.topics-section__grid-item_back {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}

.topics-section__grid-item_front:before,
.topics-section__grid-item_back:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.topics-section__grid-item_front:before {
    background-color: rgba(var(--clr--black), 0.45);
}

.topics-section__grid-item_back:before {
    background-color: rgba(var(--clr--black), 0.75);
}

.topics-section__grid-item_front:after {
    content: "";
    background: url("https://d1h8xmz1y5a4ga.cloudfront.net/rotate-icon.png") no-repeat 0 0 / contain;
    width: 50px;
    height: 20px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}

.topics-section__grid-item_front h2,
.topics-section__grid-item_front h3,
.topics-section__grid-item_front p,
.topics-section__grid-item_back h2,
.topics-section__grid-item_back h3,
.topics-section__grid-item_back p {
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 9;
}

.topics-section__grid-item_button {
    margin-top: 25px;
    position: relative;
    z-index: 9;
}

.topics-section__card-label {
    background-color: rgb(var(--clr--orange));
    width: 100%;
    padding: 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0 0 10px 10px;
    -webkit-border-radius: 0 0 10px 10px;
    -moz-border-radius: 0 0 10px 10px;
    -ms-border-radius: 0 0 10px 10px;
    -o-border-radius: 0 0 10px 10px;
}

.topics-section__card-label p {
    font-size: clamp(21px, 1.4vw, 36px);
    font-weight: 700;
}

/* ====== SPOTIFY ====== */
.spotify-section__copy {
    font-size: clamp(16px, 1.4vw, 28px);
    margin-block: 45px !important;
}

.spotify-section__input {
    font-weight: 700;
    padding: 15px;
}

.spotify-section__form--submit-btn {
    font-size: clamp(17px, 1.0vw, 24px) !important;
    width: 100%;
    padding: 17px;
}

iframe.spotify-section__player {
    width: calc(100% - 50px);
    max-width: 500px;
    height: 352px;
    display: block;
    margin: 0 0 0 auto;
    box-shadow: 10px 20px 20px rgba(var(--clr--black), 0.5);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

/* ====== CURVY PROGRESS BAR ====== */
.drop-counts__wave-wrapper {
    position: relative;
    width: 100%;
    margin-block: 75px;
}

.drop-counts__wave-wrapper-donation {
    margin-bottom: 0;
}

svg.drop-counts__svg {
    width: 100%;
    height: auto;
    display: block;
}

.drop-counts__wave-wrapper_wave-bg,
.drop-counts__wave-wrapper_wave-progress {
    fill: none;
    stroke-width: 25.336;
}

.drop-counts__wave-wrapper_wave-bg {
    stroke: rgb(var(--clr--light--gray));
}

.drop-counts__wave-wrapper_wave-progress {
    stroke: rgb(var(--clr--orange));
    stroke-width: 25.336;
    fill: none;
    stroke-dasharray: 3500;
}

.drop-counts__wave-wrapper_wave-marker {
    position: absolute;
    top: 0;
    /*leftwillbesetbyJS*/
    width: 52px;
    height: 52px;
    background: rgb(var(--clr--white));
    border: 4px solid rgb(var(--clr--orange));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0;
    color: transparent;
    cursor: pointer;
    transform: translate(-50%, -30%);
    -webkit-transform: translate(-50%, -30%);
    -moz-transform: translate(-50%, -30%);
    -ms-transform: translate(-50%, -30%);
    -o-transform: translate(-50%, -30%);
}

.drop-counts__wave-wrapper_wave-label {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
}

.drop-counts__wave-wrapper_wave-label>.drop-counts__wave-wrapper_wave-count {
    text-align: center;
    width: calc(100% / var(--label--count));
}

.drop-counts__wave-wrapper_wave-label>.drop-counts__wave-wrapper_wave-count:first-child,
.drop-counts__wave-wrapper_wave-label>.drop-counts__wave-wrapper_wave-count:last-child {
    width: calc(100% / (2 * var(--label--count)));
}

.drop-counts__wave-wrapper_wave-label>.drop-counts__wave-wrapper_wave-count:first-child {
    text-align: left;
}

.drop-counts__wave-wrapper_wave-label>.drop-counts__wave-wrapper_wave-count:last-child {
    text-align: right;
}

/* Tooltip styles */
.drop-counts__wave-wrapper_wave-marker::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, -8px);
  background: rgb(var(--clr--gray));
  color: rgb(var(--clr--white));
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  z-index: 10;
}

.drop-counts__wave-wrapper_wave-marker:hover::after {
  opacity: 1;
}

/* ====== FAQ ====== */
.faq-section__accordion {
    background-color: rgb(var(--clr--white));
    padding: 30px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.faq-section__accordion-button {
    font-size: clamp(18px, 1.4vw, 36px);
    padding: 30px 0 10px;
    border-bottom: 1px solid rgb(var(--clr--black));
}

.faq-section__accordion-button:focus {
    box-shadow: none;
}

.faq-section__accordion-button:not(.collapsed) {
    color: rgb(var(--clr--black));
    background-color: transparent;
}

.faq-section__accordion-button::after {
    rotate: -90deg;
}

.faq-section__accordion-button:not(.collapsed)::after {
    rotate: 180deg;
}

.faq-section__accordion-item {
    border: 0;
}

.faq-section__accordion-item:first-child .faq-section__accordion-button {
    padding-top: 10px;
}

.faq-section__accordion-body {
    padding: 30px 0 10px;
}

.faq-section__accordion-body p {
    font-size: clamp(15px, 0.8vw, 23px);
}

/* ====== VIDEO PLAYER ====== */
.video-section__player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 45px auto;
}

.video-section__player video {
    width: 100%;
    display: block;
}

.video-section__player .video-section__play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.video-section__player .video-section__play-icon.hidden {
    display: none;
}

body.single-post .video-section__player {
    margin-block: 0;
}

/* ====== DONATION FORM SECTION ====== */
.donation-form {
    min-height: 75vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* .donation-form:after {
    content: "";
    background-color: rgb(var(--clr--white), .2);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
} */

.donation-form__container {
    position: relative;
    z-index: 1;
}

/* .donation-form__column {
    padding-block: 50px;
    padding-left: calc(50vw - (1320px / 2)) !important;
    overflow: hidden;
    position: relative;
    z-index: 1;
} */

.donation-form__column {
    text-align: center;
    position: relative;
}

.donation-form__hero-title {
    color: rgb(var(--clr--white));
    font-weight: 900;
}

.donation-form__column iframe {
    position: relative;
    z-index: 9;
}

.donation-form__sub-heading {
    margin-top: 35px;
    margin-bottom: 20px;
}

.donation-form__sub-heading>h2 {
    font-size: clamp(36px, 3vw, 72px);
    text-align: left;
}

.donation-form__hero-copy p {
    color: rgb(var(--clr--white));
    font-size: clamp(16px, 1.4vw, 28px);
    margin-bottom: 30px;
}

.donation-form__img-column {
    position: relative;
}

.donation-form__img {
    text-align: right;
    width: 120%;
    max-width: 1100px;
    max-height: 600px;
    position: absolute;
    left: -100px;
    bottom: -80px;
    z-index: 0;
}

.donation-form__column::before {
    content: "";
    background: rgba(var(--clr--orange), .7);
    width: 900px;
    height: 900px;
    position: absolute;
    top: calc(100% - 130px);
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.donation-form__column::after {
    content: "";
    background: rgb(var(--clr--white));
    width: 500px;
    height: 500px;
    position: absolute;
    top: calc(100% + 30px);
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

/* .donation-form__row::after {
    content: "";
    background: url("https://d1h8xmz1y5a4ga.cloudfront.net/donation-form-circle-white.png") no-repeat left 35%;
    width: 50%;
    height: calc(100% + 120px);
    position: absolute;
    top: -60px;
    right: 0;
    z-index: -1;
} */

/* ====== DONATION CTA ====== */
.donation-cta__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

/* ====== IMAGE GRID ====== */
.image-grid__wrapper {
    height: 930px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(9, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}

.image-grid__wrapper img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

/* Why Water? */
.image-grid__wrapper-water_one {
    grid-area: 1 / 1 / 4 / 6;
}

.image-grid__wrapper-water_two {
    grid-area: 1 / 6 / 7 / 9;
}

.image-grid__wrapper-water_three {
    grid-area: 4 / 1 / 7 / 3;
}

.image-grid__wrapper-water_four {
    grid-area: 4 / 3 / 7 / 6;
}

.image-grid__wrapper-water_five {
    grid-area: 7 / 1 / 10 / 9;
}

/* How it's made */
.image-grid__wrapper-made_one {
    grid-area: 1 / 1 / 7 / 6;
}

.image-grid__wrapper-made_two {
    grid-area: 1 / 6 / 4 / 9;
}

.image-grid__wrapper-made_three {
    grid-area: 4 / 6 / 7 / 9;
}

.image-grid__wrapper-made_four {
    grid-area: 7 / 1 / 10 / 7;
}

.image-grid__wrapper-made_five {
    grid-area: 7 / 7 / 10 / 9;
}

/* Dance with Us */
.image-grid__wrapper-dance_one {
    grid-area: 1 / 1 / 7 / 3;
}

.image-grid__wrapper-dance_two {
    grid-area: 1 / 3 / 7 / 6;
}

.image-grid__wrapper-dance_three {
    grid-area: 1 / 6 / 10 / 9;
}

.image-grid__wrapper-dance_four {
    grid-area: 7 / 1 / 10 / 6;
}

/* Images */
.image-grid__wrapper-water_one img,
.image-grid__wrapper-water_three img,
.image-grid__wrapper-water_four img,
.image-grid__wrapper-water_five img,
.image-grid__wrapper-made_two img,
.image-grid__wrapper-made_three img,
.image-grid__wrapper-made_four img,
.image-grid__wrapper-made_five img,
.image-grid__wrapper-dance_four img {
    height: 300px;
}

.image-grid__wrapper-water_two img,
.image-grid__wrapper-made_one img,
.image-grid__wrapper-dance_one img,
.image-grid__wrapper-dance_two img {
    height: 615px;
}

.image-grid__wrapper-dance_three img {
    height: 930px;
}

/* .image-grid__wrapper-water_one img {
    object-position: 0 -75px;
}

.image-grid__wrapper-water_five img {
    object-position: 0 -350px;
} */

/* ====== IMAGE CAPTIONS ====== */
.image-section__wrapper {
    position: relative;
}

.image-section__wrapper img {
    width: 100%;
}

.image-section__caption {
    text-align: center;
    background: linear-gradient(180deg, rgba(var(--clr--black), 0) 0%, rgba(var(--clr--black), .75) 100%) 0% 0%;
    width: 100%;
    padding: 100px 15px 40px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.image-section__caption > * {
    color: rgb(var(--clr--white));
    font-size: clamp(21px, 1.4vw, 36px);
}

span.divider {
    display: block;
    width: 100%;
    height: 50px;
}

/* ====== CIRCULAR PROGRESS BAR ====== */
.donation-stats__grid_progress {
    color: rgb(var(--clr--black));
    font-weight: bold;
    font-size: 24px;
    width: calc(100% - 15px);
    max-width: 320px;
    margin-inline: auto;
    aspect-ratio: 1 / 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: conic-gradient(rgb(var(--clr--orange)) 0% 0%,
            rgb(var(--clr--light--gray)) 0% 100%);
}

.donation-stats__grid_progress::before {
    content: '';
    position: absolute;
    width: calc(100% - 90px);
    aspect-ratio: 1 / 1;
    background: rgb(var(--clr--white));
    border-radius: 50%;
}

.donation-stats__grid_progress .donation-stats__grid_value {
    text-align: center;
    width: calc(100% - 110px);
    position: relative;
}

.donation-stats__grid_progress .donation-stats__grid_value p {
    font-weight: 400;
}

/* ====== 404 ====== */
.error-message {
    min-height: calc(100vh - 260px);
    display: flex;
    align-items: center;
}

.error-message__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.error-message__title {
    color: rgb(var(--clr--orange));
    font-size: clamp(48px, 7.5vw, 120px);
    font-weight: 900;
}

/* ====== FOOTER ====== */
.footer {
    padding: 40px 0;
}

.footer__logo {
    display: block;
    max-width: 300px;
}

.footer__logo img {
    height: auto;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.footer__content .footer__social-grid {
    text-align: center;
    width: 100%;
    max-width: 290px;
    justify-content: flex-end;
}

.footer__content .footer__social-grid a i {
    font-size: clamp(21px, 1.8vw, 36px);
    color: rgb(var(--clr--gray));
}

.footer__content .footer__social-grid a:hover i {
    color: rgb(var(--clr--orange));
}

.footer__copyright {
    font-size: 15px;
    font-weight: 300;
    color: rgb(119, 119, 119);
}

/* ====== MAP CSS ====== */
.map-section__map-container {
    display: flex;
    flex-wrap: wrap;
    /* max-width: 1000px; */
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    overflow: hidden;
}

.map-section__map-header > * {
    color: rgb(var(--clr--white));
    font-size: clamp(24px, 2.8vw, 60px);
    font-weight: 900;
}

.map-section__map-description p {
    color: rgb(var(--clr--white));
    font-size: clamp(16px, 1.2vw, 28px);
    margin-block: 30px !important;
}

.map-section__info-panel {
    flex: 1 1 50%;
    height: 660px;
    /* MATCH map height */
    overflow-y: auto;
    box-sizing: border-box;
    padding: 30px;
    background: rgb(var(--clr--gray));
}

.map-section__map-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.map-section__map-items a {
    font-size: clamp(18px, 1.3vw, 36px);
    font-weight: 700;
    text-decoration: none;
    background: rgb(var(--clr--white));
    display: block;
    padding: 15px 50px 15px 25px;
    position: relative;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.map-section__map-items a:after {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-size: 24px;
    font-weight: 900;
    color: rgb(var(--clr--gray));
    margin-left: 10px;
    margin-right: 15px;
    position: absolute;
    right: 0;
    top: 15px;
}

.map-section__map-items a:hover:after {
    color: rgb(var(--clr--white));
}

.map-section__map-items a:hover {
    color: rgb(var(--clr--white));
    background: rgb(var(--clr--orange));
}

.map-section__map-wrapper {
    position: relative;
    flex: 1 1 50%;
    height: 660px;
    /* FIXED HEIGHT */
    overflow: hidden;
    box-sizing: border-box;
}

.map-section__map-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* maintains image scaling inside box */
    display: block;
}

.map-section__map-hotspot {
    position: absolute;
    width: 16px;
    aspect-ratio: 1 / 1;
    background: rgb(var(--clr--orange));
    border-radius: 50%;
    cursor: pointer;
    opacity: 1;
    transform: translate(-50%, -50%);
    transition: background 0.3s;
}

.map-section__map-hotspot-active {
    background: rgb(var(--clr--orange));
}

.map-section__map-hotspot:hover:before,
.map-section__map-hotspot-active:before {
    content: "";
    width: 28px;
    aspect-ratio: 1 / 1;
    position: absolute;
    border: 2px solid rgba(var(--clr--orange), .5);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    animation: pulse-hotspot-small 2s infinite;
    -webkit-animation: pulse-hotspot-small 2s infinite;
}

.map-section__map-hotspot:hover:after,
.map-section__map-hotspot-active:after {
    content: "";
    width: 40px;
    aspect-ratio: 1 / 1;
    position: absolute;
    border: 2px solid rgba(var(--clr--orange), .2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    animation: pulse-hotspot-large 2s infinite;
    -webkit-animation: pulse-hotspot-large 2s infinite;
}

@keyframes pulse-hotspot-small {
  0% {
    width: 5px;
    border: 2px solid rgba(var(--clr--orange), .1);
    box-shadow: 0 0 0 0px rgba(var(--clr--black), 0.05);
  }
  33% {
    width: 28px;
    border: 2px solid rgba(var(--clr--orange), .5);
    box-shadow: 0 0 0 20px rgba(var(--clr--black), 0);
  }
  100% {
    width: 5px;
    border: 2px solid rgba(var(--clr--orange), .1);
    box-shadow: 0 0 0 0px rgba(var(--clr--black), 0.05);
  }
}

@keyframes pulse-hotspot-large {
  0% {
    width: 20px;
    border: 2px solid rgba(var(--clr--orange), .1);
    box-shadow: 0 0 0 0px rgba(var(--clr--black), 0.05);
  }
  33% {
    width: 40px;
    border: 2px solid rgba(var(--clr--orange), .2);
    box-shadow: 0 0 0 20px rgba(var(--clr--black), 0);
  }
  100% {
    width: 20px;
    border: 2px solid rgba(var(--clr--orange), .1);
    box-shadow: 0 0 0 0px rgba(var(--clr--black), 0.05);
  }
}

.map-section__map-hotspot:hover {
    opacity: 0.8;
}

.map-section__map-back-wrapper {
    display: flex;
    gap: 15px;
}

.map-section__map-back-btn {
    display: inline-block;
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    color: rgb(var(--clr--black));
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.map-section__map-info-title {
    color: rgb(var(--clr--white));
    font-weight: 700;
    text-align: center;
    width: 100%;
    margin: 0;
}

.map-section__map-info-copy {
    width: 100%;
    max-width: 480px;
    min-height: calc(100% - 30px);
    margin: 0 auto;
    padding: 20px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.map-section__map-info-copy:has(+ .map-section__map-accordion) {
    min-height: unset;
}

.map-section__map-info-copy img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    flex-grow: 1;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.map-section__map-info-content p,
.map-section__map-info-content ul {
    color: rgb(var(--clr--white));
}

.map-section__map-info-content p + ul {
    margin-top: 16px;
}

.map-section__map-accordion {
    margin-bottom: 2px;
    border: 1px solid rgb(var(--clr--light--gray));
}

.map-section__accordion-header {
    padding: 10px 50px 10px 25px;
    background: rgba(var(--clr--light--gray),.9);
    cursor: pointer;
    position: relative;
}

.map-section__map-accordion .map-section__accordion-header:after,
.map-section__map-accordion-open .map-section__accordion-header:after {
    font-family: "Font Awesome 5 Free";
    font-size: 24px;
    font-weight: 900;
    color: rgb(var(--clr--gray));
    margin-left: 10px;
    margin-right: 15px;
    position: absolute;
    right: 0;
    top: 8px;
}

.map-section__map-accordion .map-section__accordion-header:after {
    content: "\f0d7";
}

.map-section__map-accordion-open .map-section__accordion-header:after {
    content: "\f0d8";
}

.map-section__accordion-content {
    display: none;
    padding: 10px;
    background: rgb(var(--clr--white));
    border-top: 1px solid rgb(var(--clr--light--gray));
}

.map-section__accordion-content p {
    font-size: clamp(16px, 0.8vw, 22px);
    padding: 5px 15px;
}

.map-section__accordion-content ul {
    font-size: clamp(16px, 0.8vw, 22px);
    padding: 5px 15px 5px 35px;
}

.map-section__map-accordion-open .map-section__accordion-content {
    display: block;
}

/* ====== STORIES GRID ====== */
.stories-grid__item-link {
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stories-grid__item-thumb img {
    width: 100%;
    height: unset;
    aspect-ratio: 4 / 2.5;
    object-fit: cover;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.stories-grid__item-excerpt {
    flex-grow: 1;
}

.stories-grid__pagination {
    font-size: 21px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.stories-grid__pagination a {
    color: currentColor;
    text-decoration: none;
}

.stories-grid__pagination a:hover {
    color: rgb(var(--clr--orange));
}

.stories-grid__pagination .prev,
.stories-grid__pagination .next {
    color: rgb(var(--clr--gray));
    font-size: 28px;
    width: 3.5rem;
    height: 3.5rem;
    background: rgb(var(--clr--white));
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stories-grid__pagination .prev:hover,
.stories-grid__pagination .next:hover {
    color: rgb(var(--clr--white));
    background: rgb(var(--clr--orange));
}