.evento-card.default {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(176, 169, 163, 0.5);
  background-color: #FFF;
  padding: 4px;
  position: relative; }
  .evento-card.default .categorias {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    z-index: 1; }
    .evento-card.default .categorias .categoria {
      border-radius: 8px;
      background-color: #fff;
      display: flex;
      padding: 4px 8px;
      justify-content: center;
      align-items: center;
      gap: 4px;
      width: fit-content;
      color: var(--Forest-100, #00402A);
      text-align: center;
      font-family: IberPangea;
      font-size: 0.75rem;
      font-style: normal;
      font-weight: 500;
      line-height: 100%;
      text-transform: uppercase; }
      .evento-card.default .categorias .categoria::before {
        content: "";
        display: block;
        width: 8px;
        height: 8px;
        background-color: #5BD38C;
        border-radius: 99px; }
  .evento-card.default .event-inner {
    padding: 8px; }
  .evento-card.default .titulo {
    color: #000;
    font-family: IberPangea;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 130%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 8px; }
    @media screen and (max-width: 768px) {
      .evento-card.default .titulo {
        font-size: 1rem;
        line-height: 120%;
        word-break: break-all; } }
  .evento-card.default .fecha {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #00402A;
    font-family: IberPangea;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    border-top: 1px solid rgba(162, 188, 177, 0.5);
    padding-top: 11px;
    justify-content: space-between; }
    .evento-card.default .fecha img {
      width: 16px;
      height: 16px;
      object-fit: contain;
      margin-top: -3px; }
      @media screen and (max-width: 768px) {
        .evento-card.default .fecha img {
          display: none; } }
    .evento-card.default .fecha svg {
      margin-inline: 8px; }
    .evento-card.default .fecha time > * {
      margin: 0; }
    .evento-card.default .fecha.has-front-text {
      justify-content: end; }
    @media screen and (max-width: 768px) {
      .evento-card.default .fecha {
        font-size: 0.875rem; } }
  .evento-card.default.one-day {
    height: 132px;
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr; }
    .evento-card.default.one-day .imagen {
      width: 162px;
      height: auto;
      object-fit: cover;
      object-position: center;
      border-radius: 12px;
      aspect-ratio: 162 / 124;
      position: relative;
      overflow: hidden; }
      .evento-card.default.one-day .imagen img {
        width: 100%;
        height: 100%;
        border-radius: 12px;
        object-fit: cover;
        object-position: center;
        transition: .4s all ease-in-out; }
      @media screen and (max-width: 768px) {
        .evento-card.default.one-day .imagen {
          width: 139px;
          height: 100%;
          aspect-ratio: unset; } }
    @media screen and (max-width: 768px) {
      .evento-card.default.one-day {
        height: 110px; } }
  .evento-card.default.small {
    border-radius: 16px; }
    .evento-card.default.small .imagen {
      width: 100%;
      height: auto;
      border-radius: 12px;
      object-fit: cover;
      object-position: center;
      margin-bottom: 12px;
      aspect-ratio: 420 / 130;
      overflow: hidden; }
      .evento-card.default.small .imagen img {
        width: 100%;
        height: 100%;
        border-radius: 12px;
        object-fit: cover;
        object-position: center;
        transition: .4s all ease-in-out; }
  .evento-card.default.medium {
    border-radius: 16px; }
    .evento-card.default.medium .imagen {
      width: 100%;
      height: auto;
      border-radius: 16px;
      object-fit: cover;
      object-position: center;
      margin-bottom: 12px;
      aspect-ratio: 420 / 226;
      overflow: hidden; }
      .evento-card.default.medium .imagen img {
        width: 100%;
        height: 100%;
        border-radius: 12px;
        object-fit: cover;
        object-position: center;
        transition: .4s all ease-in-out; }
  .evento-card.default.large {
    border-radius: 16px; }
    .evento-card.default.large .imagen {
      width: 100%;
      height: auto;
      border-radius: 12px;
      object-fit: cover;
      object-position: center;
      margin-bottom: 12px;
      aspect-ratio: 420 / 356;
      overflow: hidden; }
      .evento-card.default.large .imagen img {
        width: 100%;
        height: 100%;
        border-radius: 12px;
        object-fit: cover;
        object-position: center;
        transition: .4s all ease-in-out; }
      @media screen and (max-width: 768px) {
        .evento-card.default.large .imagen {
          max-height: 165px; } }
    .evento-card.default.large.titulo {
      font-size: 1.5rem; }
  .evento-card.default:hover .titulo {
    text-decoration: underline; }
  .evento-card.default:hover .imagen img {
    transform: scale(1.05); }
