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

/* Shared section */
.about-section {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 80px 0;
}

.about-section:nth-child(even) {
    background: #f7f7f7;
}

.about-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Section 2: Text only */
.about-text__content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    text-align: center;
}

.about-text__content h2,
.about-text__content h3,
.about-text__content h4 {
    color: #1c1c1c;
    margin-bottom: 15px;
}

.about-text__content p {
    margin-bottom: 18px;
}

.about-text__content p:last-child {
    margin-bottom: 0;
}

/* Section 3 & 4: Text + Image row */
.about-row__inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-row__text {
    flex: 1;
    min-width: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.about-row__text h2,
.about-row__text h3,
.about-row__text h4 {
    color: #1c1c1c;
    margin-bottom: 15px;
}

.about-row__text p {
    margin-bottom: 18px;
}

.about-row__text p:last-child {
    margin-bottom: 0;
}

.about-row__image {
    flex: 1;
    min-width: 0;
}

.about-row__image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Button link (Join us) */
.about-btn-wrap {
    margin-top: 25px;
}

.about-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: #1c1c1c;
    text-decoration: none;
    padding-bottom: 4px;
}

.about-btn-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition-property: width;
    transition-duration: 0.4s;
    transition-timing-function: ease-out;
}

.about-btn-link:hover::after,
.about-btn-link:focus::after {
    left: 0;
    right: auto;
    width: 100%;
}

.about-btn-link svg {
    transition: transform 0.3s;
}

.about-btn-link:hover svg {
    transform: translateX(4px);
}

/* Section 4: Reverse order (image left, text right) */
.about-row--reverse .about-row__inner {
    flex-direction: row-reverse;
}

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }

    .about-row__inner {
        flex-direction: column;
        gap: 30px;
    }

    .about-row--reverse .about-row__inner {
        flex-direction: column;
    }

    .about-text__content {
        font-size: 15px;
    }
}
