.curriculum {
    padding: 60px 40px;
}

.curriculum__container {
    max-width: 1200px;
    margin: 0 auto;
}

.curriculum__title {
    font-size: 28px;
    font-weight: 700;
    color: #1d4b8f;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e4e4e4;
}

.curriculum__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.curriculum__item {
    background-color: white;
    border: 1.5px solid #e4e4e4;
    border-radius: 10px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.curriculum__item:hover {
    border-color: #1d4b8f;
    box-shadow: 0 4px 16px rgba(29, 75, 143, 0.1);
}

.curriculum__item-name {
    font-size: 15px;
    font-weight: 700;
    color: #1d4b8f;
    line-height: 1.5;
}

.curriculum__item-btn a {
    display: inline-block;
    padding: 8px 18px;
    background-color: #1d4b8f;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    border-radius: 6px;
    transition: background-color 0.25s ease;
}

.curriculum__item-btn a:hover {
    background-color: #e8651a;
}

@media (max-width: 768px) {
    .curriculum {
        padding: 40px 20px;
    }

    .curriculum__grid {
        grid-template-columns: 1fr;
    }
}