#fw-section-custom-html-5ad70248-f932-4737-8ac8-5fbb9969f69f {

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f4f7;
    color: #333;
    padding: 2rem 1rem;
}

/* --- Layout Container --- */
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    
    /* Responsive Grid: automatically handles column count based on available space */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* --- Card Styles --- */
.gallery-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    
    /* Keeps content organized vertically */
    display: flex;
    flex-direction: column;
}

/* Hover effect for desktop */
.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

/* --- Image Handling --- */
.image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3; /* Forces a consistent shape regardless of source image size */
    background-color: #e2e8f0;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents stretching, crops to fit perfectly */
    display: block;
}

/* --- Content & Buttons --- */
.card-content {
    padding: 1.25rem;
    flex-grow: 1; /* Pushes the button to the bottom if text lengths vary */
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #333;
}

.card-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.action-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: auto; /* Ensures button stays at the bottom of the card */
}
.action-btn-link {
    text-decoration: none; /* Removes any default underline */
    display: block;        /* Ensures it spans the full width of the card */
    width: 100%;
}

.action-btn:hover {
    background-color: #0052a3;
}

.action-btn:active {
    background-color: #003d7a;
}
}

#fw-section-custom-html-e9bba45b-ac18-4fbe-a601-9ef76cab614d {
--font-heading-scale: 1.0;
--font-body-scale: 1.0;
}
#fw-section-custom-html-e9bba45b-ac18-4fbe-a601-9ef76cab614d {

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
}

#fw-section-hero-0 {
--color-primary: #ff8100;
--color-primary-rgb: 255, 129, 0;
--color-background: #051321;
--color-background-rgb: 5, 19, 33;
--color-on-background: #000000;
--color-on-background-rgb: 0, 0, 0;
--color-on-primary: #071726;
--color-on-primary-rgb: 7, 23, 38;
--color-product-image-background: #000000;
--color-background-brightness: 16;
background-color: var(--color-background);
color: var(--color-on-background);
--primary-btn-bg: #ff8100;
--primary-btn-text: #071726;
--primary-btn-border-color: #000000;
--secondary-btn-bg: transparent;
--secondary-btn-text: #000000;
--secondary-btn-border-color: #000000;
h1 {
  font-weight: bold;
}
}