/* ================================
   COLLAB PAGE CONTAINER
   (STACKED VERTICALLY)
================================ */
.collab-container {
    width: 100%;
    max-width: 1500px;
    margin: 80px auto;
    padding: 0 40px;

    display: flex;
    flex-direction: column;   /* vertical stacking */
    gap: 50px;                /* space between blocks */
}

/* ================================
   INDIVIDUAL COLLAB BLOCK
================================ */
.collab-card {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 40px;

    background: rgba(0, 0, 0, 0.45);
    border: 2px solid #ffffff;
    border-radius: 18px;
    padding: 45px;

    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.45);
}

/* ================================
   COLLAB IMAGE
================================ */
.collab-card img {
    width: 220px;
    height: 220px;
    object-fit: cover;

    border-radius: 14px;
    border: 3px solid #09ff00;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collab-card img:hover {
    transform: scale(1.06);
    box-shadow: 0 0 25px #09ff00;
}

/* ================================
   TEXT CONTENT
================================ */
.collab-info {
    flex: 1;
}

/* Collaborator Name */
.collab-info h3 {
    margin-bottom: 14px;
    font-size: 2.2rem;
    font-weight: bold;
    color: #09ff00;
    font-family: 'Kanit', sans-serif, monospace;
}

/* Collaborator Description */
.collab-info p {
    font-size: 1.4rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* ================================
   LINK STYLING (NO BLUE)
================================ */
.collab-info a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
}

.collab-info a:hover {
    color: #09ff00;
    text-decoration: underline;
}

.collab-info a:visited {
    color: #ffffff;
}

/* ================================
   RESPONSIVE (MOBILE)
================================ */
@media (max-width: 900px) {
    .collab-container {
        padding: 0 25px;
    }

    .collab-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 35px;
    }

    .collab-card img {
        width: 200px;
        height: 200px;
    }

    .collab-info h3 {
        font-size: 2rem;
    }

    .collab-info p {
        font-size: 1.15rem;
    }
}