@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    margin: 0;
    padding: 20px;
}

.team-header {
    text-align: center;
    max-width: 800px;
    margin: 20px auto 50px auto;
}

.team-header h1 {
    font-size: 2.5em;
    color: #0056b3;
    margin-bottom: 10px;
}

.team-header p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.profile-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #007bff;
    margin-bottom: 20px;
}

.profile-card h2 {
    margin: 0 0 5px 0;
    font-size: 1.5em;
    color: #333;
}

.profile-card .role {
    margin: 0 0 15px 0;
    font-weight: 600;
    color: #007bff;
}

.profile-card .description {
    font-size: 0.95em;
    line-height: 1.5;
    color: #666;
    min-height: 80px; /* Agar tinggi deskripsi seragam */
}

.audio-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    font-family: 'Poppins', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.audio-btn:hover {
    background-color: #0056b3;
}