﻿/* Khoảng cách cho toàn bộ khối */
.training-areas-section {
    background-color: #ffffff;
    padding: 60px 0;
}

/* --- Định dạng Tiêu đề --- */
.section-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px; /* Sửa từ 15px thành 10px cho giống trang kia */
}

    .section-subtitle-wrapper .text-subtitle {
        font-family: 'Google Sans', sans-serif; /* Đã đồng bộ Font */
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        color: #070A0E; /* Đã đồng bộ Màu */
    }

    .section-subtitle-wrapper .line {
        width: 40px; /* Đã đồng bộ kích thước nét đứt */
        height: 1px;
        background-color: #070A0E; /* Đã đồng bộ Màu */
    }

.section-main-title {
    font-family: 'Google Sans', sans-serif; /* Đã đồng bộ Font */
    font-size: 56px; /* Đã đồng bộ Size */
    font-weight: 700;
    line-height: 72px;
    margin: 0;
    /* Đã đồng bộ hiệu ứng Gradient cho Tiêu đề chính */
    background: linear-gradient(270deg, #3431C6 0%, #000021 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* --- Định dạng Thẻ Lĩnh vực (Card) --- */
.training-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
    height: 100%;
}

    .training-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(52, 49, 198, 0.08);
        border-color: #3431C6;
    }

/* Khối hình vuông chứa Icon */
.card-icon-box {
    width: 64px;
    height: 64px;
    background-color: #3E3FC5;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .card-icon-box img {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

/* Nội dung chữ bên trong Thẻ */
.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Áp dụng Font chung cho chữ trong Card */
.training-card .card-title,
.training-card .card-meta {
    font-family: 'Google Sans', sans-serif;
}

.training-card .card-title {
    font-size: 18px;
    font-weight: 700;
    color: #070A0E; /* Đã đồng bộ màu với core-card-title */
    margin: 0 0 6px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.training-card:hover .card-title {
    color: #3431C6;
}

.training-card .card-meta {
    font-size: 14px;
    font-weight: 400;
    color: #6B7280;
}

/* --- Responsive cho Mobile --- */
@media (max-width: 768px) {
    .section-main-title {
        font-size: 28px; /* Đã đồng bộ size Mobile với core-main-title */
    }

    .training-areas-section {
        padding: 50px 0;
    }

    .training-card {
        padding: 16px;
    }

    .card-icon-box {
        width: 54px;
        height: 54px;
    }

        .card-icon-box img {
            width: 26px;
            height: 26px;
        }

    .training-card .card-title {
        font-size: 16px;
    }
}
