.ats-master-card {
    margin-bottom: 10px;
}

.ats-master-card__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    height: 100%;
    width: 100%;
}

.ats-master-card__media {
    position: relative;
    overflow: hidden;
    height: 380px;
    border-radius:20px;
}

.ats-master-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ats-master-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    xxbackdrop-filter: blur(2px);
    transition: opacity 0.5s ease;
    z-index: 1;
}

.ats-master-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
    z-index: 4;
}

.ats-master-card__content {
    display:flex;
    flex-direction: column;
    align-items: center;
    gap:20px;
    padding: 40px 20px;
    background-color: var(--card-bg);
    border-radius: 20px;
}

.ats-master-card__title {
    font-family: "Ivy Presto Text", Helvetica, Arial, serif;
    font-size: 30px;
    font-weight: 300;
    padding-top: 30px;
    margin-bottom: 0;
    background: url('../images/lotus.svg') center 10px no-repeat;
}

.ats-master-card__body p {
    font-size: 16px;
    line-height: 1.25;
    text-align: center !important;
}

.ats-master-card__body p:first-child {
    margin-top: 0;
}
.ats-master-card__body p:last-child {
    margin-bottom: 0;
}

.ats-master-card .ats-master-card__cta,
.ats-master-card a.ats-master-card__cta:hover,
.ats-master-card a.ats-master-card__cta:focus,
.ats-master-card a.ats-master-card__cta:active,
.ats-master-card a.ats-master-card__cta:visited {
    color: var(--dark);
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--dark-40);

}

@media (min-width: 1025px) {

}