.section-header .section-title {
    font-size: var(--edtt-font-size-3xl);
    font-weight: 500;
    color: var(--edtt-color-text-default);
}

.section-header .view-all-link {
    color: var(--edtt-color-text-default);
    font-size: var(--edtt-font-size-md);
    font-weight: 400;
    transition: all 0.3s ease;
}

.section-header .view-all-link:hover {
    color: var(--edtt-color-primary);
    transform: translateX(2px);
}

.section-header .view-all-link i {
    transition: transform 0.3s ease;
}

.section-header .view-all-link:hover i {
    transform: translateX(3px);
}

.section-line {
    width: 4px;
    height: 24px;
    border-radius: 2px;
    color: var(--edtt-color-primary);
    background-color: var(--edtt-color-primary);
}