.tlf-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    max-width: var(--gb-container-width, 1400px);
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    list-style: none;
}

@media (max-width: 1024px) {
    .tlf-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .tlf-grid {
        grid-template-columns: 1fr !important;
    }
}

.tlf-grid .tlf-card {
    background: #ffffff;
    border: 1px solid #e1e6ed;
    border-radius: 10px;
    padding: 32px 28px;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    box-sizing: border-box;
    text-align: left;
    float: none;
    width: auto;
}

.tlf-grid .tlf-card:hover {
    border-color: #482d70;
    box-shadow: 0 8px 30px rgba(72, 45, 112, 0.12);
    transform: translateY(-3px);
}

.tlf-grid .tlf-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: #f2f5fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #482d70;
}

.tlf-grid .tlf-icon svg {
    width: 26px !important;
    height: 26px !important;
    max-width: 26px !important;
    max-height: 26px !important;
    stroke: currentColor;
    fill: none;
    display: block;
}

.tlf-grid .tlf-title {
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: #1B1B42;
    margin: 0 0 10px 0 !important;
    padding: 0;
    line-height: 1.3;
    border: none;
    text-transform: none;
    letter-spacing: normal;
}

.tlf-grid .tlf-desc {
    font-size: 0.95rem;
    color: #141414;
    line-height: 1.6;
    margin: 0 !important;
    padding: 0;
    opacity: 0.8;
}
