.evento-card.destacados {
  width: 100%;
  overflow: hidden;
  padding: 8px;
  border-radius: 16px;
  display: flex;
  align-items: end;
  background-size: cover;
  background-position: center;
  position: relative; }
  .evento-card.destacados .categorias {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px; }
    .evento-card.destacados .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.destacados .categorias .categoria::before {
        content: "";
        display: block;
        width: 8px;
        height: 8px;
        background-color: #5BD38C;
        border-radius: 99px; }
  .evento-card.destacados .event-inner {
    border-radius: 12px;
    background-color: #FFF;
    padding: 8px;
    width: 100%; }
  .evento-card.destacados .titulo {
    color: #003020;
    font-family: IberPangea;
    font-size: 1.5rem;
    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.destacados .titulo {
        font-size: 1.25rem; } }
  .evento-card.destacados .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.destacados .fecha img {
      width: 16px;
      height: 16px;
      object-fit: contain;
      margin-top: -3px; }
      @media screen and (max-width: 768px) {
        .evento-card.destacados .fecha img {
          display: none; } }
    .evento-card.destacados .fecha svg {
      margin-inline: 8px; }
    .evento-card.destacados .fecha time > * {
      margin: 0; }
    .evento-card.destacados .fecha.has-front-text {
      justify-content: end; }
    @media screen and (max-width: 768px) {
      .evento-card.destacados .fecha {
        font-size: 0.875rem; } }
  .evento-card.destacados.small {
    height: 280px; }
  .evento-card.destacados.medium {
    height: 360px; }
  .evento-card.destacados.large {
    height: 500px; }
  .evento-card.destacados.isSuperdestacado {
    height: 554px; }
    @media screen and (max-width: 768px) {
      .evento-card.destacados.isSuperdestacado {
        height: 290px; } }
  .evento-card.destacados:hover .titulo {
    text-decoration: underline; }
