.education-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.education-card {
    background-color: var(--color-main-8);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
    height: 340px;
	box-shadow: 2px 4px 20px rgba(0, 0, 0, 0.27);
}

.education-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.education-card__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.education-card__content {
    padding: 20px;
}

.education-card__title {
    margin: 0 0 10px;
    font-size: 1.1em;
}

.education-card__excerpt p {
	position: absolute;
    right: 0;
    bottom: 0;
	margin: 0;
    padding: 5px;
	color: var(--color-newbw-2)
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 4px 0 0 0;
    font-weight: bold;
}

.education-card__link {
    display: inline-block;
    color: var(--color-main-3);
    text-decoration: none;
    font-weight: bold;
}
.bak-dop{
	text-align: center;
	color: var(--color-newbw-2)
}

/*
:where(.wp-block-columns) {
    margin-bottom: 0px;
}

/*.wp-block-columns div{
	margin-top: 10px;
}*/