#about-container {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    color: #f0f0f0;
    font-family: "Source Sans 3", sans-serif;
}

.about-text {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    row-gap: 1.5rem;
}

#photo-container img {
    width: 100%;
}

#socials {
    display: flex;
    column-gap: 1rem;
    margin-block: 2rem;
    font-family: "Cinzel", serif;
}

#socials a {
    color: var(--color-base);
    line-height: 1;
    letter-spacing: 0.05em;
    transition: 0.3s ease-out;
}

#socials a:hover,
#socials a:active {
    color: var(--color-active);
}

.separator {
    height: 100%;
    width: 1px;
    background-color: var(--color-base);
    height: 1rem;
}

#about-container h1 {
    margin-bottom: 1.8rem;
    text-transform: uppercase;
}

#about-container h1 span {
    position: relative;
    display: inline-block;
}

#about-container h1 span::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 0;
    right: 0;
    height: 0.25rem;
    background:
        linear-gradient(rgba(173, 146, 119, 0.5), rgba(173, 146, 119, 0.5)) 0 0 / 0.25rem 0.0625rem no-repeat,
        linear-gradient(rgba(173, 146, 119, 0.5), rgba(173, 146, 119, 0.5)) 0 0 / 0.0625rem 0.25rem no-repeat,
        linear-gradient(rgba(173, 146, 119, 0.5), rgba(173, 146, 119, 0.5)) 100% 0 / 0.25rem 0.0625rem no-repeat,
        linear-gradient(rgba(173, 146, 119, 0.5), rgba(173, 146, 119, 0.5)) 100% 0 / 0.0625rem 0.25rem no-repeat;
}

#about-container h1 span::after {
    content: '';
    position: absolute;
    bottom: 0.75rem;
    left: 0;
    right: 0;
    height: 0.25rem;
    background:
        linear-gradient(rgba(173, 146, 119, 0.5), rgba(173, 146, 119, 0.5)) 0 100% / 0.25rem 0.0625rem no-repeat,
        linear-gradient(rgba(173, 146, 119, 0.5), rgba(173, 146, 119, 0.5)) 0 100% / 0.0625rem 0.25rem no-repeat,
        linear-gradient(rgba(173, 146, 119, 0.5), rgba(173, 146, 119, 0.5)) 100% 100% / 0.25rem 0.0625rem no-repeat,
        linear-gradient(rgba(173, 146, 119, 0.5), rgba(173, 146, 119, 0.5)) 100% 100% / 0.0625rem 0.25rem no-repeat;
}

@media (min-width: 1024px) {
    #about-container h1 span::before {
        top: 0.125rem;
    }

    #about-container h1 span::after {
        bottom: 0.375rem;
    }
}

@media (min-width: 1280px) {
    main#content {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        column-gap: 3.75rem;
        max-height: 100vh;
        padding-right: 1rem;
    }

    #photo-container {
        height: 100%;
        aspect-ratio: 1065 / 1983;
        flex-shrink: 0;
    }

    #photo-container img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    #about-container {
        padding-block: 5rem;
        max-width: 31.875rem;
        display: flex;
        flex-direction: column;
    }

    #about-container h1 {
        flex-shrink: 0;
        margin-bottom: 2rem;
    }

    .about-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }


    #socials {
        margin-top: 1.5rem;
    }

    #socials a {
        font-size: 1.2rem;
        letter-spacing: normal;
    }

    #about-container h1 span::before {
        top: 0.1875rem;
    }

    #about-container h1 span::after {
        bottom: 0.4375rem;
    }
}