
/****** Browser bug fixes ******/
/****** normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css ******/

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}



/****** Resets ******/

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    min-height: 0;
    min-width: 0;
}

html {
    height: 100%;
}

body {
    height: 100%;
    overflow-y: scroll;
}

a {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

button {
    background-color: transparent;
    color: inherit;
    border-width: 0;
    padding: 0;
    cursor: pointer;
}

cite {
    font-style: normal;
}

fieldset {
    border-width: 0;
    padding: 0;
    margin: 0;
}

figure {
    margin: 0;
}

form {
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

img {
    display: inline-block;
}

p {
    margin: 0;
}

ul,
ol,
dd {
    margin: 0;
    padding: 0;
    list-style: none;
}



/****** Aaron Ikler custom form styling https://css-tricks.com/ ******/

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    input[type='checkbox'],
    input[type='radio'] {
        --active: rgba(167, 143, 88, 1);
        --active-inner: rgba(255, 255, 255, 1);
        --focus: 0;
        --border: transparent;
        --border-hover: rgba(167, 143, 88, 1);;
        --background: #fff;
        --disabled: rgba(255, 255, 255, .2);
        --disabled-inner: rgba(255, 255, 255, .2);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid var(--bc, var(--border));
        background: var(--b, var(--background));
        -webkit-transition: background .3s, border-color .3s, box-shadow .2s;
        transition: background .3s, border-color .3s, box-shadow .2s;
    }

    input[type='checkbox']:after,
    input[type='radio']:after {
        content: '';
        display: block;
        left: 0;
        top: 0;
        position: absolute;
        -webkit-transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
        transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
        transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
        transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
    }

    input[type='checkbox']:checked,
    input[type='radio']:checked {
        --b: var(--active);
        --bc: var(--active);
        --d-o: .3s;
        --d-t: .6s;
        --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
    }

    input[type='checkbox']:disabled,
    input[type='radio']:disabled {
        --b: var(--disabled);
        cursor: not-allowed;
        opacity: .9;
    }

    input[type='checkbox']:disabled:checked,
    input[type='radio']:disabled:checked {
        --b: var(--disabled-inner);
        --bc: var(--border);
    }

    input[type='checkbox']:disabled + label,
    input[type='radio']:disabled + label {
        cursor: not-allowed;
    }

    input[type='checkbox']:hover:not(:checked):not(:disabled),
    input[type='radio']:hover:not(:checked):not(:disabled) {
        --bc: var(--border-hover);
    }

    input[type='checkbox']:focus,
    input[type='radio']:focus {
        box-shadow: 0 0 0 var(--focus);
    }

    input[type='checkbox']:not(.switch),
    input[type='radio']:not(.switch) {
        width: 21px;
    }

    input[type='checkbox']:not(.switch):after,
    input[type='radio']:not(.switch):after {
        opacity: var(--o, 0);
    }

    input[type='checkbox']:not(.switch):checked,
    input[type='radio']:not(.switch):checked {
        --o: 1;
    }

    input[type='checkbox'] + label,
    input[type='radio'] + label {
        font-size: 14px;
        line-height: 21px;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
        margin-left: 4px;
    }

    input[type='checkbox']:not(.switch) {
        border-radius: 7px;
    }

    input[type='checkbox']:not(.switch):after {
        width: 5px;
        height: 9px;
        border: 2px solid var(--active-inner);
        border-top: 0;
        border-left: 0;
        left: 7px;
        top: 4px;
        -webkit-transform: rotate(var(--r, 20deg));
        transform: rotate(var(--r, 20deg));
    }

    input[type='checkbox']:not(.switch):checked {
        --r: 43deg;
    }

    input[type='checkbox'].switch {
        width: 38px;
        border-radius: 11px;
    }

    input[type='checkbox'].switch:after {
        left: 2px;
        top: 2px;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        background: var(--ab, var(--border));
        -webkit-transform: translateX(var(--x, 0));
        transform: translateX(var(--x, 0));
    }

    input[type='checkbox'].switch:checked {
        --ab: var(--active-inner);
        --x: 17px;
    }

    input[type='checkbox'].switch:disabled:not(:checked):after {
        opacity: .6;
    }

    input[type='radio'] {
        border-radius: 50%;
    }

    input[type='radio']:after {
        width: 19px;
        height: 19px;
        border-radius: 50%;
        background: var(--active-inner);
        opacity: 0;
        -webkit-transform: scale(var(--s, 0.7));
        transform: scale(var(--s, 0.7));
    }

    input[type='radio']:checked {
        --s: .5;
    }
}

select {
	-moz-appearance: none;
	-webkit-appearance: none;
	background-color: #fff;
	color: rgba(64, 64, 64, 1);
	display: inline-block;
	font-size: 16px;
	font-family: Assistant, sans-serif;
	font-weight: 300;
	line-height: 1.3;
	padding: .6em 1.4em .5em .8em;
	width: auto;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
	border: 1px solid rgba(64, 64, 64, 1);
	box-shadow: 0;
	border-radius: 0;
	appearance: none;
	background-image: url(/assets/images/arrow-down.svg), linear-gradient(to bottom, #ffffff 0%,#ffffff 100%);
	background-repeat: no-repeat, repeat;
	background-position: right .7em top 50%, 0 0;
	background-size: .65em auto, 100%;
}

select::-ms-expand {
	display: none;
}

select:hover {
	border-color: rgba(167, 143, 88, 1)
}

select:focus {
	border-color: rgba(167, 143, 88, 1);
	box-shadow: none;
	box-shadow: 0 0 0 0 -moz-mac-focusring;
	color: rgba(64, 64, 64, 1);
	outline: none;
}

select option {
	font-weight: normal;
}



/****** Start ******/
/****** Global tags ******/

html {
    scroll-behavior: smooth;
}

body {
    background: rgba(235, 235, 235, 1);
    color:  rgba(26, 33, 34, 1);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1875rem;
    font-weight: 400;
    letter-spacing: .0165rem;
    line-height: 2rem;
    overflow-y: scroll;
}

a {
    color: inherit;
    font-family: 'Oswald', sans-serif;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: .09375rem;
    line-height: inherit;
    text-decoration: none;
    transition: 0.4s all;
}

a:hover {
    color: rgba(167, 143, 88, 1);
}

button {
    font-family: 'Oswald', sans-serif;
    font-size: inherit;
    font-weight: 400;
    letter-spacing: .09375rem;
    line-height: inherit;
    text-decoration: none;
    transition: 0.4s all;
}

img {
    border: 0;
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: inherit;
    font-family: 'Amatic SC', serif;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

h1 {
    font-size: 2.75rem;
    line-height: 3rem;
    margin: 0 0 1.25rem 0;
}

h2 {
    font-size: 2.75rem;
    line-height: 3rem;
    margin: 0 0 1.25rem 0;
}

h3 {
    font-size: 2.5rem;
    line-height: 2.75rem;
}

h4 {
    font-size: 2rem;
    line-height: 2.25rem;
    margin: 0 0 .3125rem 0;
} 

h5 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin: 0 0 .3125rem 0;
}

h6 {
    font-size: 1.25rem;
    line-height: inherit;
    margin: 0;
}

p {
    margin: 0 0 1.25rem 0;
}



/****** Content ******/

.content {
    padding: 6.25rem 1.25rem;
    width: 100%;
}

.content-section {
    margin: 0 auto 6.25rem auto;
    max-width: 70rem;
    width: 100%;
}

.content-section:last-child {
    margin: 0 auto;
}

.content-section p:last-child {
    margin: 0;
}

.content-heading {
    margin: 0 auto;
    max-width: 70rem;
    width: 100%;
}

.content-button {
    border: .0625rem solid rgba(167, 143, 88, 1);
    display: block;
    margin: 6.25rem auto;
    padding: .625rem 1.25rem;
    text-align: center;
    width: fit-content;
}



/****** Featured post ******/

.featured-post-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-areas: "image post" "image posted-in";
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

@media (max-width:48em) {
    .featured-post-grid {
        gap: 1.25rem;
        grid-template-areas: "post" "image" "posted-in";
        grid-template-columns: 1fr;
    }
}

.featured-post-copy {
    grid-area: post;
    padding: 1.25rem 0 0 0;
    width: 100%;
}

@media (max-width:48em) {
    .featured-post-copy {
        padding: 0;
    }
}

.featured-post-figure {
    grid-area: image;
    overflow: hidden;
    padding: 1.25rem;
    transition: .4s all;
    width: 100%;
}

@media (max-width:48em) {
    .featured-post-figure {
        padding: .625rem;
    }
}

.featured-post-figure:hover {
    padding: 0;
}

.featured-post-image {
    height: auto;
    width: 100%;
}

.featured-post-posted-in {
    grid-area: posted-in;
}



/****** Listing ******/

.flex-box {
    align-items: stretch;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    width: 100%;
}

.listing {
    flex: 1 1 calc(30% - 1.25rem);
    max-width: calc(33.3333% - 1.25rem);
}

@media (max-width:64em) {
    .listing {
        border: none;
        flex: 1 1 calc(40% - 1.25rem);
        max-width: calc(50% - 1.25rem);
        padding: 0 0 3.125rem 0;
    }
}

@media (max-width:48em) {
    .listing {
        border: none;
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.listing-grid {
    display: grid;
    gap: .625rem;
    grid-template-areas: "image" "header" "introduction";
    grid-template-columns: auto;
    grid-template-rows: auto auto;
}

@media (max-width:48em) {
    .listing-grid {
        grid-template-areas: "header header" "image introduction";
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
}

.listing-figure {
    grid-area: image;
    height: fit-content;
    overflow: hidden;
    padding: .625rem;
    transition: .4s all;
    width: 100%;
}

@media (max-width:48em) {
    .listing-figure {
        padding: .3125rem;
    }
}

.listing-figure:hover {
    overflow: hidden;
    padding: 0;
}

.listing-image {
    display: block;
    height: auto;
    width: 100%;
}

.listing-header {
    grid-area: header;
}

.listing-header h3 {
    margin: 0;
}

.listing-introduction {
    grid-area: introduction;
}

.listing-categories {
    margin: auto;
}

.listing-footer {
    margin: auto;
    padding: 3.125rem 0 0 0;
    width: 100%;
}

.section-categories {
    margin: 0 auto 3.125rem auto;
}



/****** blog post ******/

.file-icon {
    height: 1.25rem;
    fill:rgba(64, 64, 64, 1);
    position: relative;
    top: .25rem;
    width: auto;
}

a:hover .file-icon {
    fill:rgba(167, 143, 88, 1);
}

.asset-download-button {
    display: block;
    margin: 0 auto;
}

.asset-download-button:hover {
    color:rgba(167, 143, 88, 1);
}

.asset-download-button:hover .file-icon {
    fill:rgba(167, 143, 88, 1);
}

.blog-post-figure {
    grid-area: image;
    height: fit-content;
    padding: 0;
    margin: 0 auto 3.125rem auto;
    transition: .4s all;
    width: 100%;
}

.blog-post-image {
    display: block;
    height: auto;
    width: 100%;
}

.blog-post-caption {
    border-top: .0625rem solid rgba(26, 33, 34, 1);
    margin: 1.25rem 0 0 0;
    padding: .625rem 0 0 0;
}



/****** Product Listing ******/

.alternate-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-areas: "image details";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    width: 100%;
}

.alternate-grid:nth-child(even) {
    grid-template-areas: "details image";
}

@media (max-width:48em) {
    .alternate-grid {
        gap: 1.25rem;
        grid-template-areas: "image" "details";
        grid-template-columns: 1fr;
    }

    .alternate-grid:nth-child(even) {
        grid-template-areas: "image" "details";
    }
}

.product-listing {
    grid-area: details;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-listing-figure {
    grid-area: image;
}

.product-listing-image {
    height: auto;
    width: 100%;
}



/****** Footer ******/

.footer {
    display: grid;
    gap: 1.25rem;
    grid-template-areas: "header header header header header" "column-one column-two column-three column-four logo-footer";
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding: 3.125rem;
    text-align: center;
    width: 100%;
}

@media (max-width:48rem) {
    .footer {
        grid-template-areas: "header header" "column-one column-two" "column-three column-four" "logo-footer logo-footer";
        grid-template-columns: 1fr 1fr;
        padding: 1.25rem;
        width: 100%;
    }
}

.footer ul li a {
    font-size: 1rem;
}

.footer ul li a:hover {
    color: rgba(167, 143, 88, 1);
}

.footer-header {
    grid-area: header;
}

.footer-column-one {
    grid-area: column-one;
    text-align: left;
    width: 100%;
}

.footer-column-two {
    grid-area: column-two;
    text-align: left;
    width: 100%;
}

.footer-column-three {
    grid-area: column-three;
    text-align: left;
    width: 100%;
}

.footer-column-four {
    grid-area: column-four;
    text-align: left;
    width: 100%;
}

.footer-column-five {
    align-self: center;
    grid-area: logo-footer;
    text-align: right;
    width: 100%;
}

@media (max-width:48rem) {
    .footer-column-five {
        text-align: center;
    }
}

.footer-logo-image {
    display: block;
    height: auto;
    margin: 0 auto;
    width: 60%;
}

@media (max-width:48rem) {
    .footer-logo-image {
        height: auto;
        width: 40%;
    }
}

.footer-logo-small {
    display: block;
    margin: 1.25rem auto 0 auto;
    width: 40%;
}

@media (max-width:48rem) {
    .footer-logo-small {
        height: auto;
        width: 20%;
    }
}



/****** Header ******/

.header {
    background: rgba(255, 255, 255, 1);
    display: grid;
    grid-column-gap: 1.25rem;
    grid-template-areas: "logo navigation";
    grid-template-columns: auto auto;
    height: 4.375rem;
    padding: .625rem 1.25rem;
    width: 100%;
}

@media (max-width:48rem) {
    .header {
        padding: .625rem 1.25rem;
        height: 3.875rem;
    }
}

.header-logo {
    align-self: center;
    grid-area: logo;
    justify-self: left;
    height: 100%;
    text-align: left;
}

.header-logo-image {
    height: 100%;
    margin: 0 auto 0 0;
    width: auto;
}

@media (max-width:48rem) {
    .header-logo-image {
        height: auto;
        max-width: 10rem;
        width: 100%;
    }
}



/****** Navigation ******/

.navigation {
    align-self: center;
    grid-area: navigation;
    justify-self: right;
    text-align: right;
    text-transform: uppercase;
    width: 100%;
}

.navigation--list {
    list-style-type: none;
    text-align: right;
}

@media (max-width:48rem) {
    .navigation--list {
        display: none;
    }
}

.navigation--list-item {
    display: inline-block;
    margin: 0 .625rem;
}

.navigation--list-item:first-child {
    margin: 0 .625rem 0 0;
}

.navigation--list-item:last-child {
    margin: 0 0 0 .625rem;
}

.navigation-mobile {
    background: rgba(255, 255, 255, 1);
    display: none;
}

.navigation-mobile--list {
    margin: 0 0 1.25rem 0;
    width: 100%;
}

@media (min-width:48rem) {
    .navigation-mobile-list {
        display: none;
    }
}

.navigation-mobile-list-item {
    padding: .625rem 1.25rem .5rem 1.25rem;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.burger {
    align-self: center;
    cursor: pointer;
    display: none;
    fill: rgba(26, 33, 34, 1);
    grid-area: navigation;
    height: 1.25rem;
    justify-self: right;
    margin: 0 0 0 auto;
    text-align: right;
    width: auto;
}

.burger:hover {
    fill: rgba(167, 143, 88, 1);
}

@media (max-width:48rem) {
    .burger {
        display: block;
    }
}

.cross {
    align-self: center;
    cursor: pointer;
    display: none;
    fill: rgba(26, 33, 34, 1);
    grid-area: navigation;
    height: 1.25rem;
    justify-self: right;
    margin: 0 0 0 auto;
    position: relative;
    text-align: right;
    top: .25rem;
    width: auto;
}

.cross:hover {
    fill: rgba(167, 143, 88, 1);
}

@media (min-width:48rem) {
    .cross {
        display: none !important;
    }
}



/****** Social Media Icons ******/

.social-media {
    background: rgba(255, 255, 255, 1);
    padding: 0 1.25rem 6.25rem 1.25rem;
    text-align: center;
    width: 100%;
}

.social-media-container {
    max-width: 40rem;
    margin: 0 auto;
    width: 100%;
}

.social-media--link {
    display: inline-block;
    height: 2.25rem;
    margin: 0 1.25rem 0 0;
    width: auto;
}

.social-media--link:last-child {
    margin: 0;
}

.social-media--logo {
    display: inline-block;
    fill: rgba(26, 33, 34, 1);
    height: 100%;
    width: auto;
}

.social-media--logo:hover {
    fill: rgba(167, 143, 88, 1);
}



/****** Newsletter ******/

.newsletter {
    background:  rgba(255, 255, 255, 1);
    padding: 6.25rem 1.25rem 1.25rem 1.25rem;
    text-align: center;
    width: 100%;
}

.newsletter-container {
    margin: 0 auto;
    max-width: 40rem;
    width: 100%;
}

.newsletter-grid {
    display: grid;
    grid-column-gap: .625rem;
    grid-template-areas: "newsletter-input newsletter-submit";
    grid-template-columns: 2fr 1fr;
}

@media (max-width:48rem) {
    .newsletter-grid {
        grid-row-gap: .625rem;
        grid-template-areas: "newsletter-input" "newsletter-submit";
        grid-template-columns: auto;
    }
}

.newsletter-email {
    border: .0625rem solid rgba(26, 33, 34, 1);
    border-radius: 0;
    font-family: 'Oswald', sans-serif;
    grid-area: newsletter-input;
    letter-spacing: .09375rem;
    padding: .3125rem .625rem;
    transition: .4s all;
    width: 100%;
}

.newsletter-email:focus {
    border: .0625rem solid rgba(167, 143, 88, 1);
    color: rgba(167, 143, 88, 1);
}

.newsletter-response {
    color: rgba(228, 82, 21 0);
    font-family: 'Oswald', sans-serif;
}

.newsletter-button {
    background: transparent;
    border: .0625rem solid rgba(26, 33, 34, 1);
    border-radius: 0;
    color: rgba(26, 33, 34, 1);
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-weight: inherit;
    grid-area: newsletter-submit;
    letter-spacing: .09375rem;
    padding: .3125rem 2.25rem;
    text-align: center;
    text-transform: uppercase;
    transition: .4s all;
}

.newsletter-button:hover {
    border: .0625rem solid rgba(167, 143, 88, 1);
    color: rgba(167, 143, 88, 1);
}

@media (max-width:48rem) {
    .newsletter-button {
        margin: 0 auto;
        padding: .5rem 2.25rem;
        width: 100%
    }
}



/****** Linktree ******/

.linktree {
    align-items: stretch;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    margin: 0 auto;
    max-width: 48rem;
    width: 100%;
}

.linktree-listing {
    border: none;
    flex: 1 1 100%;
    max-width: 100%;
    padding: 3.125rem 0 0 0;
}

.linktree-listing-grid {
    display: grid;
    gap: .625rem;
    grid-template-areas: "header header" "image introduction";
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto;
}

.linktree-button {
    background: transparent;
    border: .0625rem solid rgba(26, 33, 34, 1);
    display: block;
    padding: .3125rem 1.25rem;
    text-align: center;
    text-transform: uppercase;
    transition: .4s all;
    margin: 0 auto;
    max-width: 48rem;
    width: 100%;
}

.linktree-button:hover {
    border: .0625rem solid rgba(167, 143, 88, 1);
    color: rgba(167, 143, 88, 1);
}

.linktree-listing-figure {
    grid-area: image;
    height: fit-content;
    overflow: hidden;
    padding: .625rem;
    transition: .4s all;
    width: 100%;
}

@media (max-width:48em) {
    .linktree-listing-figure {
        padding: .3125rem;
    }
}

.linktree-listing-figure:hover {
    overflow: hidden;
    padding: 0;
}

.linktree-listing-image {
    display: block;
    height: auto;
    width: 100%;
}

.linktree-listing-header {
    grid-area: header;
}

.linktree-listing-header h3 {
    margin: 0;
}

.linktree-listing-introduction {
    grid-area: introduction;
}

.linktree-logo {
    padding: .625rem 1.25rem;
    height: 4.375rem;
    text-align: center;
    width: 100%;
}

.linktree-logo-image {
    height: 100%;
    margin: 0 auto;
    width: auto;
}



/****** Global classes ******/

.black {
    color: rgba(26, 33, 34, 1);
}

.dark-grey {
    color: rgba(0, 0, 0, .75);
}

.mid-grey {
    color: rgba(0, 0, 0, .5);
}

.light-grey {
    color: rgba(0, 0, 0, .25);
}

.white {
    color: rgba(235, 235, 235, 1);
}

.gold {
    color: rgba(167, 143, 88, 1);
}

.black-bg {
    background: rgba(26, 33, 34, 1);
}

.dark-grey-bg {
    background: rgba(0, 0, 0, .75);
}

.mid-grey-bg {
    background: rgba(0, 0, 0, .5);
}

.light-grey-bg {
    background: rgba(0, 0, 0, .25);
}

.white-bg {
    background: rgba(235, 235, 235, 1);
}

.gold-bg {
    background: rgba(167, 143, 88, 1);
}

.standard-width {
    margin: auto;
    max-width: 70rem;
    width: 100%;
}

.full-width {
    margin: inherit auto inherit auto;
    max-width: none;
    width: 100%;
}

.half-width {
    margin: inherit auto;
    max-width: 41.75rem;
    width: 100%;
}

.padded-box {
    padding: 3.125rem;
}

@media (max-width:48em) {
    .padded-box {
        padding: 1.25rem;
    }
}

.centered {
    text-align: center;
}

.divider {
    border-bottom: .0625rem solid rgba(26, 33, 34, 1);
    margin: 0 0 .625rem 0;
}

.small {
    font-size: .875rem;
}

.spacer {
    margin-bottom: 1.25rem;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

.button {
    background: transparent;
    border: .0625rem solid rgba(26, 33, 34, 1);
    border-radius: 0;
    color: rgba(26, 33, 34, 1);
    cursor: pointer;
    display: block;
    font-family: 'Oswald', sans-serif;
    font-weight: inherit;
    grid-area: newsletter-submit;
    letter-spacing: .09375rem;
    margin: 0 auto;
    padding: .125rem 2.25rem;
    text-align: center;
    text-transform: uppercase;
    transition: .4s all;
    width: fit-content;
}

.button:hover {
    border: .0625rem solid rgba(167, 143, 88, 1);
    color: rgba(167, 143, 88, 1);
}

.no-margin-bottom {
    margin-bottom: 0;
}