/* ============================= */
/* About                         */
/* ============================= */

.about-content {
    align-items: start;
}

.about-location {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.about-location-icon {
    width: 64px;
    height: 64px;

    opacity: 1;
    transition: opacity 300ms ease-in-out;
}

.about-location-text {
    min-width: 360px;

    opacity: 1;
    transition: opacity 300ms ease-in-out;
}

.about-location p {
    margin: 0;

    color: var(--color-secondary);
    font-family: var(--font-body);
    font-weight: var(--fw-bold);
    font-size: 30px;
    line-height: 120%;
}

.about-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.about-text p {
    margin: 0;

    color: var(--color-secondary);
    font-family: var(--font-body);
    font-weight: var(--fw-regular);
    font-size: 16px;
    line-height: 120%;
}

.about-text .btn {
    margin-top: 32px;
}

.about-location-icon.is-hidden,
.about-location-text.is-hidden {
    opacity: 0;
}

/* ============================= */
/* About Mobile                  */
/* ============================= */

@media (max-width: 1024px) {
    .about-content {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
    }

    .about-location {
        justify-content: center;
        gap: 16px;
    }

    .about-location-text {
        min-width: 0;
    }

    .about-location p {
        font-size: 18px;
    }

    .about-text {
        align-items: center;
        text-align: center;
    }

    .about-text .btn {
        display: none;
    }
}


/* ============================= */
/* About Tablet Refinement       */
/* ============================= */

@media (min-width: 768px) and (max-width: 1024px) {
    .about-location p {
        font-size: 26px;
    }

    .about-text p {
        max-width: 640px;
        font-size: 20px;
        line-height: 130%;
    }
}