h1 {
    font-family: 'Whyte-Light';
    margin: 0;
    font-size: 32px;
    color: black;
    text-transform: none;
    letter-spacing: -1px;
}

h2 {
    font-family: 'Whyte-Light';
    margin: 0;
    font-size: 26px;
    text-transform: none;
}

h3 {
    font-family: 'gascogne-serial';
    margin: 0;
    text-transform: none;
}

h4 {
    font-family: whyte_book;
    margin: 0;
    text-transform: none;
}

h5 {
    font-family: 'Whyte-Semi';
    font-size: 10px;
    margin: 0;
    text-transform: none;
}

p {
    font-family: 'Whyte-Light';
    font-size: 11px;
    text-transform: none;
}

a {
    font-family: 'Whyte-Semi';
    font-size: 11px;
    text-decoration: none !important;
    position: relative;
    text-transform: uppercase;
    line-height: 1.2;
}

a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    width: 0;
    overflow: hidden;
    height: 1px;
    background-color: black;
    transition: all 500ms ease;
}

a:hover::after {
    width: 100%;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-center {
    justify-content: center;
}

.flex-left {
    justify-content: flex-start;
}

.flex-right {
    justify-content: flex-end;
}

.flex-spread  {
    justify-content: space-between;
}

.flex-vcenter {
    align-items: center;
}

.flex-vleft {
    align-items: flex-start;
}

.flex-vright {
    align-items: flex-end;
}

:root {
    --gap: 30px;
    --margin: 40px;
    --header-height: 95.56px;
    --row-height: 25%
}

.container {
    padding: var(--gap);
    max-width: unset;
}

.max-width {
    max-width: 1920px;
    margin: auto;
}

.tag {
    font-family: 'Whyte-Semi';
    font-size: 10px;
    color: #F6F0E3;
    padding: 4px 12px;
    text-transform: uppercase;
    width: fit-content;
    cursor: pointer;
    border-radius: 3px;
    height: 21px;
    display: inline-block;
    line-height: 1.3;
}

.tag::after {
    display: none !important;
}

.header,
.header.scroll {
    top: 0 !important;
}

.read-time h5 {
    font-family: 'Whyte-Semi';
    font-size: 10px;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.4;
}

.brand {
    text-transform: uppercase;
}

.header {
    position: fixed;
    background-color: #F5F0E4;
    width: 100%;
    z-index: 3;
}

@media screen and (max-width: 767px) {
    :root {
        --gap: 20px;
    }

    h1 {
        font-size: 22px;
    }

    h3 {
        font-size: 20px;
    }

}