/* --- CLUMA ACF BLOCKS LAYOUT & STYLING --- */
/* Consistent with Product & Service Cards Design System */

/* --- 1. GLOBAL WRAPPERS --- */
.cluma-blocks-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10rem;
    width: 100%;
}

.cluma-block {
    width: 100%;
}

/* Section Title styling (Inherits font, adds spacing) */
.cluma-section-title {
    margin-bottom: 2rem;
    position: relative;
}

/* --- 2. USP / KENMERKEN GRID --- */
.cluma-usp-grid {
    width: 100%;
}
.cluma-usp-grid .cluma-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.cluma-usp-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #F4F4F4;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    min-width: 0;
}

.cluma-usp-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bde-palette-color-2);
    background: #fff;
    position: relative;
    margin: 0;
    box-sizing: border-box;
}

.cluma-usp-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Material Icons (legacy): fonts.googleapis.com/icon?family=Material+Icons */
.cluma-usp-icon .material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    width: 18px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    display: inline-block;
    font-feature-settings: 'liga';
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    color: inherit;
}

/* Material Symbols (static subset): family=Material+Symbols+Outlined&icon_names=...&display=block */
.cluma-usp-icon .material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    width: 18px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    display: inline-block;
    font-feature-settings: 'liga';
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    color: inherit;
}

.cluma-usp-content {
    flex: 1;
}

.cluma-usp-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.cluma-usp-desc {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* --- 3. SPECIFICATIES TABEL --- */
.cluma-specs {
    background: #ffffff;
}

.cluma-table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.cluma-data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
}

.cluma-data-table tr {
    transition: background-color 0.2s ease;
}

.cluma-data-table tr:hover {
    background-color: #f9f9f9;
}

.cluma-data-table th, 
.cluma-data-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid #eeeeee;
}

.cluma-data-table tr:last-child th,
.cluma-data-table tr:last-child td {
    border-bottom: none;
}

.cluma-data-table th {
    width: 35%;
    font-weight: 600;
    color: #1a1a1a;
    background-color: #ffffff; /* Sticky header fix if needed later */
}

.cluma-data-table td {
    color: #444;
}

/* --- 4. TEXT EDITOR (PROSE) --- */
.cluma-prose {
    max-width: 80ch; /* Leesbare regelbreedte */
    line-height: 1.8;
    color: #333;
}

.cluma-prose h2, 
.cluma-prose h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cluma-prose p {
    margin-bottom: 1.5rem;
}

.cluma-prose ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.cluma-prose li {
    margin-bottom: 0.5rem;
}

/* --- 5. IMAGE GALLERY (grid + carousel) --- */
.cluma-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.cluma-gallery-grid__item {
    margin: 0;
    overflow: hidden;
}

.cluma-gallery-grid__item img,
.cluma-gallery-grid__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.cluma-gallery-carousel {
    width: 100%;
    position: relative;
}

.cluma-gallery-carousel__slide {
    overflow: hidden;
}

.cluma-gallery-carousel__figure {
    margin: 0;
}

.cluma-gallery-carousel__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.cluma-gallery-caption {
    font-size: 0.875rem;
    color: currentColor;
    margin-top: 0.5rem;
    padding: 0 0.25rem;
}

/* --- 6. DOWNLOADS --- */
.cluma-downloads {
    background: #F4F4F4;
    padding: 2rem;  
}
.cluma-downloads h2 {
	margin-top: 0;
}
.cluma-download-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.cluma-download-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    padding: 1.25rem;
    background: #ffffff;
    border: 1px solid #eeeeee;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cluma-download-link:hover {
    transform: translateY(-2px);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.cluma-download-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #de4300;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cluma-download-text {
    display: flex;
    flex-direction: column;
}

.cluma-download-label {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
}

