/*
 * emailengine.app — site stylesheet
 *
 * Hand-written replacement for the Umso-generated CSS. Values (colors,
 * font sizes, spacing, breakpoints) mirror the original design so the
 * site renders the same as the hosted version.
 */

/* ------------------------------------------------------------------ */
/* Design tokens                                                       */
/* ------------------------------------------------------------------ */

:root {
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-mono: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
    --font-title: "Josefin Sans", sans-serif;

    --color-text: rgba(40, 40, 40, 1);
    --color-accent: rgb(64, 126, 201);
    --color-link: rgb(64, 126, 201);
    --color-link-hover: rgb(36, 77, 127);
    --color-link-hover-bg: rgba(64, 126, 201, 0.05);
    --color-check: #22bc66;
    --color-box-bg: #f5f5f5;
    --color-footer-bg: #fafafa;

    --container-max: 1200px;
    --header-height: 71px; /* 50px bar + 2 x 10px margin + 1px border */
    --btn-radius: 20px;
    --title-scale: 1;
}

@media only screen and (max-width: 750px) {
    :root {
        --title-scale: 0.7;
    }
}

/* ------------------------------------------------------------------ */
/* Base                                                                */
/* ------------------------------------------------------------------ */

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    /* keep anchor targets clear of the fixed header */
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    background-color: #fff;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img {
    border-style: none;
}

b,
strong {
    font-weight: 600;
}

mark {
    background-color: rgba(255, 235, 0, 1);
}

a {
    color: var(--color-link);
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    color: var(--color-link);
    text-decoration: underline;
}

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

/* ------------------------------------------------------------------ */
/* Layout                                                              */
/* ------------------------------------------------------------------ */

.container {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: var(--container-max);
    padding: 0 30px;
    position: relative;
    width: 100%;
}

@media only screen and (max-width: 700px) {
    .container {
        padding: 0 15px;
    }
}

.section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100vw;
    overflow: hidden;
    padding: 60px 0;
    position: relative;
}

.section--flush {
    padding: 0;
}

.section--tight {
    padding: 50px 0;
}

/* Consecutive sections often collapse the shared edge */
.section--pt0 {
    padding-top: 0;
}

.section--pb0 {
    padding-bottom: 0;
}

/* Text section leading directly into a full-width figure */
.section--pb12 {
    padding-bottom: 12px;
}

.section--blue {
    background-color: var(--color-accent);
    color: #fff;
}

.section--blue a:not(.btn) {
    color: rgba(186, 186, 245, 1);
}

.section-title {
    font-family: var(--font-title);
    font-size: calc(2.7em * var(--title-scale));
    font-weight: 600;
    line-height: 1.3em;
    margin: 0;
    text-align: center;
}

.section-title--spaced {
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 1.5em;
    font-weight: 400;
    margin: 0;
    text-align: center;
}

.section-subtitle--spaced {
    margin-bottom: 50px;
}

.section-title--left,
.section-subtitle--left {
    text-align: left;
}

/* Product Hunt badge row under the hero */
.producthunt {
    padding-bottom: 40px;
    text-align: center;
}

/* Testimonials heading block sits directly on top of the widget box */
.section--testimonials {
    padding-bottom: 0;
}

/* Grey rounded box used for the "who benefits" and testimonial areas */
.box {
    background: var(--color-box-bg);
    border-radius: 8px;
    box-sizing: border-box;
    padding: 2.5em 3em;
    width: 100%;
}

/* ------------------------------------------------------------------ */
/* Buttons                                                             */
/* ------------------------------------------------------------------ */

