.exult-feature-card__link{
  display:block;
  text-decoration:none;
  color:inherit;
}

/* Card */
.exult-feature-card{
  border-radius:22px;
  overflow:hidden;
  background:var(--exult-feature-card-bg);
  padding:0 !important;
}

/* Media base */
.exult-feature-card__media{
  position:relative;
  width:100%;
}

/* ICON CARD */
.exult-feature-card__media--icon{
     padding: 10px 24px 0;
}

.exult-feature-card__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:54px;
  line-height:1;
  color:#fff;
}

.exult-feature-card--icon .exult-feature-card__content {
    padding: 0px 22px 22px;
    color: #fff;
}

/* Custom icon image and inline SVG support */
.exult-feature-card__icon--img,
.exult-feature-card__icon--svg{
  line-height:0;
}

.exult-feature-card__icon--img img{
  width:100px;
  height:100px;
  object-fit:contain;
  display:block;
}

.exult-feature-card__icon--svg svg{
  width:100px;
  height:100px;
  display:block;
}

/* IMAGE CARD */
.exult-feature-card__media--image{
  height:170px;
  overflow:hidden;
}

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

/* Optional curve overlay */
.exult-feature-card__media--image::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:90px;
  background-image: var(--exult-feature-curve, none);
  background-position: bottom center;
  background-repeat:no-repeat;
  background-size:100% auto;
  pointer-events:none;
}

/* Content */
.exult-feature-card__content{
  padding:18px 22px 22px;
  color:#fff;
}

.exult-feature-card__title{
  font-size:20px;
  line-height:1.15;
  font-weight:500;
  color:#fff;
}

.exult-feature-card__body{
  margin:0;
  font-size:14px;
  line-height:1.45;
  color:#fff;
  padding-bottom:15px;
}

/* Button */
.exult-feature-card__actions{
  margin-top:18px;
}

.exult-feature-card__btn{
  display:inline-block;
  border-radius:999px;
  padding:10px 18px;
  font-size:14px;
  font-weight:400;
  text-transform:uppercase;
  letter-spacing:0.3px;
  transition:all 0.2s ease;
  box-sizing:border-box;
}

/* Filled style */
.exult-feature-card.exult-feature-btn--filled .exult-feature-card__btn{
  background:var(--exult-feature-btn);
  color:#fff;
  border:0;
}

/* Outline style */
.exult-feature-card.exult-feature-btn--outline .exult-feature-card__btn{
  background:transparent;
  color:#fff;
  border:2px solid rgba(255,255,255,0.9);
}

.exult-feature-card__btn--static{ cursor:default; }

.exult-feature-card__link .exult-feature-card{ transition:transform 0.15s ease; }
.exult-feature-card__link:hover .exult-feature-card{ transform:translateY(-2px); }

/* 1) Make the card fill the column height */
.exult-feature-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* If the entire card is clickable, the <a> wrapper must also fill height */
a.exult-feature-card__link {
  display: block;
  height: 100%;
  text-decoration: none;
}

a.exult-feature-card__link > .exult-feature-card {
  height: 100%;
}

/* 2) Let the content area expand to fill leftover space */
.exult-feature-card__content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

/* 3) Push the actions (button) to the bottom */
.exult-feature-card__actions {
  margin-top: auto;
}

.exult_feature_card {
	height: 100%;
	display: flex;
}