.cluma-download-meta {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- 7. CARDS (REALISATIES & RELATED) --- */
/* Gebaseerd op .cluma-category-card styling */

/* Container Setup */
.cluma-cards-container {
    /* Layout wordt bepaald door grid/swiper modifiers */
    width: 100%;
}

/* Grid Mode Layout */
.cluma-cards.is-grid-mode .cluma-cards-container,
.cluma-cards.related .cluma-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .cluma-cards.is-grid-mode .cluma-cards-container,
    .cluma-cards.related .cluma-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .cluma-cards.is-grid-mode .cluma-cards-container,
    .cluma-cards.related .cluma-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* --- 8. REALISATIES SWIPER MODE (Swiper.js) --- */
.cluma-realisations-swiper__wrapper {
    width: 100%;
    position: relative;
}

.cluma-realisations-swiper__swiper {
    overflow: visible;
    width: 100%;
}

.cluma-realisations-swiper__swiper .swiper-slide {
    height: auto;
}

/* Realisations card: image 3:2, title below, no overlay */
.cluma-realisations-swiper .cluma-services-carousel__card {
    aspect-ratio: unset !important;
    overflow: visible !important;
    color: var(--body-color, #1a1a1a) !important;
}

.cluma-realisations-swiper .cluma-services-carousel__image-wrap {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    width: 100%;
}

.cluma-realisations-swiper .cluma-services-carousel__image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cluma-realisations-swiper .cluma-services-carousel__card:hover .cluma-services-carousel__image {
    transform: scale(1.05);
}

.cluma-realisations-swiper .cluma-services-carousel__card:hover .cluma-services-carousel__title {
    color: var(--bde-palette-color-2) !important;
}

.cluma-realisations-swiper .cluma-services-carousel__title {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    color: currentColor !important;
    font-size: 1.1rem !important;
    line-height: 1.3 !important;
    margin: 0.75rem 0 0 !important;
    padding: 0 !important;
}

.cluma-realisations-swiper .cluma-services-carousel__title-icon {
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    color: var(--bde-palette-color-2) !important;
}

.cluma-services-carousel__navigation {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.cluma-services-carousel__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    background-color: #1a1a1a;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.cluma-services-carousel__button:hover {
    background-color: #333333;
}

.cluma-services-carousel__button:focus {
    outline: none;
}

.cluma-services-carousel__button:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.cluma-services-carousel__button.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.cluma-services-carousel__button.swiper-button-disabled:hover {
    background-color: #1a1a1a;
}

.cluma-services-carousel__button svg {
    width: 1rem;
    height: 1rem;
}

.cluma-services-carousel__button--prev {
    background-color: #f5f5f5;
    color: #1a1a1a;
}

.cluma-services-carousel__button--prev:hover {
    background-color: #e5e5e5;
}

.cluma-services-carousel__button--prev.swiper-button-disabled:hover {
    background-color: #f5f5f5;
}

@media (max-width: 768px) {
    .cluma-services-carousel__button {
        width: 2.75rem;
        height: 2.75rem;
    }

    .cluma-services-carousel__button svg {
        width: 1.125rem;
        height: 1.125rem;
    }
}

/* SERVICES CAROUSEL CARD STYLING (voor realisaties) */
/* Exact dezelfde styling als services carousel voor 100% consistentie */

.cluma-services-carousel__slide {
    height: auto;
}

.cluma-services-carousel__card {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    text-decoration: none;
    color: #ffffff;
}

.cluma-services-carousel__image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cluma-services-carousel__card:hover .cluma-services-carousel__image {
    transform: scale(1.05);
}

.cluma-services-carousel__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: #03051D;
    opacity: 0.6;
    pointer-events: none;
}

.cluma-services-carousel__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 3;
    text-align: left;
}

.cluma-services-carousel__title {
    margin: 0;
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
}

.cluma-services-carousel__excerpt {
    margin: 0;
    font-size: 0.9375rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cluma-services-carousel__card:hover .cluma-services-carousel__excerpt {
    max-height: 5rem;
    opacity: 1;
    margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cluma-services-carousel__content {
        padding: 1.25rem;
    }

    .cluma-services-carousel__title {
        font-size: 1.25rem;
    }

    .cluma-services-carousel__excerpt {
        font-size: 0.875rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}

@media (max-width: 480px) {
    .cluma-services-carousel__card {
        aspect-ratio: 3 / 4;
    }

    .cluma-realisations-swiper .cluma-services-carousel__card {
        aspect-ratio: unset;
    }

    .cluma-services-carousel__content {
        padding: 1rem;
    }

    .cluma-services-carousel__title {
        font-size: 1.125rem;
    }

    .cluma-services-carousel__excerpt {
        font-size: 0.8125rem;
    }
}

/* --- 9. CONTENT MET AFBEELDING --- */
.cluma-content-image {
    width: 100%;
}

.cluma-content-image__container {
    display: flex;
    gap: 10rem;
    align-items: center;
}

.cluma-content-image__container--image-left {
    flex-direction: row-reverse;
}

.cluma-content-image__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cluma-content-image__label {
    background-color: var(--bde-palette-color-1-175681e6-d8ab-4201-be1b-40771e5329c8);
    padding: 7px 14px 7px 22px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bde-text-color, var(--bde-body-text-color));
    margin-bottom: 0.5rem;
    display: inline-flex;
    width: fit-content;
    border-radius: 50px;
    position: relative;
}

.cluma-content-image__label::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #DE4300;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.cluma-content-image__title {
    margin: 0;
    /* H2 styling erft van Breakdance global settings */
}

