.feature-list-root {
    background-size: cover;
    background-repeat: no-repeat;
}

.feature-list-item {
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
}

    .feature-list-item.flipped {
        flex-direction: column-reverse;
    }

.feature-list-image-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-list-img {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
    border-radius: 4px;
}

.feature-list-content {
    flex: 1;
}

.feature-list-header {
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-list-body {
    margin-bottom: 16px;
}

.feature-list-buttons {
    margin-top: 16px;
}

/* FORCE background image display - override any conflicting styles */
.feature-list-item {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
}

    .feature-list-item[style*="background"] {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

.feature-list-header h3 {
    margin: 0 !important;
    text-align: center !important;
	font-family: 'spectral';
    font-size: 32px;
    font-weight: bold;
	margin-bottom: 3rem !important;
}

.content-wrapper.bottom .feature-list-content p {
    margin: 1rem 0rem 1rem 0rem;
}

/* Grid Container Styles */
.feature-list-grid-container {
    align-items: stretch;
}

/* Responsive Grid Padding */
@media (max-width: 599px) {
    .feature-list-grid-container {
        padding: 16px;
    }
}

@media (min-width: 600px) and (max-width: 959px) {
    .feature-list-grid-container {
        padding: 24px;
    }
}

@media (min-width: 960px) {
    .feature-list-grid-container {
        padding: 32px;
    }
}

/* Feature List Item - Card Styles */
.feature-list-item-card {
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-clip: border-box;
}

    /* Gradient fallback when no background image */
    .feature-list-item-card.no-background {
        background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    /* Overlay for text readability when using background images */
    .feature-list-item-card.has-background::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.4) 100%);
        z-index: 1;
        pointer-events: none;
    }

/* Image wrapper for icons */
.feature-list-image-wrapper-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    min-height: 120px;
    position: relative;
    z-index: 2;
}

/* Content wrapper */
.feature-list-content-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 24px;
    position: relative;
    z-index: 2;
    justify-content: flex-end;
    min-height: 100%;
}

/* Header section */
.feature-list-header-card {
    margin-bottom: 16px;
}

/* Header title styling */
.feature-list-title {
    font-weight: bold;
    margin-bottom: 8px;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-size: 1.25rem;
}

/* Horizontal line under title */
.feature-list-title-line {
    width: 100%;
    height: 3px;
    background-color: white;
    margin: 8px auto;
    border-radius: 2px;
    opacity: 0.9;
    max-width: 230px;
}

/* Body text styling */
.feature-list-body-card {
    flex: 1;
    margin-bottom: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.95) !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    font-family: 'titillium-web' !important;
    font-size: 18px !important;
	margin-bottom: 2rem !important;
    text-align: left;
}

/* Button wrapper */
.feature-list-buttons-card {
    margin-top: auto;
    display: flex;
    justify-content: center;
    gap: 8px;
}

/* Empty state styling */
.feature-list-empty-state {
    text-align: center;
    padding: 32px;
}

.feature-list-buttons.feature-list-buttons-card a.button {
    border-radius: 26px !important;
    font-weight: bold;
    font-family: 'titillium-web';
    font-size: 20px;
    width: 224px;
    padding: 6px 8px !important;
}

.feature-list-item-card{
 border-radius: 20px !important;
}