:root {
    --border-color: #dee2e6;
    --main-gold: #ac841e;
    --main-gold-light: #dab455;
    --bs-primary-light: #c3a586;
}
/* LAYOUTS */
.w-100 { width: 100%; }
.h-100 { height: 100%; }

@media (min-width: 768px) {
    .d-grid.-col-md-2 { grid-template-columns: repeat(2, 1fr); }
    .d-grid.-col-md-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 992px) {
    .d-grid.-col-lg-2 { grid-template-columns: repeat(2, 1fr); }
    .d-grid.-col-lg-3 { grid-template-columns: repeat(3, 1fr); }
    .d-grid.block-divisor-2 > *:first-child {
        padding-right: 4rem;
        border-right: 1px solid var(--border-color);
    }
    .d-grid.block-divisor-2 > *:last-child { padding-left: 4rem;}

    .d-grid.block-divisor-3 {
        grid-template-columns: 1fr calc(33.33% + 2rem) 1fr;
    }
    .d-grid.block-divisor-3 > *:nth-last-child(n + 2) {
        padding-right: 3rem;
    }
    .d-grid.block-divisor-3 > *:nth-child(n + 2) {
        padding-left: 3rem;
        border-left: 1px solid var(--border-color);
    }
}

/* TEXT */
.text-gold { color: var(--main-gold); }
.text-gold-light { color: var(--main-gold-light); }

/* BORDERS */
.rounded-0 { border-radius: 0; }
.rounded-1 { border-radius: .25rem; }
.rounded-2 { border-radius: .5rem; }
.rounded-3 { border-radius: 1rem; }
.rounded-4 { border-radius: 2rem; }
.rounded-5 { border-radius: 3rem; }

/* JUSTIFICATION */
.align-items-start { align-items: flex-start; }
.align-items-center { align-items: center; }
.align-items-end { align-items: flex-end; }

/* SPECIAL HEADERS FOR SCRANTON GOLD */
.round-header-image {
    position: relative;
    margin-bottom: 1rem;
}
.round-header-image > figure img {
    min-height: 300px;
    object-fit: cover;
}
.round-header-title {
    position: absolute;
    left: 0;
    /* top: calc(100% - 3rem); */
    bottom: -1rem;
    width: calc(100% - 2rem);
    z-index: 2;
    background-color: white;
    padding: .5rem 1rem 0 .5rem;
    border-top-right-radius: 1rem;
}
.round-header-title::before,
.round-header-title::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    width: 1rem;
    height: 1rem;
    background: radial-gradient(at 100% 0%, transparent 70%, white 70%, white 100%);
    z-index: 2;
}
.round-header-title::after {
    top: unset;
    bottom: 1rem;
    left: 100%;
    transform: translateX(0);
}
@media (min-width: 768px) {
    .round-header-title {
        max-width: 70%;
        top: unset;
        bottom: 0;
        left: 0;
        padding: 1.5rem 1rem 0 calc(1rem + 1vw);
    }
    .round-header-title::after {
        top: unset;
        bottom: 0;
    }
}
/* HEADER */
.site-header {
    --header-background: var(--bs-primary-light);
    color: black;
}
.site-header .hamburger-inner,
.site-header .hamburger-inner:after,
.site-header .hamburger-inner:before {
    background-color: black;
}
.site-header__divider {
    opacity: 0.4;
}
.site-header__main__actions .action.-cart .bubble.-primary {
    background-color: black;
}
@media (min-width: 768px) {
    .site-header__main__logo {
        width: 250px;
        .link-logo { max-width: 250px; }
        img { width: 100%; }
    }
}
@media (min-width: 1200px) {
    .site-header__main__logo {
        width: 300;
        .link-logo { max-width: 300px; }
    }
}
/* FOOTER */
.site-footer .link-logo img {
    filter: invert(1);
}