.l-col > .c-card {
  float: left;
  padding: var(--grid-gap);
  width: 100%;
  -webkit-transition: unset;
  transition: unset;
}
@media all and (min-width: 37.5em) {
  .l-col--2 > .c-card {
    width: 50%;
  }
}
@media all and (min-width: 37.5em) {
  .l-col--3 > .c-card {
    width: 50%;
  }
}
@media all and (min-width: 75em) {
  .l-col--3 > .c-card {
    width: 33.333%;
  }
}
@media all and (min-width: 37.5em) {
  .l-col--4 > .c-card {
    width: 50%;
  }
}
@media all and (min-width: 56.25em) {
  .l-col--4 > .c-card {
    width: 33.333%;
  }
}
@media all and (min-width: 75em) {
  .l-col--4 > .c-card {
    width: 25%;
  }
}
.l-col.is-visible:before {
  display: none;
}
.l-col.is-visible .c-card {
  opacity: 1;
}

.c-card {
  position: relative;
  width: 100%;
}
.c-card--featured:before {
  background-color: var(--color);
  content: "";
  display: block;
  height: 24px;
  -webkit-mask: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 30'%3e%3cpath d='M0,0H18V30L9,18.5,0,30Z'/%3e%3c/svg%3e ");
          mask: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 30'%3e%3cpath d='M0,0H18V30L9,18.5,0,30Z'/%3e%3c/svg%3e ");
  opacity: 0;
  position: absolute;
  right: 1rem;
  top: var(--grid-gap);
  -webkit-transition: all 0.24s ease-out;
  transition: all 0.24s ease-out;
  -webkit-transform: scale(0) translateY(-100%);
          transform: scale(0) translateY(-100%);
  width: 14px;
  z-index: 2;
}
.c-card--featured:hover:before {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 1;
  -webkit-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
}
.c-card__header {
  border-radius: var(--border-radius);
  display: block;
  margin: 0;
  overflow: hidden;
  position: relative;
}
.c-card__header img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
}
.c-card__body {
  color: var(--text-color);
  text-align: center;
  width: 100%;
}
.c-card__body--compact {
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  opacity: 0;
  position: absolute;
  top: 0;
  text-transform: uppercase;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}
.c-card__text {
  padding: 1.6rem 1.0666666667rem;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.c-card__text > time, .c-card__text > span {
  display: block;
  font-size: 0.624295077rem;
  letter-spacing: 0.09em;
  margin-top: 0.8rem;
  text-transform: uppercase;
}
.c-card__text > h2 {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 0.5333333333rem;
}
.c-card__text--compact {
  opacity: 0;
  padding: 2.4rem;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-transform: translateY(15%);
          transform: translateY(15%);
}
.c-card__text--compact > p {
  font-size: 0.624295077rem;
}
.c-card__text--compact > h2 {
  font-size: 0.8888888889rem;
  font-variation-settings: "wght" 700;
  line-height: 1.3;
  margin-top: 0.5333333333rem;
}
.c-card__link {
  color: var(--dark);
}
.c-card__link:hover {
  color: var(--color);
}
.c-card__link:hover .c-card__header > img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.c-card__link:hover .c-card__body {
  margin: 0;
  opacity: 1;
}
.c-card__link:hover .c-card__text {
  opacity: 0.6;
  -webkit-transform: translateY(-0.5333333333rem);
          transform: translateY(-0.5333333333rem);
  will-change: transform;
}
.c-card__link:hover .c-card__text--compact {
  opacity: 1;
  -webkit-transform: perspective(0) translateY(0);
          transform: perspective(0) translateY(0);
  width: 100%;
}
/* 
.logo {
  font-family: "Great Vibes";
  font-size: 48px;
  font-weight: 400;
  line-height: 40px;
  font-style: italic;
  color: rgb(221, 36, 144);
}

html[dir="rtl"] .logo,
html[dir="rtl"] .busscale {
  font-family: "Marhey", "Arial", sans-serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  text-transform: none !important;
} */




/* For screens smaller than 768px (typical tablet size) */
@media screen and (max-width: 767px) {
  .logo {
      font-size: 30px; /* Reduces font size to 80% of its original size */
      line-height: 20px;  /* Slightly reduced line height */
  }
}

/* For screens smaller than 480px (typical mobile size) */
@media screen and (max-width: 479px) {
  .logo {
      font-size: 25px; /* Further reduces font size for very small screens */
      line-height: 20px; /* Further reduced line height */
  }
  
}
