:root {
  --color-text-primary-portada: #1f1f1f;
  --color-text-secundary-portada: #3a3a3a;
  --color-grey-portada: #d5d5d5;
}

/* Fin Container */

.tcc_ctn {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

.tcc_itm {
  display: flex;
  width: 100%;
}

/* Portadas Secundarias */

.tcc_itm.tcc_sec {
  padding: 0 20px;
}

.cst_ctn {
  text-decoration: none;
  color: var(--color-text-secundary-portada) !important;
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: space-between;
  margin: 0 0 20px;
  position: relative;
  width: 100%;
}

.cst_hl {
  line-height: 1.2;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
}

.cst_deck {
  line-height: 1.5;
  font-size: 16px;
  font-weight: 400;
  margin: 5px 0;
}

/*Container IMG Portada Principal*/

.image_container_principal {
  position: relative;
}

.image_container_principal::before {
  display: block;
  content: "";
  /* 16:9 aspect ratio */
  padding-bottom: 61.25%;
}

.image_container_principal img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  margin: 5px 0;
  object-fit: cover;
  border-bottom: 1px solid var(--color-grey-portada) !important;
  padding-bottom: 5px;
}

/*Container IMG*/

.image_container {
  position: relative;
}

.image_container::before {
  display: block;
  content: "";
  /* 16:9 aspect ratio */
  padding-bottom: 56.25%;
}

.image_container img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  margin: 5px 0;
  object-fit: cover;
  border-bottom: 1px solid var(--color-grey-portada) !important;
  padding-bottom: 5px;
}

/* Fonts */

.dkt_fs_34 {
  font-size: 25px;
  font-weight: 900;
  color: var(--color-text-primary-portada) !important;
  /* padding: 0 20px; */
}

.dkt_fs_19 {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text-primary-portada) !important;
  display: none;
}

.dkt_fs_22 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-primary-portada) !important;
  /* padding: 0 20px; */
}

/*Modo Responsive*/

@media only screen and (min-width: 993px) {
  .dkt_lh_150 {
    line-height: 1.5;
  }
}

@media only screen and (min-width: 769px) {
  /* Contenedor Genreal */
  .tcc_ctn {
    display: grid;
    grid-template-columns: 65% 1fr;
    grid-template-rows: auto;
    row-gap: 25px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin: 0 0 10px;
    padding: 5px 0;
  }

  .tcc_itm {
    height: 100%;
    margin: 0;
  }

  .tcc_bc {
    order: 0;
    grid-row: span 2;
  }

  .cst_ctn {
    height: 100%;
    margin: 0;
  }
  
  /* Portada Principal */

  /* Imagen de Portada Principal */
  .image_container_principal::before {
    display: block;
    content: "";
    /* 16:9 aspect ratio */
    padding-bottom: 56.25%;
  }

  /* Font Size - Titulo */
  .dkt_fs_34 {
    font-size: 42px;
    color: var(--color-text-primary-portada) !important;
    padding: 0px;
  }
  /* Font Size - Bajada de Titulo */
  .dkt_fs_19 {
    font-size: 18px;
    display: block;
  }

  .dkt_fs_22 {
    padding: 0;
  }

  /* Portadas Secundarias */
  .tcc_itm.tcc_sec {
    padding: 0px;
  }
}

/* Ancho total de IMG de Portada 1 */
@media only screen and (max-width: 766px) {
  .storyCardPrimary {
    margin: 0 0 12px -20px;
    width: calc(100% + 39px);
  }

  .storyCardTag {
    margin-left: 20px !important;
  }
}