.btn {
    align-items: center;
    background: transparent;
    border: none;
    border-radius: var(--btn-radius);
    box-shadow: inset 0 0 0 1px;
    box-sizing: border-box;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    font-family: var(--font-body);
    font-size: 1.05em;
    font-weight: 500;
    justify-content: center;
    line-height: 1;
    margin: 0;
    outline: none;
    padding: 0.7em 0.8em;
    position: relative;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.btn:hover {
    background: transparent;
    box-shadow: inset 0 0 0 2px;
    text-decoration: none;
}

.btn--primary {
    background: var(--color-text);
    box-shadow: none;
    color: #fff;
}

.btn--primary:hover {
    background: var(--color-text);
    box-shadow: 0 4px 10px 0 rgba(50, 50, 93, 0.226), 0 1px 3px 0 rgba(0, 0, 0, 0.08);
}

/* On blue backgrounds the roles invert: outline turns white, primary
   becomes a white pill with dark text */
.section--blue .btn {
    color: #fff;
}

.section--blue .btn--primary {
    background: #fff;
    color: var(--color-text);
}

.btn--large {
    font-size: 1.2em;
}

.btn svg:first-child {
    margin-right: 0.4em;
}

.btn svg:last-child {
    margin-left: 0.4em;
}

.btn-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.btn-row .btn {
    margin: 5px;
}

@media only screen and (max-width: 750px) {
    .btn-row {
        justify-content: center;
        text-align: center;
    }
}

/* ------------------------------------------------------------------ */
/* Header                                                              */
/* ------------------------------------------------------------------ */

.site-header {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 500;
}

.site-header__bar {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    height: 50px;
    margin: 10px auto;
    padding: 10px 30px;
}

.site-header__logo {
    align-items: center;
    display: flex;
    margin-right: auto;
}

.site-header__links {
    display: flex;
}

.site-header__links > a {
    align-items: center;
    display: flex;
    font-size: 1.1em;
    padding: 0 20px;
    white-space: nowrap;
}

.site-header__links > a:hover {
    color: var(--color-link-hover);
    text-decoration: underline;
}

.site-header__cta {
    font-size: 15px;
    margin-left: 20px;
    white-space: nowrap;
}

@media only screen and (max-width: 900px) {
    .site-header__links > a {
        padding: 0 10px;
    }
}

/* Mobile navigation drawer (CSS-only, driven by the checkbox) */

.nav-toggle {
    display: none;
}

.nav-burger {
    cursor: pointer;
    display: none;
    height: 40px;
    margin-top: 3px;
    overflow: hidden;
    position: relative;
    text-indent: -9999px;
    width: 40px;
}

.nav-burger::before,
.nav-burger::after {
    border-radius: 2px;
    box-shadow: inset 0 0 0 3px, 0 9px 0 0;
    content: "";
    height: 4px;
    left: 5px;
    position: absolute;
    right: 5px;
    top: 9px;
    width: 27px;
}

.nav-burger::after {
    box-shadow: inset 0 0 0 3px;
    top: 27px;
}

.mobile-menu {
    bottom: 0;
    display: none;
    left: 0;
    overflow: auto;
    padding: 10px 15px;
    position: fixed;
    right: 0;
    top: 0;
}

.mobile-menu__backdrop {
    bottom: 0;
    cursor: default;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
}

.mobile-menu__panel {
    animation: menu-drop 0.15s ease-out;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 50px 100px -12px rgba(0, 0, 0, 0.15), 0 30px 60px -30px rgba(0, 0, 0, 0.08),
        0 0 20px rgba(0, 0, 0, 0.1);
    float: right;
    list-style: none;
    margin: 50px 0 10px;
    max-width: 400px;
    padding: 0;
    position: relative;
    width: 100%;
}

@keyframes menu-drop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu__panel li {
    border-bottom: 1px solid rgba(148, 148, 148, 0.13);
}

.mobile-menu__panel li:last-child {
    border-bottom: none;
}

.mobile-menu__panel a {
    align-items: center;
    color: inherit;
    display: flex;
    font-size: 16px;
    justify-content: space-between;
    padding: 14px 22px;
    text-decoration: none;
}

.mobile-menu__panel a:hover {
    background-color: var(--color-link-hover-bg);
    color: var(--color-link-hover);
    text-decoration: none;
}

@media only screen and (max-width: 940px) {
    .site-header__links,
    .site-header__cta {
        display: none;
    }

    .nav-burger {
        display: block;
    }

    .nav-toggle:checked ~ .mobile-menu {
        display: block;
        z-index: 600;
    }
}

/* Spacer that keeps page content clear of the fixed header */
.header-spacer {
    display: block;
    flex-shrink: 0;
    height: var(--header-height);
    width: 100%;
}

/* ------------------------------------------------------------------ */
/* Hero and feature splits                                             */
/* ------------------------------------------------------------------ */

/* Two-half section: text on one side, product mockup on the other */
.split {
    display: flex;
    position: relative;
    text-align: left;
    width: 100vw;
}

.split__half {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    padding: 50px 0;
    width: 50%;
}

.split__half:last-child {
    justify-content: flex-start;
}

.split__text {
    z-index: 4;
    max-width: 570px;
}

.split__half:first-child .split__text {
    margin-left: 30px;
}

.split__half:last-child .split__text {
    margin-right: 30px;
}

.split__media {
    padding-left: 50px;
    padding-right: 50px;
}

.split .section-title,
.split .section-subtitle {
    text-align: left;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 3.5em;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 17px;
    white-space: pre-line;
}

.hero-subtitle {
    font-size: 1.5em;
    font-weight: 400;
    margin: 0;
    max-width: 500px;
    white-space: pre-line;
}

@media only screen and (max-width: 750px) {
    .split {
        flex-direction: column;
        min-height: auto;
        text-align: center;
    }

    .split--reverse {
        flex-direction: column-reverse;
    }

    .split__half {
        justify-content: center !important;
        width: 100%;
    }

    .split__text {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: none !important;
        padding: 0 30px;
    }

    .split__media {
        max-height: 500px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .split .section-title,
    .split .section-subtitle,
    .hero-title,
    .hero-subtitle {
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto;
    }
}

@media only screen and (max-width: 700px) {
    .hero-title {
        font-size: 28pt;
    }

    .hero-subtitle {
        font-size: 14pt;
    }
}

/* Product mockups: a screenshot inside a browser SVG frame */

.frame {
    position: relative;
    z-index: 3;
}

.frame > svg {
    display: block;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.33));
    max-height: 100%;
    max-width: 100%;
    width: 100%;
}

