/* =========================
   Features - section
   ========================= */

.features {
    background: var(--light-2);
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.feature-item {
    display: flex;
    gap: 28px;
    padding: 36px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    padding-left: 12px;
}

.feature-icon-wrap {
    flex-shrink: 0;
}

.feature-icon {
    width: 56px;
    height: 56px;
}

.feature-content h3,
.feature-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-content p,
.feature-description {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
}

/* Responsive: 1 column on extra small screens */
@media (max-width: 767px) {
    .features-layout {
        grid-template-columns: 1fr;
    }
}

/* Responsive: 2 column on small screens */
@media (min-width: 768px) and (max-width: 1024px) {
    .features-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}