.cluma-content-image__description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.cluma-content-image__image {
    flex: 1;
    position: relative;
    overflow: visible !important;

}
.cluma-content-image__image::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 100%;
    bottom: -40px;
    right: -40px;
    background: #DE4300;
    z-index: 1;
    pointer-events: none;
}

.cluma-content-image__container--image-left .cluma-content-image__image::after {
    left: -40px;
    right: auto;
    bottom: -40px;
    right: -40px;
    background: var(--bde-palette-color-1);
    z-index: 1;
    pointer-events: none;
}

.cluma-content-image__image img {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    z-index: 10;
}

/* Button Styles */
.cluma-content-image__button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: var(--bde-button-padding-base);
    text-decoration: none;
    font-size: .8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 0.5rem;
}

/* Primary Button */
.cluma-content-image__button--primary {
    background-color: var(--bde-palette-color-2);
    color: #ffffff !important;
    border: 2px solid var(--bde-palette-color-2);
	font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cluma-content-image__button--primary:hover {
	color: var(--bde-palette-color-2) !important;
    background-color: transparent;
	border-color: var(--bde-palette-color-2);
}

/* Secondary Button */
.cluma-content-image__button--secondary {
    background-color: transparent;
	color: var(--bde-links-color-hover) !important;
    border: 2px solid var(--bde-links-color-hover);
}

.cluma-content-image__button--secondary:hover {
	background-color: var(--bde-links-color-hover);
	border-color: var(--bde-links-color-hover);
    color: #fff !important;
}

/* Text Button */
.cluma-content-image__button--text {
    background-color: transparent;
    color: #1a1a1a;
    border: none;
    padding: 0.75rem 0;
}

.cluma-content-image__button--text:hover {
    color: #de4300;
}

.cluma-content-image__button-text {
    display: inline-block;
}

.cluma-content-image__button-arrow {
    display: inline-flex;
    align-items: center;
    color: inherit;
    transition: transform 0.2s ease;
    line-height: 1;
}

.cluma-content-image__button-arrow svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.cluma-content-image__button:hover .cluma-content-image__button-arrow {
    transform: translateX(4px);
}

.cluma-content-image__button--text .cluma-content-image__button-arrow {
    color: #de4300;
}

.cluma-content-image__button--text:hover .cluma-content-image__button-arrow {
    color: #de4300;
}

/* Responsive */
@media (max-width: 1024px) {
    .cluma-content-image__container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .cluma-content-image__container {
        flex-direction: column !important;
        gap: 2rem;
    }

    .cluma-content-image__container--image-left {
        flex-direction: column !important;
    }

    .cluma-content-image__content {
        order: 2;
    }

    .cluma-content-image__image {
        order: 1;
    }

    .cluma-content-image__description {
        font-size: 0.95rem;
    }
}

/* --- 10. CALL TO ACTION (Dark Theme) --- */
.cluma-cta {
    background-color: var(--bde-palette-color-1-84af11e0-a804-42e9-b750-83d6d0ca75c7);
    padding: 3rem;
}

.cluma-cta__inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.cluma-cta__title {
    margin: 0;
    color: #fff !important;
}

.cluma-cta__description {
    color: var(--bde-palette-color-1-99939e78-90ef-4801-b5ca-2877ec88f6df);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.cluma-cta__button {
    margin-top: 0.5rem;
}

.cluma-cta__button:hover {
    color: #fff !important;
}

.cluma-cta__button:hover .cluma-content-image__button-arrow {
    color: #fff !important;
}

/* --- 11. TESTIMONIAL / BLOCKQUOTE --- */
.cluma-testimonial {
    width: 100%;
    text-align: center;
}

.cluma-testimonial__quote {
    margin: 0 0 1.5rem 0;
    padding: 0;
    border: none;
    font-size: 1.75rem;
    line-height: 1.5;
    color: var(--bde-headings-color);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.cluma-testimonial__quote p:last-child {
    margin-bottom: 0;
}

.cluma-testimonial__image {
    margin-bottom: 1rem;
}

.cluma-testimonial__image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.cluma-testimonial__meta {
    font-size: 0.9rem;
    color: #666;
    font-weight: normal;
}

/* --- 12. VIDEO SECTION --- */
.cluma-video-section {
    width: 100%;
}

.cluma-video-section h2 {
    margin: 0;
}

.cluma-video-section__header {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cluma-video-section__embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #1a1a1a;
}

.cluma-video-section__embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .cluma-video-section__embed {
    }
}

/* --- 13. BENTO GRID --- */
.cluma-bento-grid {
    width: 100%;
}

.cluma-bento-grid__label {
    margin-bottom: 0.5rem;
}

.cluma-bento-grid__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.cluma-bento-card {
    overflow: hidden;
    min-height: 320px;
}

/* Media card */
.cluma-bento-card--media {
    position: relative;
    display: block;
}

.cluma-bento-card--media .cluma-bento-card__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cluma-bento-card--media {
    aspect-ratio: 4 / 5;
}

/* Content card base */
.cluma-bento-card--content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cluma-bento-card__inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cluma-bento-card__title {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 700;
}

.cluma-bento-card__description {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.cluma-bento-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    background: transparent;
    padding: 0.75rem 0;
    width: fit-content;
    margin-top: 0.25rem;
    transition: color 0.2s ease;
}

.cluma-bento-card__cta-arrow {
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s ease;
    line-height: 1;
}

.cluma-bento-card__cta-arrow svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.cluma-bento-card__cta:hover .cluma-bento-card__cta-arrow {
    transform: translateX(4px);
}

/* Content card: grey (default theme styles) */
.cluma-bento-card--grey {
    background-color: var(--bde-palette-color-1-175681e6-d8ab-4201-be1b-40771e5329c8);
}

.cluma-bento-card--grey .cluma-bento-card__title {
    color: var(--bde-headings-color, #1a1a1a);
}

.cluma-bento-card--grey .cluma-bento-card__description {
    color: #666;
}

.cluma-bento-card--grey .cluma-bento-card__cta {
    color: #1a1a1a;
}

.cluma-bento-card--grey .cluma-bento-card__cta:hover {
    color: #de4300;
}

.cluma-bento-card--grey .cluma-bento-card__cta-arrow {
    color: #de4300;
}

.cluma-bento-card--grey .cluma-bento-card__cta:hover .cluma-bento-card__cta-arrow {
    color: #de4300;
}

/* Content card: blue, orange, black (white text) */
.cluma-bento-card--blue {
    background-color: var(--bde-palette-color-1);
}

.cluma-bento-card--orange {
    background-color: var(--bde-palette-color-2);
}

.cluma-bento-card--black {
    background-color: var(--bde-palette-color-1-84af11e0-a804-42e9-b750-83d6d0ca75c7);
}

.cluma-bento-card--blue .cluma-bento-card__title,
.cluma-bento-card--blue .cluma-bento-card__description,
.cluma-bento-card--blue .cluma-bento-card__cta,
.cluma-bento-card--orange .cluma-bento-card__title,
.cluma-bento-card--orange .cluma-bento-card__description,
.cluma-bento-card--orange .cluma-bento-card__cta,
.cluma-bento-card--black .cluma-bento-card__title,
.cluma-bento-card--black .cluma-bento-card__description,
.cluma-bento-card--black .cluma-bento-card__cta {
    color: #fff !important;
}

.cluma-bento-card--blue .cluma-bento-card__cta-arrow,
.cluma-bento-card--orange .cluma-bento-card__cta-arrow,
.cluma-bento-card--black .cluma-bento-card__cta-arrow {
    color: #fff;
}

.cluma-bento-card--blue .cluma-bento-card__cta:hover,
.cluma-bento-card--orange .cluma-bento-card__cta:hover,
.cluma-bento-card--black .cluma-bento-card__cta:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Bento grid responsive */
@media (max-width: 1024px) {
    .cluma-bento-grid__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .cluma-bento-grid__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cluma-bento-card {
        min-height: 280px;
    }

    .cluma-bento-card--content {
        padding: 1.5rem;
    }

    .cluma-bento-card__title {
        font-size: 1.125rem;
    }

    .cluma-bento-card__description {
        font-size: 0.9375rem;
    }
}