body {
    background: var(--pale);
}

.header .hide-in-header {
    display: none;
}

.padded-section {
    width: calc(100% - var(--spacing-small) * 2) !important;
    margin: 0 var(--spacing-small);
    overflow: hidden;
}

.image-portrait {
    aspect-ratio: 2.7 / 3 !important;
}

.card-gradient::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(
  to bottom,
  rgba(42, 33, 28, .95) 0%,
  rgba(42, 33, 28, .65) 35%,
  rgba(58, 47, 40, 0.2) 60%,
  rgba(58, 47, 40, 0.05) 80%,
  rgba(30, 24, 20, .45) 100%
);
}

.card-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--dark);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.card-gradient:hover::before {
    opacity: 0.85;
}

@media (max-width: 960px) {
    .card-gradient::after {
        background: linear-gradient(
  to bottom,
  rgba(42, 33, 28, .95) 0%,
  rgba(42, 33, 28, .90) 35%,
  rgba(58, 47, 40, .8) 60%,
  rgba(58, 47, 40, .4) 80%,
  rgba(30, 24, 20, 0) 100%
);
    }
}

.custom-cursor {
    cursor: pointer;
}

.cursor-ball {
    position: fixed;
    top: 0;
    left: 0;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: .7rem;
    line-height: 1.4;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    font-family: var(--font-family-heading);
    text-transform: uppercase;
    transform: scale(.1);
    transition: opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;
}

.cursor-ball.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.button-wrapper.plain.new-page-arrow {
    column-gap: .5rem;
}

.button-wrapper.plain.new-page-arrow svg {
    width: 1.5rem;
    height: 1.5em;
    margin-bottom: -2px;
}

.button-wrapper.plain.new-page-arrow:hover svg {
    transform: translateX(.3rem) translateY(-.3rem);
}

footer .footer-columns-row .column.footer-right-column {
    row-gap: var(--spacing-large);
}

@media (min-width: 640px) {
    footer .footer-columns-row .column.footer-right-column {
        flex-direction: row !important;
        column-gap: var(--spacing-large);
    }
}

.overlay-link:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
}

.border-top {
    border-top: 1px solid var(--black-alpha-2);
    padding-top: var(--spacing-default);
}

.icon-watermark {
    position: relative;
}

.icon-watermark svg {
    position: absolute;
    left: 1.2rem;
    bottom: 1.2rem;
    z-index: 1;
}

.icon-watermark svg path {
    fill: var(--light);
}

@media (max-width: 640px) {
    .sm-ratio__3-2 {
        aspect-ratio: 3 / 2 !important;
    }
}