/* Featured Cards Section */
.featured-menu-header {
    text-align: center;
    padding: 1rem;
    margin-bottom: 0;
    padding-bottom: 0;
}
.featured-menu-title {
    padding: 0 1rem
}
.featured-menu-subtitle {
    width: 100%;
    line-height: 1;
}

/* Featured Cards Container */
.featured-card-grid {
    display: flex;
    flex-flow: row wrap;
    padding: 1rem;
    gap: 1rem;
    align-content: center;
    justify-content: center;
}

/* Featured Card */
.featured-card {
    transition: all .4s;
    position: relative;
    align-content: center;
    max-width: 275px;
    width: 100%;
    height: 315px;
    text-align: center;
}
.featured-card-title {
    transition: all .4s;
    margin: 0;
}
.featured-card-subtitle p {
    padding: 0;
}
.featured-card-icon {
    max-height: 70px;
    height: 100%;
}
.featured-card-description,
.featured-card-description p,
.featured-card-button {
    transition: all .4s;
    opacity: 0;
    height: 0;
    line-height: 0;
    padding: 0 inherit;
    margin: 0 1rem;
}
.featured-card-inner-content {
    position: relative;
    transition: all .4s;
    z-index: 2;
    text-shadow: 2px 2px 4px #000000;
}
.featured-card-button .et_pb_button {
    transition: all .4s;
    margin-top: 1rem;
    line-height: 1 !important;
    border: 1px groove white;
    display: none;
}

/* Featured Card Hover Effects */
.featured-card:hover {
    transition: all .4s;
    transform: scale(1.08);
}
.featured-card:hover .featured-card-title {
    transition: all .4s;
    color: white !important;
}
.featured-card:hover .featured-card-description {
    height: 100%;
}
.featured-card:hover .featured-card-description:before {
    content: "";
    display: block;
    width: 40%;
    height: 1px;
    margin: .5em auto;
    background: linear-gradient(to right, transparent 0%, white, transparent 100%);
    transition: all .4s;
}
.featured-card:hover .featured-card-description,
.featured-card:hover .featured-card-description p,
.featured-card:hover .featured-card-button {
    transition: all .4s;
    line-height: 1.1;
    height: fit-content;
    opacity: 1;
}
.featured-card:hover .featured-card-button .et_pb_button {
    display: inline-block;
    transition: all .4s;
}

/* Card visual overlays */
.featured-card-visual-overlay {
    transition: all .4s;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
  	background: transparent;
}
.featured-card:hover .featured-card-visual-overlay {
    transition: all .4s;
}
.corner-overlay-top:before, .corner-overlay-top:after,
.corner-overlay-bottom:before, .corner-overlay-bottom:after {
    content: '';
    position: absolute;
    right: 0;
    height: 30px;
    width: 30px;
    margin: 1em;
}
.corner-overlay-top:before, .corner-overlay-top:after {
    border-top: 2px groove white;
    top: 0;
}
.corner-overlay-bottom:before, .corner-overlay-bottom:after {
    border-bottom: 2px groove white;
    bottom: 0;
}
.corner-overlay-top:before, .corner-overlay-bottom:before {
    left: 0;
    border-left: 2px groove white;
}
.corner-overlay-top:after, .corner-overlay-bottom:after {
    right: 0;
    border-right: 2px groove white;
}

/* Divider & accent bars */
.featured-subtitle-divider:before {
    content: "";
    display: block;
    margin: 0em auto;
    width: 40%;
    height: 1px;
    margin: .5rem auto;
    background: linear-gradient(to right, transparent 0%, #24205c, transparent 100%);
}
.featured-accent-bars {
  position: relative;
  display: inline-flex;
  justify-content: center;
  text-align: center;
}
.featured-accent-bars:before,
.featured-accent-bars:after {
  content: "";
  align-self: center;
  height: 1px;
  width: 10%;
  max-width: 50px;
  min-width: 25px;
  margin: 0 .5rem;
}
.featured-accent-bars:after {
  background: linear-gradient(to right, #24205c 50%, transparent);
}
.featured-accent-bars:before {
  background: linear-gradient(to left, #24205c 50%, transparent);
}
@media only screen and (max-width: 480px) {
    .featured-menu-section-title {
        font-size: 23px;
    }
    .featured-accent-bars {
        font-size: 14px;
    }
    .featured-accent-bars:before,
    .featured-accent-bars:after { 
        display: none;
    }
}
