.honors-grid-a287cb43 {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

.honor-card-a287cb43 {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.honor-card-a287cb43:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.honor-icon-a287cb43 {
    font-size: 32px;
    color: #662BDC;
    margin-bottom: 20px;
    display: inline-flex;
}
.honor-icon-a287cb43 svg {
    width: 32px;
    height: 32px;
    fill: #662BDC;
}

.honor-content-a287cb43 {
    width: 100%;
}

.honor-title-a287cb43 {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.honor-meta-a287cb43 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    font-size: 14px;
    color: #777;
    border-bottom: none;
    padding-bottom: 0;
}

.honor-org-a287cb43 {
    font-weight: 500;
}

.honor-year-a287cb43 {
    background: #f8f9fa;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

@media (max-width: 1024px) {
    .honors-grid-a287cb43 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .honors-grid-a287cb43 {
        grid-template-columns: 1fr;
    }
}