@charset "UTF-8";

/** Helpers */

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/** Component: Button */

.wp-element-button,
.c-btn {
    box-sizing: border-box;
    border: 0 solid;
    display: inline-flex;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: calc(var(--ama-radius) - 2px);
    background-color: hsl(var(--ama-primary));
    padding: 0 2rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    --ama-tw-gradient-from: #1cbe78 var(--ama-tw-gradient-from-position);
    --ama-tw-gradient-to: #0183c7 var(--ama-tw-gradient-to-position);
    --ama-tw-gradient-stops: var(--ama-tw-gradient-from), var(--ama-tw-gradient-to);
    background-image: linear-gradient(to right, var(--ama-tw-gradient-stops));
    color: var(--ama-color-white);
    text-decoration: none;
    transition: transform .2s, background-color .2s;
    cursor: pointer;
}

.wp-element-button:hover,
.c-btn:hover {
    transform: scale(1.1)
}

.wp-element-button[disabled],
.c-btn[disabled] {
    opacity: .5
}

.c-btn--outline {
    background-color: hsl(var(--ama-background));
    color: #1cbe78;
    border: 1px solid #1cbe78;
    background-image: none;
}

.c-btn--white {
    background-color: var(--ama-color-white);
    color: rgb(28 190 120 / var(--ama-tw-text-opacity, 1));
    background-image: none;
}

/** Component: Alert */

.c-alert {
    position: relative;
    margin-bottom: var(--ama-gutter);
    color: var(--ama-color-black) !important;
    background-color: var(--ama-color-white);
    padding: .9375rem 1.875rem;
    font-size: 1rem;
    z-index: 5;
    text-align: left;
    border-radius: 0;
}

.c-alert > :last-child {
    margin-bottom: 0;
}

.c-alert .button {
    padding: .625rem;
    margin-right: 1.25rem;
}

.c-alert li:only-child {
    padding-left: 0;
}

.c-alert li:only-child:before,
.c-alert li:only-child:after {
    display: none;
}

.c-alert--primary {
    box-shadow: inset .625rem 0 0 0 var(--ama-color-primary), inset 0 0 0 1px var(--ama-color-primary);
}

.c-alert--info {
    box-shadow: inset .625rem 0 0 0 var(--ama-color-info), inset 0 0 0 1px var(--ama-color-info);
}

.c-alert--success {
    box-shadow: inset .625rem 0 0 0 var(--ama-color-success), inset 0 0 0 1px var(--ama-color-success);
}

.c-alert--warning {
    box-shadow: inset .625rem 0 0 0 var(--ama-color-warning), inset 0 0 0 1px var(--ama-color-warning);
}

.c-alert--error {
    box-shadow: inset .625rem 0 0 0 var(--ama-color-error), inset 0 0 0 1px var(--ama-color-error);
}

/** Inputs */

.l-layout input[type="date"],
.l-layout input[type="datetime-local"],
.l-layout input[type="email"],
.l-layout input[type="month"],
.l-layout input[type="number"],
.l-layout input[type="password"],
.l-layout input[type="reset"],
.l-layout input[type="tel"],
.l-layout input[type="text"],
.l-layout input[type="time"],
.l-layout input[type="url"],
.l-layout input[type="week"],
.l-layout textarea,
.l-layout select {
    display: block;
    width: 100%;
    padding: 0.6875rem 1.1875rem;
    font-size: 0.875rem;
    line-height: 1rem;
    background-color: var(--ama-color-light);
    border: 1px solid var(--ama-color-primary);
    border-radius: 0.375rem;
}

.l-layout :invalid {
    border-color: var(--ama-color-error);
}

.l-layout ::placeholder {
    color: currentColor;
}

.l-layout select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.414' height='9.207' viewBox='0 0 17.414 9.207'%3E%3Cpath d='M572.747,2013.061l8,8,8-8' transform='translate(-572.039 -2012.354)' fill='none' stroke='%231e2a38' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/svg%3E") calc(100% - 1.1875rem) center / 1rem auto no-repeat, var(--ama-color-light);
    padding-right: 2.5rem;
}

.l-layout select::-ms-expand {
    display: none;
}

.l-layout textarea {
    min-height: 7.5rem;
}

/** Layout */

.l-layout {
    position: relative;
}

/** Layout: Container */

.l-container,
.l-gutenberg > :not([ama-block]) {
    width: calc(100% - var(--ama-gutter));
    max-width: var(--ama-content-width);
    margin-left: auto;
    margin-right: auto
}

.l-container .l-container,
.l-gutenberg > :not([ama-block]) .l-container,
.l-container .l-gutenberg > :not([ama-block]),
.l-gutenberg > :not([ama-block]) .l-gutenberg > :not([ama-block]) {
    width: 100%
}

/** Layout: Gutenberg */

.l-gutenberg > :not([ama-block]):last-child {
    margin-bottom: var(--ama-spacer-s30);
}

.l-gutenberg > :not([ama-block]):first-child {
    margin-top: var(--ama-spacer-s30);
}

/** Layout: Editor */

.l-editor ul:not([class]),
.l-editor ol:not([class]) {
    list-style: initial;
    padding-left: 1.25rem;
}

.l-editor ul,
.l-editor ol,
.l-editor p,
.l-editor table {
    margin-top: 1em;
    margin-bottom: 1em;
}

.l-editor h1,
.l-editor h2,
.l-editor h3,
.l-editor h4,
.l-editor h5,
.l-editor h6 {
    margin-top: .8em;
    margin-bottom: .8em;
}

.l-editor > :first-child {
    margin-top: 0;
}

.l-editor > :last-child {
    margin-bottom: 0;
}

/** Layout: Page Title */

.l-page-title {
    position: relative;
}

.l-page-title__heading {
    position: relative;
    margin: 0 !important;
    font-weight: 700;
}

.l-page-title__container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/** Layout: Archive */

.l-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.l-archive__pagination {
    display: flex;
    gap: 0.3125rem;
}

.l-archive__pagination a,
.l-archive__pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 0.625rem;
    background: var(--ama-color-light);
    border: 0.125rem solid var(--ama-color-light);
    transition: border-color .2s;
}

.l-archive__pagination a:hover {
    border-color: var(--ama-color-primary);
}

.l-archive__pagination .current {
    border-color: var(--ama-color-primary);
    background: var(--ama-color-primary);
    color: var(--ama-color-white);
}

/** WP: Block: List */

.wp-block-list {
    list-style: none;
    padding-left: 3.125rem;
}

.wp-block-list li {
    position: relative;
}

.wp-block-list li:before {
    background-color: var(--ama-color-accent);
    content: '';
    display: block;
    width: 0.625rem;
    height: 0.625rem;
    position: absolute;
    left: -1.875rem;
    top: 0.3125rem;
}

.wp-block-list li + li {
    margin-top: 1.25rem;
}

/** Plugin: Contact Form 7 */

.wpcf7 label {
    display: block;
    width: 100%;
}

.wpcf7 label + label {
    margin-top: var(--ama-spacer-s10);
}

.wpcf7-submit {
    margin-top: var(--ama-spacer-s30);
}

.wpcf7 .wpcf7-not-valid-tip {
    font-size: 0.875rem;
    line-height: 1.2;
    margin-top: 0.25rem;
    font-weight: 700;
    color: var(--ama-color-error);
}