#organy-szkoly #oferta-cards-custom .wp-block-column{
	aspect-ratio: 1/1;
}


/* Kontener główny siatki */
#oferta-cards-custom {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto 30px auto;
}



/* Kolumny */
#oferta-cards-custom .wp-block-column {
    flex: 1;
 /*   min-width: 250px;*/
    position: relative;
}



/* Karta (Cover) */
.custom-cover {
    position: relative;
    min-height: 192px;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: box-shadow 0.3s ease;
}



/* Obraz tła */
.custom-cover .custom-cover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border: none;
}


/* Nakładka przyciemniająca (dim-70) */
.custom-cover .overlay {
    position: absolute;
    inset: 0;
	background: linear-gradient(180deg, rgba(30, 41, 59, 0.3) 0%, rgb(0 0 0) 100%);
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.2) 0%, rgba(30, 41, 59, 0.4) 35%, rgba(0, 0, 0, 0.85) 85%, rgb(0, 0, 0) 100%);
	background-color: transparent;
    z-index: 2;
}


/* Treść (Tytuł) */
.custom-cover .content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    width: 100%;
}

.custom-cover h3 {
    margin: 0;
    font-size: 17px;
    color: #ffffff !important;
    line-height: 1.2;
}


/* Link na całą kartę */
.custom-cover a {
    position: absolute;
    inset: 0;
    z-index: 4;
    text-decoration: none;
}


.custom-cover:hover {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
}

	
.custom-cover:hover .custom-cover-img{

    transform: scale(1.1);
    transition: transform 0.4s ease;
}


@media screen and (max-width: 600px) {
   #oferta-cards-custom .wp-block-column {
        flex-basis: 40%;

    }
    .custom-cover {
        min-height: 150px;
    }
}


@media screen and (max-width: 470px) {
   #organy-szkoly #oferta-cards-custom .wp-block-column {
	   aspect-ratio: unset;
	}
}	