.frame__screen {
    overflow: hidden;
    position: absolute;
}

.frame__screen img {
    height: 100%;
    object-fit: cover;
    object-position: top;
    width: 100%;
}

.frame--browser {
    min-width: 500px;
    width: 800px;
}

.frame--browser > .frame__screen {
    border-radius: 0 0 5px 5px;
    bottom: 0;
    left: 0;
    right: 0;
    top: 5.7%;
}

/* Plain image mockup (e.g. the portrait on the about page) */
.frame--image {
    border-radius: 5px;
    overflow: hidden;
}

.frame--image > img {
    display: block;
    max-height: 800px;
    max-width: 100%;
}

@media only screen and (max-width: 500px) {
    .frame--browser {
        min-width: 0;
    }
}

/* Checkmark rows below feature descriptions */

.checklist {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.15em;
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
}

.checklist__item {
    align-items: center;
    display: flex;
    margin-bottom: 18px;
    margin-right: 18px;
}

.checklist__item:last-child {
    margin-right: 0;
}

/* green checkmark drawn in CSS so the markup stays clean */
.checklist__item::before {
    background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2021%2017'%3E%3Cpolygon%20fill='%2322BC66'%20points='0,9.4%207,16.42%2020.41,3%2017.59,0.16%206.99,10.75%202.83,6.59'/%3E%3C/svg%3E")
        no-repeat center / contain;
    content: "";
    flex-shrink: 0;
    height: 17px;
    margin-right: 5px;
    width: 21px;
}

@media only screen and (max-width: 750px) {
    .checklist {
        justify-content: center;
    }
}

/* Titled points with descriptions (about page) */

.point {
    display: flex;
    margin-top: 30px;
    max-width: 600px;
}

.point__title {
    font-size: 1.25em;
    font-weight: 500;
    margin: 0;
}

.point__body {
    font-size: 1.15em;
    text-align: left;
}

.point__body p {
    margin: 0;
}

/* Newsletter subscribe form (hero) */

.newsletter {
    display: flex;
    flex-wrap: wrap;
    margin: 25px -5px 0;
}

.newsletter__input {
    -webkit-appearance: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--btn-radius);
    box-sizing: border-box;
    display: inline-block;
    font-size: 1.1em;
    height: 40px;
    margin: 5px;
    min-width: 0;
    outline: none;
    padding: 0 12px;
    width: 220px;
}

.newsletter .btn {
    height: 40px;
    margin: 5px;
    padding-bottom: 0;
    padding-top: 0;
    white-space: nowrap;
}

@media only screen and (max-width: 750px) {
    .newsletter {
        justify-content: center;
    }

    .newsletter__input {
        text-align: center;
    }
}

/* ------------------------------------------------------------------ */
/* CTA band with wave divider (Download section)                       */
/* ------------------------------------------------------------------ */

.section--cta {
    padding-bottom: 108px;
    padding-top: 60px;
}

