/* General */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fff;
    color: #000;
}

.staff-page {
}

.staff-title {
    padding: 4rem;
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.red-dot {
    width: 0.8rem;
    height: 0.8rem;
    background-color: red;
    border-radius: 50%;
    margin-left: 0.5rem;
    display: inline-block;
}

img{
    height: 550px;
}
/* Staff list */
.staff-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.staff-member {
    padding: 4rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    border-top: 2px solid #000; /* Black line between entries */
}

.staff-info {
    display: flex;
    flex-direction: column;
    text-align: justify;
}

.staff-name {
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.staff-bio {
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: justify;
    font-size: 0.95rem;
}

.staff-email a {
    color: #000;
    text-decoration: underline;
    font-weight: bold;
}

/* Image section */
.staff-photo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Responsive layout */
@media (max-width: 768px) {
    .staff-member {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .staff-photo img {
        max-width: 60%;
        margin: 0 auto;
    }

    .staff-info {
        text-align: left;
    }
}
