/* =========================================================
   Components
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
    transition: .2s ease;
    white-space: nowrap;
    border: 1px solid transparent;
}

.btn--primary {
    background: var(--green-900);
    color: #fff;
}

.btn--primary:hover {
    filter: brightness(.95);
}

.btn--ghost {
    background: #fff;
    color: var(--green-900);
    border-color: #e8e8e8;
}

.tag {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 8px;
    background: #fff;
    color: #506349;
    border: 1px solid #e9ece9;
    font-weight: 500;
    font-size: 18px;
    @media (max-width: 760px) {
        font-size: 16px;
    }
}

/* =========================================================
   Sections / Headings
   ========================================================= */
.container{
    /*max-width: 90%;*/
}
.section {
    padding: 80px 0 0 0;
    @media (max-width: 740px) {
        padding: 20px;
    }
}
.section--title{
    padding-bottom: 30px;
}

.section__muted {
    background: var(--gray-50);
    text-align: center;
}

.section__header {
    display: flex;
    flex-direction: column;
    /*gap: 28px;*/
    align-items: center;
    justify-items: center;
    text-align: center;
    margin-bottom: 60px;
    @media (max-width: 740px) {
        margin-bottom: 10px;
    }
}

.section__header--compact {
    /*margin-bottom: 60px;*/
}

.section__header--left {
    justify-items: start;
    text-align: left;
    align-items: flex-start;
}

.section__eyebrow {
    font: 500 15px/1 "DM Sans", system-ui, sans-serif;
    color: var(--green-900);
}

.section__sub {
    text-align: center;
}
