/* === WRAPPER (volle breedte sectie centreren) === */
.custom-blurbs-wrapper {
    width: 100%;
    /* padding: 0; */
    border: 0px solid lime;
}

.custom-blurbs-wrapper .custom-blurbs {
    max-width: min(92vw, 1100px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
    gap: 3%;
    width: auto;
    margin: auto;
    padding: 10px clamp(20px, 6vw, 57px);
    border: 0px dashed hotpink;
}

.custom-blurbs .blurb_card {
    background: #f8f3eb;
    border-radius: 10px;
    padding: 10px 15px;
    box-shadow: 0 4px 15px rgb(0 0 0 / .07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex: 1 1 0%;
    flex-direction: column;
    border: 1.5px solid #ffc857;
    overflow: hidden
}

.custom-blurbs .blurb_image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 10px;
    padding: 0;
    margin: 0 0 0 0;
    border: 0 solid red;
    background: #ff0;
    text-align: center
}

.custom-blurbs .blurb_image img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border: 0 dashed blue;
    background: transparant;
    padding: 0
}

.custom-blurbs .blurb_icon {
    font-size: 77px;
    border: 1px dotted blue;
    background: #ff0;
    color: goldenrod;
    margin-bottom: 15px;
    margin-top: 15px;
    padding-bottom: 15px;
    padding-top: 25px
}

.custom-blurbs .blurb_card:hover {
    box-shadow: 0 8px 15px rgb(0 82 72 / .46);
    transform: translateY(-3px)
}

.custom-blurbs .blurb_card h3 {
    font-size: clamp(0.95rem, 2.5vw + 0.5rem, 1.5rem);
    font-family: 'Cinzel Decorative', serif;
    font-weight: 600;
    text-transform: none;
    text-shadow: .01em .01em .01em rgb(0 0 0 / .2);
    color: #375248;
    border: 0 solid red;
    margin: 10px 0 5px;
    padding: 15px 0
}

.custom-blurbs .blurb_card h3::after {
    content: '';
    display: block;
    width: 50%;
    height: 2.5px;
    background: linear-gradient(90deg, #80cda7, #ffc857);
    border: 0 solid lime;
    margin: 10px auto 0
}

.custom-blurbs .blurb_card h4 {
    font-family: 'Cinzel Decorative', serif;
    color: hotpink;
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: .1px;
    margin: 5px 0 8px 0;
    text-align: center
}

.custom-blurbs .blurb_card p {
    font-family: 'Fauna One', serif;
    font-size: .95rem;
    color: rgb(55 82 72 / .9);
    letter-spacing: .1px;
    line-height: 1.5;
    padding: 0 15px;
    text-align: center;
    margin: 0 0 10px 0;
    border: 0 solid #f0f
}

.custom-blurbs .blurb_btn {
    background: #375248;
    color: #ffc857;
    border: 2px solid #ffc857;
    padding: 12px 24px;
    font-family: 'fauna one', serif;
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1rem);
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    line-height: 1;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
    display: inline-block
}

.custom-blurbs .blurb_btn:hover,
.custom-blurbs .blurb_btn:focus {
    background: #ffc857;
    color: #375248;
    border: 2px solid #375248
}

.custom-blurbs .blurb_cta {
    margin: 6px 0 0 0;
    text-align: center;
    background: transparant;
    border: 0 solid red
}

@media (max-width: 767px) {
    .custom-blurbs {
        flex-wrap: wrap;
        border: 2px solid red
    }

    .custom-blurbs .blurb_card {
        flex: 1 1 100%;
        border: 0px dashed hotpink;
        padding: 10px 0
    }
}

@media (min-width: 768px) and(max-width: 1024px) {
    .custom-blurbs {
        flex-wrap: wrap;
        border: 0px solid blue
    }

    .custom-blurbs .blurb_card {
        flex: 1 1 calc(50% - 10px);
        border: 0px dashed #f0f
    }
}

@media (min-width: 1025px) {
    .custom-blurbs .blurb_card {
        flex: 1 1 calc(33.333% - 13.33px);
        border: 0px dashed lime
    }
}

@media (prefers-reduced-motion: reduce) {
    .custom-blurbs .blurb_card {
        transition: none;
        border: 2px dashed cyan;
    }
}

