.about {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px 100px;
    font-family: 'Jost', sans-serif;
    text-align: center;
}

/* TITLE */
.about-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

/* HERO */
.about-hero img {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 30px;
}

/* DESC */
.about-desc {
    font-size: 15px;
    color: #666;
    max-width: 760px;
    margin: 0 auto 60px;
}

/* SUBTITLE */
.about-subtitle {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 40px;
}

/* VALUES */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.value-item img {
    height: 50px;
    margin-bottom: 14px;
}

.value-item p {
    font-size: 14px;
}

/* =========================
   FOUNDER – NEW (FIX)
========================= */

.founder-wrap {
    max-width: 900px;
    margin: 0 auto 90px;

    display: grid;
    grid-template-columns: 280px minmax(0, 520px); /* BIKIN KANAN GA MELEBAR */
    gap: 50px;
    align-items: start;
}

.founder-photo img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.founder-desc {
    text-align: left;
}

.founder-desc h3 {
    font-size: 24px; 
    font-weight: 500;
    margin-bottom: 20px;
    color: #222;
}

.founder-desc p {
    max-width: 520px; 
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

/* SOCIAL */
.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.social-grid img {
    width: 100%;
    border-radius: 12px;
}

/* SOCIAL CAROUSEL */
.social-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.social-carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.social-carousel img {
    width: 200px;
    height: 232px;
    object-fit: cover;
    flex-shrink: 0;
}

/* panah */
.social-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.social-btn img {
    width: 28px;
    height: 28px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .values-grid,
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .founder-wrap {
        grid-template-columns: 1fr;
    }

    .founder-photo img {
        max-width: 260px;
        margin: 0 auto 20px;
    }

    .founder-desc {
        text-align: left;
    }
}
