/* =========================================
   ABOUT SECTION
========================================= */

.about-section {
    width: 100%;
    padding: 140px 80px;

    display: flex;
    justify-content: center;
}

/* =========================================
   GRID LAYOUT
========================================= */

.about-grid {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 520px 620px;

    justify-content: center;
    align-items: center;

    column-gap: 100px;
}

/* =========================================
   IMAGE SIDE
========================================= */

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-visual img {
    width: 100%;
    max-width: 520px;

    border-radius: 24px;
    display: block;

    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* =========================================
   CONTENT SIDE
========================================= */

.about-content {
    width: 100%;
    max-width: 620px;
}

/* SECTION TAG */

.section-tag {
    display: inline-block;

    margin-bottom: 20px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #2457ff;
}

/* TITLE */

.about-title {
    font-size: clamp(64px, 5vw, 92px);
    line-height: 0.95;
    letter-spacing: -3px;
    font-weight: 700;

    margin-bottom: 36px;
}

/* PARAGRAPHS */

.about-content p {
    font-size: 18px;
    line-height: 1.9;

    color: #444;

    margin-bottom: 22px;

    max-width: 620px;
}

/* =========================================
   TAGS
========================================= */

.about-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 40px;
    margin-bottom: 40px;
}

.about-tags span {
    padding: 10px 18px;

    border-radius: 999px;

    background: #fff;

    border: 1px solid #ddd;

    font-size: 14px;
    font-weight: 600;
}

/* =========================================
   BULLET POINTS
========================================= */

.about-points {
    display: grid;
    gap: 16px;
}

.about-points div {
    font-size: 16px;
    line-height: 1.7;
    color: #222;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .about-grid {
        grid-template-columns: 1fr;
        row-gap: 80px;
    }

    .about-visual {
        order: -1;
    }

    .about-content {
        max-width: 100%;
    }

    .about-title {
        font-size: 64px;
    }
}

@media (max-width: 768px) {

    .about-section {
        padding: 100px 24px;
    }

    .about-title {
        font-size: 48px;
        line-height: 1;
    }

    .about-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .about-tags span {
        font-size: 13px;
        padding: 8px 14px;
    }
}