.section--cta .container {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section--cta .section-title {
    margin-top: 0;
}

.cta-titles {
    margin-bottom: 20px;
}

.wave {
    align-items: flex-end;
    bottom: 0;
    display: flex;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    right: 0;
}

.wave svg {
    min-width: 800px;
    transform: translateY(1px);
    width: 100vw;
    z-index: 2;
}

/* ------------------------------------------------------------------ */
/* FAQ                                                                 */
/* ------------------------------------------------------------------ */

.faq {
    column-count: 2;
    column-gap: 50px;
    margin: 0 auto -30px;
    max-width: 800px;
}

.box .faq {
    margin-bottom: 0;
    max-width: none;
}

.faq-item {
    display: inline-block;
    margin-bottom: 30px;
    overflow: hidden;
    width: 100%;
}

.faq-item h3 {
    font-size: 1.25em;
    font-weight: 600;
    margin: 0;
}

.faq-item p {
    font-size: 1.15em;
    margin: 0;
}

@media only screen and (max-width: 500px) {
    .faq {
        column-count: 1;
    }
}

/* ------------------------------------------------------------------ */
/* Prose (markdown-style article content)                              */
/* ------------------------------------------------------------------ */

.prose {
    font-size: 1.2em;
    line-height: 1.5;
    overflow-wrap: break-word;
    text-align: left;
}

.prose > :first-child {
    margin-top: 0;
}

.prose > :last-child {
    margin-bottom: 0;
}

.prose p,
.prose ol,
.prose ul,
.prose pre,
.prose table,
.prose blockquote {
    margin-bottom: 16px;
    margin-top: 0;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4 {
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 16px;
    margin-top: 24px;
}

.prose h1 {
    font-size: 2em;
}

.prose h1,
.prose h2 {
    border-bottom: 1px solid;
    padding-bottom: 0.3em;
}

.prose h2 {
    font-size: 1.5em;
}

.prose h3 {
    font-size: 1.25em;
}

.prose h4 {
    font-size: 1em;
}

.prose a {
    color: var(--color-link);
    text-decoration: underline;
}

.prose strong {
    font-weight: 600;
}

.prose ol,
.prose ul {
    padding-left: 2em;
}

.prose ol ol,
.prose ol ul,
.prose ul ol,
.prose ul ul {
    margin-bottom: 0;
    margin-top: 0;
}

.prose li + li {
    margin-top: 0.25em;
}

.prose li > p {
    margin-top: 16px;
}

.prose code {
    background-color: rgba(27, 31, 35, 0.05);
    border-radius: 3px;
    font-family: var(--font-mono);
    font-size: 85%;
    margin: 0;
    padding: 0.2em 0.4em;
}

.prose pre {
    background-color: hsla(0, 0%, 89%, 0.4);
    border-radius: 3px;
    font-family: var(--font-mono);
    font-size: 85%;
    line-height: 1.45;
    overflow: auto;
    padding: 16px;
    word-wrap: normal;
}

.prose pre code {
    background-color: transparent;
    border: 0;
    display: inline;
    font-size: 100%;
    line-height: inherit;
    margin: 0;
    overflow: visible;
    padding: 0;
    white-space: pre;
    word-break: normal;
}

.prose blockquote {
    border-left: 0.25em solid;
    margin-left: 0;
    margin-right: 0;
    opacity: 0.8;
    padding: 0 1em;
}

.prose blockquote > :first-child {
    margin-top: 0;
}

.prose blockquote > :last-child {
    margin-bottom: 0;
}

.prose hr {
    background-color: rgba(0, 0, 0, 0.3);
    border: 0;
    height: 0.25em;
    margin: 24px 0;
    padding: 0;
}

.prose img {
    background-color: #fff;
    box-sizing: content-box;
    max-width: 100%;
}

.prose table {
    border-collapse: collapse;
    border-spacing: 0;
    display: block;
    overflow: auto;
    width: 100%;
}

.prose table th {
    font-weight: 600;
}

.prose table td,
.prose table th {
    border: 1px solid;
    padding: 6px 13px;
}

/* ------------------------------------------------------------------ */
/* Docs sections                                                       */
/* ------------------------------------------------------------------ */

/* Page title block at the top of every docs page */
.page-title h1 {
    margin-bottom: 0;
}

/* Two-column docs section: heading on the left, prose on the right */
.docs-cols {
    display: flex;
}

/* content-box on purpose: the 5% padding comes on top of the 30% width */
.docs-cols__title {
    flex: 0 0 auto;
    padding-right: 5%;
    width: 30%;
}

.docs-cols__title .section-title {
    text-align: left;
}

.docs-cols__body {
    min-width: 0;
    width: 100%;
}

@media only screen and (max-width: 750px) {
    .docs-cols {
        flex-direction: column;
    }

    .docs-cols__title {
        padding-right: 0;
        width: 100%;
    }

    .docs-cols__title .section-title {
        text-align: center;
    }
}

/* Centered media figure (screenshots, diagrams) */

.media-figure {
    margin: 0;
    text-align: center;
}

.media-figure img {
    display: block;
    max-width: 100%;
    width: 100%;
}

/* Gallery of image cards */

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px -30px;
}

.gallery__item {
    background: #fff;
    box-sizing: border-box;
    margin: 0 15px 30px;
    min-width: 260px;
    overflow: hidden;
    width: calc(33.33% - 30px);
}

.gallery--2 .gallery__item {
    width: calc(50% - 30px);
}

.gallery__item > a {
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
}

.gallery__media {
    height: 200px;
}

.gallery__media img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.gallery__meta {
    padding: 20px;
}

.gallery__meta h3 {
    font-size: 1.4em;
    font-weight: 400;
    margin: 0 0 10px;
}

.gallery__meta p {
    font-size: 1.24em;
    margin: 0;
}

/* Icon feature columns (OAuth2 configuration chooser) */

.icon-features {
    display: flex;
    justify-content: space-between;
    margin: 0;
}

.icon-feature {
    box-sizing: border-box;
    margin: 0 25px;
    width: 33.33%;
}

.icon-feature:first-child {
    margin-left: 0;
}

.icon-feature:last-child {
    margin-right: 0;
}

.icon-feature__icon {
    display: block;
    height: 24px;
    margin-bottom: 20px;
    width: 24px;
}

.icon-feature h3 {
    font-size: 1.3em;
    font-weight: 500;
    margin: 0 0 8px;
}

.icon-feature p {
    font-size: 1.1em;
    line-height: 1.6em;
    margin: 3px 0 0;
}

@media only screen and (max-width: 760px) {
    .icon-features {
        flex-direction: column;
    }

    .icon-feature {
        margin: 0 0 50px;
        width: 100%;
    }

    .icon-feature:last-child {
        margin-bottom: 0;
    }
}

/* ------------------------------------------------------------------ */
/* About page: address and map                                         */
/* ------------------------------------------------------------------ */

.map-block {
    align-items: center;
    display: flex;
    justify-content: center;
    min-width: 100%;
}

.address {
    display: flex;
    flex-direction: column;
    margin: 0 auto 0 20px;
    max-width: 40%;
    min-height: 400px;
    padding-right: min(10px, 10%);
}

.address__name {
    font-size: 1.3em;
    font-weight: 700;
    margin: 20px 0 10px;
}

.address__street {
    font-size: 1.1em;
    margin: 5px 0;
}

.address__city {
    font-size: 1.1em;
    margin: 0 0 5px;
}

.address__note {
    margin-bottom: 10px;
    margin-top: 30px;
}

.address__note p {
    margin: 0;
}

.map {
    align-items: center;
    display: flex;
    max-height: 400px;
    max-width: 500px;
    position: relative;
}

.map img {
    height: 100%;
    width: 100%;
}

.map__marker {
    bottom: 48%;
    left: 50%;
    margin-left: -17px;
    max-height: 34px;
    max-width: 34px;
    position: absolute;
    z-index: 10;
}

.map__marker svg {
    transform: scale(0.75);
}

@media only screen and (max-width: 750px) {
    .map-block {
        flex-direction: column;
    }

    .address {
        margin-left: auto;
        margin-right: auto;
        max-width: 70%;
        min-height: 100%;
        padding-left: 0;
    }

    .address span {
        text-align: center;
    }

    .address__note {
        margin: 10px 0 0;
    }
}

/* ------------------------------------------------------------------ */
/* Footer                                                              */
/* ------------------------------------------------------------------ */

.site-footer {
    background-color: var(--color-footer-bg);
    padding: 15px 0;
}

.site-footer__inner {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    min-height: 54px;
}

.site-footer__meta {
    margin-right: 40px;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.site-footer__links a {
    color: inherit;
    margin: 0 8px;
}

.site-footer__social {
    display: flex;
    list-style-type: none;
    margin: 14px 0;
    padding-left: 0;
}

.site-footer__social li {
    margin-left: 20px;
}

.site-footer__social li:first-child {
    margin-left: 0;
}

.site-footer__social a {
    align-items: center;
    color: inherit;
    display: flex;
    height: 26px;
    width: 26px;
}

.site-footer__social svg {
    fill: currentColor;
    height: 26px;
    max-width: 26px;
}
