:root, .color-scheme-1 {
    --color-1: #fefef4;
    --color-2: #f0f0ea;
    --color-3: #f0f7ef;
    --color-4: #006c57;
    --color-5: #2f3b2f;
    --color-6: #eb3418;
    --color-7: #f48120;
    --color-8: #868686;
    --color-9: #005646;
    --color-10: #0f4514;
    --gradient-background: var(--color-1) !important;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;
    letter-spacing: 0;
    color: var(--color-5);
    background-color: var(--color-1);
}

h1,.h1,
h2,.h2,
h3,.h3,
h4,.h4,
h5,.h5,
h6,.h6 {
    margin: 0;
    font-family: 'Garbata', sans-serif;
    font-weight: 700;
    letter-spacing: 0;
}

h1,
.h1 {
    font-weight: 900;
    font-size: 46px;
    line-height: 86%;
}

h2,
.h2 {
    font-weight: 700;
    font-size: 3px;
    line-height: 100%;
}

h3,
.h3,
.rte h2,
.entry-content h2,
.entry-title {
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -0.4px;
}

strong {
    font-weight: 600;
}

.rte h2 {
    margin: 26px 0 10px;
    color: var(--color-9);
}

.rte h3 {
    margin: 20px 0 6px;
}

input, button, select, textarea {
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.text-white {
    color: #fff;
}

.btn {
    position: relative;
    display: inline-block;
    padding: 0;
    border: 0;
    align-content: center;
    text-align: center;
    letter-spacing: 0;
    border-radius: 1000px;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--color-6);
    box-shadow:
            0px 32px 16px 0px rgba(0, 0, 0, 0.03),
            0px 16px 8px 0px rgba(0, 0, 0, 0.04),
            4px 4px 5px 0px rgba(0, 0, 0, 0),
            7px 7px 20px 0px rgba(0, 0, 0, 0),
            1px 1px 2px -1px rgba(255, 255, 255, 1) inset,
            0px -2px 4px 0px rgba(0, 0, 0, 0) inset;
    transition: box-shadow 0.3s ease-out, background-color 0.3s ease-out !important;
}

.btn-red:not([disabled]):hover,
.btn:not([disabled]):hover {
    box-shadow:
            0px 32px 16px 0px rgba(0, 0, 0, 0),
            0px 16px 8px 0px rgba(0, 0, 0, 0),
            4px 4px 5px 0px rgba(0, 0, 0, 0.1),
            7px 7px 20px 0px rgba(0, 0, 0, 0.1),
            1px 1px 2px -1px rgba(255, 255, 255, 0) inset,
            0px -2px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.btn-red:disabled,
.btn:disabled,
.btn[disabled] {
    box-shadow: none;
    background: transparent;
    cursor: not-allowed;
    opacity: 1;
}

.btn-red:disabled span,
.btn:disabled span,
.btn[disabled] span {
    color: var(--color-8);
    border-radius: 1000px;
    border: 2px solid var(--color-2);
}

.btn span {
    width: 100%;
    align-content: center;
    display: inline-block;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 30px;
    color: #fff;
    border: 0;
    background-color: transparent;
}

.button--arrow {
    display: flex;
    gap: 13px;
}

.btn_red {
    background: var(--color-6);
}

.button.button--tertiary {
    max-width: fit-content;
    min-height: 50px;
    padding: 0 22px;
    align-content: center;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0;
    border-radius: 1000px;
    color: var(--color-6);
    border: 2px solid var(--color-6);
    transition: color 0.3s ease-out, background-color 0.3s ease-out !important;
}

.button.button-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.button.button--tertiary:hover {
    color: #fff;
    background-color: var(--color-6);
}

.rte a {
    color: var(--color-5);
}

.rte a,
.full-unstyled-link {
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
    transition: color 0.3s ease-out, text-decoration-color 0.3s ease-out;
}

.rte a:hover,
.full-unstyled-link:hover {
    color: var(--color-9);
    text-decoration-color: currentColor;
}

.link {
    padding: 0 10px 0 1px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 1px;
}

.link-green {
    color: var(--color-9);
}

.link-green:hover {
    color: var(--color-5);
}

.link-dark-green {
    color: var(--color-5);
}

.link-dark-green:hover {
    color: var(--color-9);
}

.link-orange {
    color: var(--color-7);
    transition: color 0.2s ease, background-color 0.2s ease;
}

.link-orange:hover {
    color: #fff;
    background-color: var(--color-7);
}

.container {
    max-width: 1248px;
    width: 100%;
    margin: 0 auto;
}

.post-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.post-card-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 75%;
}

.post-card-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-categories-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.category-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
}

.post-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.author-avatar img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: block;
}

.meta-text {
    font-size: 12px;
    color: #888888;
}

.post-card-title {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    margin: 0 0 16px 0;
}

.post-card-title a {
    text-decoration: none;
    color: #333333;
}

.post-card-link {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: #f08b33;
    text-decoration: none;
}

.banner {
    position: relative;
    width: 100%;
    min-height: 406px;
    align-content: center;
    z-index: 1;
}

.banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.banner::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 34px;
    background: url("../images/wave-archive-banner.svg") repeat-x;
}

.headline-archive {
    text-align: center;
    color: #fff;
}

.headline-archive--title {
    margin-bottom: 12px;
}

@media screen and (min-width: 750px) {
    h1,
    .h1 {
        font-size: 76px;
        line-height: 86%;
    }

    h2,
    .h2 {
        font-size: 64px;
        line-height: 100%;
    }

    .entry-title,
    .rte h2,
    h3,
    .h3 {
        font-size: 36px;
        line-height: 100%;
    }

    .entry-content h2 {
        font-size: 36px;
        line-height: 119%;
    }

    .rte h3 {
        font-size: 18px;
        line-height: 100%;
    }

    .page-width {
        padding: 0 24px;
    }

    .btn span {
        min-height: 64px;
        padding: 0 23px;
        font-size: 18px;
    }

    .button.button--tertiary {
        max-width: fit-content;
        min-height: 51px;
    }

    .button.button--large  {
        min-height: 65px;
        padding: 20px 32px;
    }

    .button--arrow {
        padding-right: 19px;
    }

    .headline-archive--description {
        font-size: 18px;
    }
}


