/* 相关推荐模块样式 */
.related-recommendations-section {
    margin-top: 40px;
    padding: 40px 0;
    background-color: #fff;
}

.related-recommendations-section .section-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 24px 0;
    line-height: 1.4;
    text-align: center;
}

.related-recommendations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* 中屏幕：两行，每行两个 */
@media (max-width: 1024px) {
    .related-recommendations-section {
        padding: 32px 0;
    }

    .related-recommendations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .related-recommendations-section .section-title {
        font-size: 22px;
    }
}

/* 小屏幕：纵向排列 */
@media (max-width: 768px) {
    .related-recommendations-section {
        margin-top: 32px;
        padding: 24px 0;
    }

    .related-recommendations-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .related-recommendations-section .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

/* 超小屏幕优化 */
@media (max-width: 480px) {
    .related-recommendations-section {
        margin-top: 24px;
        padding: 20px 0;
    }

    .related-recommendations-grid {
        gap: 10px;
    }

    .related-recommendations-section .section-title {
        font-size: 18px;
        margin-bottom: 16px;
    }
}