.honour-department{
    text-align: center;
    font-family: poppins;
    font-size: 16px;
    font-weight: bold;
    color: #FFF;
    background-color: #563A52;
    padding: 5px;
}

.mt-5{
    margin-top: 5px;
}

.p-5{
    padding: 5px;
}

.honour-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.honour-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);
}

.honour-image img {
    width: 100%; /* Ensure images are responsive */
    height: auto; /* Maintain aspect ratio */
}

.honour-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 */
}

.honour-description {
    font-family: poppins;
    line-height: 12px;
    font-size: 12px;
    color: #797979;
    margin: 5px 0; /* Add some spacing between descriptions */
}

/* Responsive adjustments */
@media (max-width: 800px) {
    .honour-grid {
        grid-template-columns: repeat(2, 1fr); /* Change to 2 columns on smaller screens */
    }
}

@media (max-width: 500px) {
    .honour-grid {
        grid-template-columns: 1fr; /* Change to 1 column on very small screens */
    }
}