/* ===============================
   AUTHOR / TEAM SECTION
=============================== */

.about-team {
    padding: 3rem 1rem;
    background: #F5F6FA; /* abu soft premium */
}

.about-team .container {
    max-width: 900px;
    margin: 0 auto;
}

.about-team h2 {
    text-align: center;
    margin-bottom: 0.8rem;
    font-size: 1.9rem;
    font-weight: 700;
    color: #101010; /* hitam elegan */
}

/* SUBTITLE */
.about-subtitle {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 2.2rem;

    font-size: 1rem;
    line-height: 1.65;
    color: #4A4A4A; /* abu premium */
}

/* AUTHOR BOX */
.author-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;

    background: #FFFFFF;
    border-radius: 14px;
    padding: 1.8rem;

    border: 1px solid #E3E6EB; /* abu premium */
    box-shadow: 0 10px 25px rgba(30, 107, 255, 0.06); /* biru soft shadow */
}

/* FOTO AUTHOR */
.author-image img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;

    border: 4px solid #E3E6EB; /* abu premium */
}

/* INFO */
.author-info h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #101010; /* hitam elegan */
}

.author-info p {
    color: #4A4A4A; /* abu premium */
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

/* CTA LINK */
.author-link {
    display: inline-block;
    font-weight: 600;
    font-size: 0.95rem;

    color: #1E6BFF; /* biru brand */
    text-decoration: none;
    border-bottom: 2px solid transparent;

    transition: all 0.25s ease;
}

.author-link:hover {
    color: #0C56E9; /* biru hover */
    border-color: #0C56E9;
}

/* RESPONSIVE */
@media (max-width: 680px) {
    .author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .author-info h3,
    .author-info p {
        text-align: center;
    }
}
