/*!*********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/editorial-section/style.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * Editorial Section Styles - Hybrid Architecture (Touch & Hover)
 */
body.wp-child-theme-osmerova .osmerova-editorial-section {
  padding: clamp(6rem, 15vw, 16rem) 0 clamp(4rem, 10vw, 8rem) 0;
}
body.wp-child-theme-osmerova .osmerova-editorial-section .editorial-main-heading {
  margin-bottom: clamp(4rem, 10vw, 8rem);
  text-align: center;
  padding: 0 1.5rem;
}
body.wp-child-theme-osmerova .osmerova-editorial-section .editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 1rem;
}
@media (max-width: 1700px) {
  body.wp-child-theme-osmerova .osmerova-editorial-section .editorial-grid {
    grid-template-columns: 0.8fr 1fr;
  }
}
@media (max-width: 1350px) {
  body.wp-child-theme-osmerova .osmerova-editorial-section .editorial-grid {
    grid-template-columns: 0.7fr 1fr;
  }
}
body.wp-child-theme-osmerova .osmerova-editorial-section .editorial-grid {
  /* ZALOMENIE SKÔR: Zmenené z 991px na 1150px */
}
@media (max-width: 1150px) {
  body.wp-child-theme-osmerova .osmerova-editorial-section .editorial-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
body.wp-child-theme-osmerova .osmerova-editorial-section .editorial-grid .editorial-image-col {
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  margin-right: 0;
}
@media (min-width: 1151px) {
  body.wp-child-theme-osmerova .osmerova-editorial-section .editorial-grid .editorial-image-col {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-right: 3rem;
  }
}
body.wp-child-theme-osmerova .osmerova-editorial-section .editorial-grid .editorial-image-col img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1150px) {
  body.wp-child-theme-osmerova .osmerova-editorial-section .editorial-grid .editorial-image-col img {
    aspect-ratio: 4/3;
  }
}
body.wp-child-theme-osmerova .osmerova-editorial-section .editorial-grid .editorial-list-col {
  counter-reset: editorial-num;
  display: flex;
  flex-direction: column;
  margin-right: 5vw;
}
@media (max-width: 1150px) {
  body.wp-child-theme-osmerova .osmerova-editorial-section .editorial-grid .editorial-list-col {
    margin-right: 0;
    padding: 0 1.5rem;
  }
}
/**
 * Editorial Item Styles - Desktop vs Mobile
 */
body.wp-child-theme-osmerova .osmerova-editorial-item {
  counter-increment: editorial-num;
  border-bottom: 1px solid var(--osm-morning-mist, #ccc);
  padding: 0;
  min-height: 6rem;
  cursor: pointer;
  /* --------------------------------------------------------
     DESKTOP LAYOUT (Pôvodná Flex architektúra s maskou)
     Platí pre šírku 1151px a viac
     -------------------------------------------------------- */
}
@media (min-width: 1151px) {
  body.wp-child-theme-osmerova .osmerova-editorial-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  body.wp-child-theme-osmerova .osmerova-editorial-item .item-left {
    flex: 1;
  }
  body.wp-child-theme-osmerova .osmerova-editorial-item .item-left h3 {
    margin: 0;
  }
  body.wp-child-theme-osmerova .osmerova-editorial-item:first-child .item-right .editorial-number {
    letter-spacing: 0.15em;
  }
  body.wp-child-theme-osmerova .osmerova-editorial-item .item-right {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    justify-items: end;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  body.wp-child-theme-osmerova .osmerova-editorial-item .item-right .editorial-number, body.wp-child-theme-osmerova .osmerova-editorial-item .item-right .editorial-description {
    grid-column: 1;
    grid-row: 1;
  }
  body.wp-child-theme-osmerova .osmerova-editorial-item .item-right .editorial-number {
    display: none;
    color: var(--osm-morning-mist, #ccc);
    font-family: var(--osm-h2-family);
    font-size: var(--osm-h2-size);
    font-weight: var(--osm-h2-weight);
    margin: 0;
  }
  body.wp-child-theme-osmerova .osmerova-editorial-item .item-right .editorial-description {
    margin: 0;
  }
  body.wp-child-theme-osmerova .osmerova-editorial-item .item-right .editorial-description p {
    margin: 0;
  }
}
body.wp-child-theme-osmerova .osmerova-editorial-item {
  /* --------------------------------------------------------
     MOBILE/TABLET LAYOUT (Klasický Akordeón)
     Platí pre šírku do 1150px
     -------------------------------------------------------- */
}
@media (max-width: 1150px) {
  body.wp-child-theme-osmerova .osmerova-editorial-item {
    display: grid;
    grid-template-columns: 1fr auto;
    /* FIX: Zarovnanie na vrch (start) zaistí, že číslo a nadpis neuskočia, keď sa pod nimi rozbalí text */
    align-items: center;
    padding: 1.5rem 0;
  }
  body.wp-child-theme-osmerova .osmerova-editorial-item .item-left {
    grid-column: 1;
    grid-row: 1; /* Striktné umiestnenie do prvého riadku */
  }
  body.wp-child-theme-osmerova .osmerova-editorial-item .item-right {
    display: contents;
  }
  body.wp-child-theme-osmerova .osmerova-editorial-item .editorial-number {
    display: none;
    grid-column: 2; /* Číslo napevno ukotvené v pravom stĺpci */
    grid-row: 1; /* V rovnakom riadku ako nadpis */
    color: var(--osm-morning-mist, #ccc);
    font-family: var(--osm-h2-family);
    font-size: var(--osm-h2-size);
    font-weight: var(--osm-h2-weight);
    margin: 0;
  }
  body.wp-child-theme-osmerova .osmerova-editorial-item .editorial-description {
    grid-column: 1/-1; /* Text sa rozleje na celú šírku */
    grid-row: 2; /* Zaradený do nového riadku pod nadpisom */
    overflow: hidden;
    margin-top: 0;
  }
  body.wp-child-theme-osmerova .osmerova-editorial-item .editorial-description p {
    margin: 0;
  }
}

/*# sourceMappingURL=style-index.css.map*/