/* Keyword Boxes Styling for Sponsor Section */
.keyword-box {
    transition: all 0.3s ease-in-out;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
    min-height: 80px;
    border: 2px solid transparent;
}

.keyword-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #fff;
}

.keyword-box h4 {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .keyword-box h4 {
        font-size: 16px;
    }
}
