:root {
    --text-color: #333333;
    --accent-color: #ca5215;
    --white: #ffffff;
}
body {
    margin: 0;
    color: var(--text-color);
    font-family: 'Mulish', sans-serif;
    font-size: 20px;
}
h1, h2 {
    font-family: 'Oswald', sans-serif;
}
hr.color-flag {
    color: var(--accent-color);
    position: relative;
    border: 1px solid;
    overflow: visible;
    margin-bottom: 30px;
}
hr.color-flag::after {
    content: "";
    position: absolute;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 8px solid var(--accent-color);
    left: 50%;
    margin-left: -8px;
}
.site-header {
    color: var(--white);
    background-image: url('sarah_header.jpg');
    background-size: cover;
    background-position: 50% 70%;
    text-align: center;
    padding: 75px 0 150px;
}
.social-icons {
    margin-top: 75px;
}
.social-icons i {
    color: var(--white);
    width: 1em;
    font-size: 25px;
    border: 1px solid;
    border-radius: 15px;
    padding: 0.5em;
    text-align: center;
}
.columns {
    margin: 50px auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
}
.left-column img {
    width: 100%;
    max-width: 320px;
    height: auto;
}
.right-column h2 {
    margin-top: -10px;
}
.site-footer {
    text-align: center;
    margin-top: 4em;
    margin-bottom: 3em;
}
.contact-block span:not(:last-child)::after {
    margin: 0 10px;
    content: "|";
}
.contact-block a {
    color: var(--accent-color);
}
/* ----------------------------- */
/* 📱 MOBILE OPTIMIZATION */
/* ----------------------------- */
@media (max-width: 768px) {

    .site-header {
        padding: 40px 0 80px;
        background-position: center;
    }
    .columns {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .right-column {
        margin: 20px;
        text-align: left;
    }
    .right-column ul {
        padding-left: 20px;
        list-style-position: inside;
    }
    .contact-block span {
        display: block;
        margin: 5px 0;
    }
    .contact-block span:not(:last-child)::after {
        content: "";
        margin: 0;
    }
}