/* Feature List Component */

.feature-list-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px;
    background-color: #2a2a2a;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    gap: 16px;
    cursor: pointer;
}

.feature-list-item:hover {
    background-color: #333;
}

.feature-list-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
}

.feature-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-list-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.feature-list-identifier {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-brand-orange, #c56600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.feature-list-headline {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

/* How It Works Section */

.how-it-works-section h3 {
    color: #c56600;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 16px;
    margin-bottom: 8px;
}

.how-it-works-section p {
    margin-bottom: 16px;
}

.how-it-works-cta {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 32px;
    background-color: #c56600;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.how-it-works-cta:hover {
    background-color: #a85500;
    color: #fff;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .feature-list-item {
        padding: 12px;
    }

    .feature-list-image {
        width: 60px;
        height: 60px;
    }

    .feature-list-headline {
        font-size: 1.1rem;
    }

    .feature-list-identifier {
        font-size: 0.7rem;
    }
}

