.faculty-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.faculty-item {
    text-align: center; /* Center-align text within each item */
    box-sizing: border-box; /* Ensure padding/margin do not affect width */
    padding: 0px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
}

.faculty-image img {
    width: 100%; /* Ensure images are responsive */
    height: auto; /* Maintain aspect ratio */
	border-radius: 10px 10px 0 0;
}

.faculty-title {
    font-family: poppins;
    font-size: 12px;
    line-height: 12px;
    font-weight: 600; /* Make the name bold */
    margin: 10px 0; /* Add some spacing above and below the name */
}

.faculty-description {
    font-family: poppins;
    line-height: 12px;
    font-size: 12px;
    color: #797979;
    margin: 5px 0; /* Add some spacing between descriptions */
}

.faculty-view {
    text-align: center;
    margin-bottom: 5px;
}

.faculty-btn{
    font-family: poppins;
    font-size: 11px;
    background-color: #563A52;
    color: #FFF;
    border: 1px solid #563A52;
    border-radius: 5px;
    padding: 2px 10px;
}

.faculty-view a{
    text-decoration: none;
}

.faculty-btn:hover{
    background-color: #FFF;
    color: #563A52;
    border: 1px solid #563A52;
}

/* Responsive adjustments */
@media (max-width: 800px) {
    .faculty-grid {
        grid-template-columns: repeat(2, 1fr); /* Change to 2 columns on smaller screens */
    }
}

@media (max-width: 500px) {
    .faculty-grid {
        grid-template-columns: 1fr; /* Change to 1 column on very small screens */
    }
}