.tile-block-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-right: -6px;
}

.tile-block-unit {
    width: Calc(25% - 16px);
}

.tile-block-item {
    text-align: center;
cursor:pointer;

}

.tile-block-item img {
    width: 100%;
    object-fit: contain;
}


.tile-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(184, 106, 171, 0.8);
    width: 100%;
    height: 100%;
    display: none;
}

.tile-modal.active {
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 1;
}

.tile-modal-content {
    max-width: 80%;
    width: 800px;
    background: #ffffff;
    padding: 40px 24px;
    border-radius: 24px;
    position: relative;
    z-index: 1;
}
.tile-modal-content::after {
    content: '';
    background-image: url(https://seenheardhelped.osky.dev/wp-content/uploads/2025/05/icon-logo-1.png);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    opacity: 0.1;
}

span.tile-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 30px;
    cursor: pointer;
}

.tile-modal-content-inner img {
    width: 50%;
    object-fit: contain;
}

.tile-modal-content-inner {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.tile-modal-content-text p {
    font-size: 17px;
}

a.tile-button {
    display: inline-block;
    padding: 12px 16px;
    background: #B86AAB;
    border-radius: 25px;
    font-size: 17px;
color: #000;
text-decoration: none;
    border: 1px solid #000000;
}
.tile-block-wrapper.slick-slider {
	display: block !important;
}
ul.slick-dots {
    display: flex;
    justify-content: center;
    padding: 0;
}
#seen_color ul.slick-dots li.slick-active button::before{
	background: #DD3333;
	border: 1px solid #000;
}

#heard_color ul.slick-dots li.slick-active button::before{
	background: #b86aab;
	border: 1px solid #000;
}

#helped_color ul.slick-dots li.slick-active button::before{
	background: #ffffff;
	border: 1px solid #000;
}

ul.slick-dots li button::before {
    content: '';
    height: 14px;
    width: 14px;
    border-radius: 50px;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
}
ul.slick-dots li{
font-size: 0;
}
.slick-dots button:focus {
    background: unset;
 background-color: unset;
}
	
ul.slick-dots li button {
    height: 10px;
    width: 10px;
    font-size: 0;
    border: none;
    position: relative;
}

@media (min-width: 800px) and (max-width: 1279px) {
    .tile-block-unit {
        width: calc(50% - 16px);
    }

    .tile-modal-content h3 {
        font-size: 28px;
    }

}

@media(max-width: 799px) {
    .tile-block-unit {
        width: 100%;
    }

    .tile-modal-content-inner {
        flex-direction: column;
    }

    .tile-modal-content h3 {
        font-size: 24px;
    }

    .tile-modal-content {
        max-width: 100%;
    }

    .tile-modal {
        height: 100vh;
        margin-top: 53px;
    }

}