/* About Page Specific Styles */
.about-section {
    padding: 15vh 20px 100px;
    min-height: calc(100vh - 200px);
    /* Account for header/footer */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-header-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 15vw, 12rem);
    text-transform: uppercase;
    color: #666666;
    line-height: 1;
    letter-spacing: 5px;
    position: relative;
    z-index: 2;
}

/* Yellow corners for ABOUT */
.about-header-wrapper::before,
.about-header-wrapper::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 8px solid var(--secondary-color);
    z-index: 1;
}

.about-header-wrapper::before {
    top: -10px;
    left: -20px;
    border-right: none;
    border-bottom: none;
}

.about-header-wrapper::after {
    bottom: -10px;
    right: -20px;
    border-left: none;
    border-top: none;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 2;
    color: #777777;
    font-weight: 500;
    text-align: justify;
    text-align-last: center;
    /* keep center alignment overall visually */
}

/* Desktop layout matching the image - justify text is closest approximation */
@media screen and (min-width: 768px) {
    .about-content {
        text-align: justify;
        text-align-last: center;
    }
}

.highlight {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 2px 8px;
    font-weight: 600;
    display: inline-block;
}