.adv-grid-container {
    width: 100%;
    margin: 0 auto;
    font-family: inherit;
    box-sizing: border-box;
}

.adv-grid-header {
    text-align: center;
    margin-bottom: 48px;
}

.adv-grid-subtitle {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.adv-grid-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.adv-grid-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.adv-card {
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.adv-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.adv-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.adv-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.adv-card-icon i {
    line-height: 1;
}

.adv-card-icon svg {
    display: block;
}

.adv-card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.adv-card-description {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .adv-grid-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .adv-grid-grid {
        grid-template-columns: 1fr;
    }
    .adv-grid-title {
        font-size: 28px;
    }
}
