/* Feature Grid Styles */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-block {
    background: #fff;
    border-radius: 1.5rem;
    padding: 3rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.feature-header-row {
    margin-bottom: 2rem;
}

.feature-header-row h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.badge-pill {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #dbeafe;
    color: #1e40af;
    font-weight: 600;
    border-radius: 99px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-pill.admin {
    background: #fce7f3;
    color: #9d174d;
}

.feat-card {
    background: #f9fafb;
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid transparent;
}

.feat-card:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #e5e7eb;
}

.feat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.feat-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.feat-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feat-card li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

.feat-card li::before {
    content: "•";
    color: #22c55e;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0px;
}

.feat-card li strong {
    color: #111827;
    font-weight: 600;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .feature-block {
        padding: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
