/* =========================================
   CONTENT
========================================= */

.about-subtitle {
    display: inline-block;

    padding: 10px 18px;

    border-radius: 50px;

    background: rgba(200, 169, 126, 0.12);

    color: #c8a97e;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 22px;
}

.about-content h2 {
    font-size: 54px;

    font-weight: 700;

    line-height: 1.2;

    color: #111;

    margin-bottom: 28px;
}

.about-content p {
    font-size: 17px;

    line-height: 1.95;

    color: #666;

    margin-bottom: 22px;
}

/* =========================================
   STATS
========================================= */

.about-stats {
    display: flex;

    gap: 20px;

    flex-wrap: wrap;

    margin-top: 40px;
}

.about-stat-item {
    flex: 1;

    min-width: 180px;

    background: #fff;

    padding: 25px;

    border-radius: 24px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);

    border: 1px solid rgba(0, 0, 0, 0.05);

    transition: 0.35s ease;
}

.about-stat-item:hover {
    transform: translateY(-6px);
}

.about-stat-item h3 {
    font-size: 28px;

    font-weight: 700;

    color: #111;

    margin-bottom: 10px;
}

.about-stat-item span {
    font-size: 14px;

    color: #777;

    line-height: 1.7;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {
    .about-content h2 {
        font-size: 38px;
    }

    .about-content p {
        font-size: 15px;
    }

    .about-stats {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .about-content h2 {
        font-size: 30px;
    }
}
