.details-section.container {
    border-top: none;
    background: linear-gradient(0deg, var(--brand-pale) 0%, var(--white) 60%);
    max-width: none;
    justify-items: center;
    padding: 60px 0 80px;
}
.details-block {
    max-width: 1160px;
}
.tl-list-section {
    padding: 20px 20px 80px;
}

.tl-list-title {
    max-width: 900px;
    margin: 0 auto 20px auto;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.tl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.tl-card {
    background: var(--white);
    border: 1px solid var(--brand-pale);
    border-radius: var(--radius);
    padding: 28px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.tl-card:hover {
    border-color: var(--brand-light);
    box-shadow: 0 12px 28px rgba(128, 125, 219, 0.1);
    transform: translateY(-2px);
}

.tl-icon {
    font-size: 2.2rem;
    line-height: 1;
}

.tl-card h3 {
    font-size: 1.15rem;
    margin: 0;
}

.tl-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

.tl-arrow {
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    padding-top: 6px;
}

.tl-card:hover .tl-arrow {
    color: var(--brand);
}