/* =========================
   ABOUT SECTION
========================= */

.about-section {

    padding: 100px 20px;

    text-align: center;
}

.about-card {

    max-width: 850px;

    margin: auto;

    padding: 55px;

    border-radius: 42px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.08),
            rgba(255,255,255,0.03)
        );

    border:
        1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(12px);

    box-shadow:
        0 14px 35px rgba(0,0,0,0.22);

    text-align: right;

    display: flex;

    flex-direction: row-reverse;

    align-items: center;

    gap: 40px;
}

.about-card p {

    color:
        rgba(255,255,255,0.82);

    line-height: 2;

    font-size: 1.08rem;

    margin-bottom: 24px;
}

.about-card p:last-child {

    margin-bottom: 0;
}
.about-image img {

    width: 220px;

    height: auto;

    border-radius: 32px;

    object-fit: cover;

    box-shadow:
        0 14px 35px rgba(0,0,0,0.28);
}
.about-content {

    flex: 1;

    text-align: right;
}
.about-section h2 {

    margin-bottom: 28px;
}
.about-card {

    align-items: center;
}