/* Awards 模块样式 */
.awards-section {
    position: relative;
}

.awards-container {
    min-height: 200px;
}

/* 加载状态样式 */
.awards-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #2246A6;
    border-radius: 15px;
    border: 1px solid #2246A6;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #E3F2FD;
    border-top: 4px solid #2246A6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 错误状态样式 */
.awards-error {
    padding: 30px;
    background: #FFEBEE;
    border: 1px solid #F44336;
    border-radius: 15px;
    color: #C62828;
}

.error-message {
    margin: 0;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
}

/* 空状态样式 */
.awards-empty {
    padding: 40px;
    background: #2246A6;
    border: 1px solid #2246A6;
    border-radius: 15px;
    text-align: center;
}

.awards-empty p {
    margin: 0;
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
}

/* 获奖网格布局 */
.awards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* 获奖项目样式 */
.award-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #2246A6;
    border: 1px solid #2246A6;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.award-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 69, 166, 0.2);
    background: #2246A6;
}

/* 获奖图标 */
.award-icon {
    font-size: 40px;
    min-width: 60px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 获奖内容 */
.award-content {
    flex: 1;
}

.award-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.4;
}

.award-date {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.award-organization {
    color: #000000;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.award-description {
    color: #000000;
    font-size: 14px;
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .award-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .award-icon {
        min-width: auto;
        font-size: 35px;
    }

    .award-title {
        font-size: 16px;
    }

    .award-content {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .award-item {
        padding: 15px;
    }

    .award-icon {
        font-size: 30px;
    }

    .award-title {
        font-size: 15px;
    }

    .award-date,
    .award-organization,
    .award-description {
        font-size: 13px;
    }
}

/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
    .awards-loading,
    .awards-empty {
        background: #0D47A1;
        border-color: #64B5F6;
    }

    .loading-spinner {
        border-color: #0D47A1;
        border-top-color: #64B5F6;
    }

    .awards-error {
        background: #B71C1C;
        border-color: #EF5350;
    }

    .award-item {
        background: #1E3A8A;
        border-color: #64B5F6;
    }

    .award-item:hover {
        background: #0D47A1;
    }

    .award-title,
    .award-organization {
        color: #64B5F6;
    }

    .award-date,
    .award-description {
        color: #90CAF9;
    }
}
