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

.shafa-about {
    padding: 0 2rem;
    /* background-color: #fff; */
}

/* ===============================
Container
================================ */

.shafa-about__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* ===============================
   Image
================================ */

.shafa-about__image {
    flex: 0 0 35%;
}

.shafa-about__image img {
    width: 100%;
    height: auto;
    /* border-radius: 16px; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12); */
    object-fit: cover;
}

/* ===============================
   Content
================================ */

.shafa-about__content {
    flex: 1;
}

.shafa-about__title {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    font-family: var(--font-sde);
}

.shafa-about__text {
    font-size: 1rem;
    line-height: 1.9;
    color: #666;
    margin-bottom: 1rem;
    text-align: justify;
    font-family: var(--font-tna);

}

/* ===============================
   Button
================================ */

.shafa-about__btn {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.35rem 1.2rem;
    border-radius: 30px;
    border: 2px solid var(--bg-accent);
    color: var(--bg-accent);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 200;
    transition: all 0.25s ease;
    font-family: var(--font-zba);

}

.shafa-about__btn:hover {
    background-color: var(--bg-accent);
    color: #fff;
}

/* ===============================
   Responsive
================================ */

@media (max-width: 992px) {
    .shafa-about__container {
        flex-direction: column;
        text-align: center;
    }

    .shafa-about__image {
        flex: 0 0 auto;
        max-width: 400px;
    }

    .shafa-about__title {
        font-size: 2.2rem;
    }

    .shafa-about__text {
        text-align: justify;
    }
}

@media (max-width: 480px) {
    .shafa-about {
        padding: 3rem 1rem;
    }

    .shafa-about__title {
        font-size: 2rem;
    }
}