.about-section {
    background-color: var();
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-section img {
    display: block;
    margin: 20px;
    max-width: 100%;
}

.about-video {
    border-radius: 30px;
    margin-top: 30px;
    width: 100%;
    height: auto;
    max-width: 600px;
}

.about_story_setting {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-content-wrapper {
    vertical-align: top;
    max-width: 900px;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: start;          /* Natural reading flow */
    gap: 20px;
}

.feature-content-wrapper p::before {
    content: "•"; /* Custom bullet */
    margin-right: 10px;
    color: var(--text-main); /* Maybe a gold color? */
}

.feature-item-secondary {
    display: inline;            /* Allows it to start on the same line */
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.4;
    text-align: justify;
    text-justify: inter-word;    
    hyphens: auto;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS
   ========================================================================== */

@media (max-width: 768px) {
    .feature-item-secondary {
        font-size: 0.8;
    }

    .about-section img {
        width: auto;
        height: auto;
    }
}