.lcs-wrapper {
    width: 100%;
}

.lcs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lcs-wrap {
    display: flex;
}

.lcs-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--secondary);
    border-radius: 12px;
    padding: 32px 28px;
    background: var(--bg);
    width: 100%;
    position: relative;
    top: 0;
}

.lcs-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    width: auto;
    border-radius: 8px;
    background: var(--secondary);
    padding: 12px;
    margin-bottom: 20px;
}

.lcs-icon-wrap i {
    font-size: 36px;
    color: #3498db;
    display: block;
    line-height: 1;
}

.lcs-icon-wrap svg {
    width: 36px;
    height: 36px;
    fill: #3498db;
    display: block;
}

.lcs-title {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a2e;
}

.lcs-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

@media (max-width: 1024px) {
    .lcs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .lcs-card {
        padding: 26px 22px;
    }

    .lcs-icon-wrap i {
        font-size: 30px;
    }

    .lcs-icon-wrap svg {
        width: 30px;
        height: 30px;
    }

    .lcs-title {
        font-size: 16px;
    }

    .lcs-desc {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .lcs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lcs-card {
        padding: 22px 18px;
    }

    .lcs-icon-wrap {
        padding: 10px;
        margin-bottom: 16px;
    }

    .lcs-icon-wrap i {
        font-size: 26px;
    }

    .lcs-icon-wrap svg {
        width: 26px;
        height: 26px;
    }

    .lcs-title {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .lcs-desc {
        font-size: 13px;
    }
}