/* Container Utama Section */
.tm-section-wrapper {
    background-color: #000;
    background-image: radial-gradient(circle at 10% 10%, #111a33, #000000 70%);
    color: #fff;
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

/* Judul */
.tm-header {
    text-align: center;
    font-size: 30px;
    margin-bottom: 60px;
    font-weight: 350;
}
.tm-header span {
    font-family: 'Times New Roman', serif;
    font-size: 40px;
    font-style: italic;
    color: #4d6aff;
    font-weight: 400;
}

/* Area Team */
.tm-team-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    display: column;
    grid-template-columns: 1fr 1fr;
    row-gap: 120px;
}

/* SVG Line Penghubung */
.tm-connector-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.tm-dashed-path {
    fill: none;
    stroke: #666;
    stroke-width: 2;
    stroke-dasharray: 10, 10;
    opacity: 0.6;
}

/* Logo Tengah */
.tm-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    z-index: 10;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.7), inset 0 0 20px rgba(0, 102, 255, 0.2);
    border: 1px solid #222;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tm-center-logo img {
    width: 65%;
    height: 65%;
    object-fit: contain;
}

/* Grid Positioning */
.tm-card-wrapper.top-left {
    grid-column: 1;
    display: flex;
    justify-content: flex-start;
    padding-left: 100px;
    margin-bottom:120px;/* Jarak simetris dari tengah */
}
.tm-card-wrapper.bottom-right {
    grid-column: 2;
    display: flex;
    justify-content: flex-end;
    padding-right: 100px; /* Jarak simetris dari tengah */
}

/* Kartu Member */
.tm-card {
    background: linear-gradient(145deg, #3a3a3a, #1a1a1a);
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    min-height: 160px;
    display: flex;
    align-items: center;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    border: 1px solid #333;
    z-index: 5;
}

.tm-profile-pic {
    width: 120px;
    height: 140px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #444;
    flex-shrink: 0;
}

.tm-card-content {
    flex-grow: 1;
    padding: 0 15px;
}

.tm-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.tm-card-content p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
}

/* Mode Terbalik untuk Kartu Bawah */
.tm-card.reverse {
    flex-direction: row-reverse;
    text-align: right;
}

/* --- TABLET (Kurang dari 1024px) --- */
@media (max-width: 1024px) {
    .tm-team-container {
        max-width: 700px;
        column-gap: 20px;
    }
    .tm-card {
        max-width: 340px; /* Kartu sedikit mengecil di tablet */
        padding: 12px;
    }
    .tm-profile-pic {
        width: 100px;
        height: 120px;
    }
}

/* --- SMARTPHONE KECIL (480px ke bawah) --- */
@media (max-width: 480px) {
.tm-card-wrapper.top-left {
    justify-content: flex-start;
    padding-left: 15px;
}
.tm-card-wrapper.bottom-right {
    justify-content: flex-end;
    padding-right: 15px; 
}

/* SVG Line Penghubung */
.tm-connector-svg {
    left: -170px;
    width: 200%;
    height: 100%;
}
    
        .tm-team-container {
        max-width: 480px;
        column-gap: 20px;
    }
    .tm-card {
        max-width: 220px; 
        min-height: 120px;
        padding: 10px;
        gap: 15px;
    }
    
    .tm-card.reverse{
       max-width: 220px;
       flex-direction: row-reverse;
       text-align: right;
    }
        
    .tm-profile-pic {
        width: 100px;
        height: 120px;
    }
    
    .tm-header {
        font-size: 22px;
        margin-bottom: 40px;
    }
    
    .tm-header span {
    font-size: 30px;
    font-weight: 400;


    .tm-profile-pic {
        width: 70px; 
        height: 100px;
    }

    .tm-card-content h3 {
        font-size: 1.1rem;
    }

    .tm-card-content p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .tm-center-logo {
        width: 70px; /* Logo diperkecil sedikit */
        height: 70px;
    }
}