@import url(“./css/style.css”);

.home-container {
    text-align: center;
}

.inner-container {
    max-width: 1200px;
    padding: 20px;
    margin: 0 auto;
}

.staff-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;

}

.staff-member {
    margin: 10px;
    max-width: calc(25% - 20px);
    flex-basis: calc(25% - 20px);
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.staff-details {
    text-align: left;
}

.staff-name {
    font-size: 20px;
    color: var(--accent-color);
    font-weight: bold;
}

.staff-position {
    font-size: 14px;
    color: var(--second-color);
}

/* Media Query for maximum 4 staff members per row */
@media screen and (max-width: 1200px) {
    .staff-member {
        max-width: calc(33.33% - 20px); /* 33.33% width with margins included */
        flex-basis: calc(33.33% - 20px); /* 33.33% basis with margins included */
    }
}

@media screen and (max-width: 768px) {
    .staff-member {
        max-width: calc(50% - 20px); /* 50% width with margins included */
        flex-basis: calc(50% - 20px); /* 50% basis with margins included */
    }
}

@media screen and (max-width: 480px) {
    .staff-member {
        max-width: 100%; /* Full width */
        flex-basis: 100%; /* Full width */
    }
}
