.feature-section {
    padding: 60px 0;
}

.feature-section .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
}

.feature-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.feature-content {
    text-align: center;
}

.feature-title {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--feat-name-color);
}

@media (min-width: 768px) {
    .feature-title {
        font-size: 20px;
    }
}

.feature-desc {
    font-size: 14px;
    font-weight: 400;
    color: var(--desc-color);
}

@media (min-width: 768px) {
    .feature-desc {
        font-size: 16px;
    }
}

body.dark .feature-title,
html.dark .feature-title,
[data-theme="dark"] .feature-title {
    color: var(--feat-name-color-dark);
}

body.dark .feature-desc,
html.dark .feature-desc,
[data-theme="dark"] .feature-desc {
    color: var(--desc-color-dark);
}
