/* ================================
   CIOH HOME - FASE 1
   OJS 3.4.0.8
================================ */

.pkp_page_index .cioh-home {
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  color: #1b1b1b;
}

/* HERO / CARRUSEL */

.pkp_page_index .cioh-hero {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  margin-bottom: 28px;
}

.pkp_page_index .cioh-hero input {
  display: none;
}

.pkp_page_index .cioh-slides {
  width: 300%;
  height: 100%;
  display: flex;
  transition: transform .6s ease;
}

.pkp_page_index .cioh-slide {
  position: relative;
  width: 33.333%;
  height: 100%;
}

.pkp_page_index .cioh-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.18);
  z-index: 1;
}

.pkp_page_index .cioh-slide img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.pkp_page_index .cioh-hero-text {
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: right;
  color: #fff;
}

.pkp_page_index .cioh-hero-text p {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
}

.pkp_page_index .cioh-hero-text h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 800;
  color: #fff;
}

.pkp_page_index .cioh-hero-text h2 {
  margin: 8px 0 0;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}

.pkp_page_index .cioh-hero-text a {
  position: absolute;
  left: -560px;
  bottom: -55px;
  background: #00aeef;
  color: #fff;
  padding: 9px 22px;
  border-radius: 22px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

.pkp_page_index .cioh-hero-text a:hover {
  background: #008fc5;
  color: #fff;
}

.pkp_page_index #cioh-slide-1:checked ~ .cioh-slides {
  transform: translateX(0);
}

.pkp_page_index #cioh-slide-2:checked ~ .cioh-slides {
  transform: translateX(-33.333%);
}

.pkp_page_index #cioh-slide-3:checked ~ .cioh-slides {
  transform: translateX(-66.666%);
}

.pkp_page_index .cioh-arrows label {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  color: #fff;
  font-size: 62px;
  line-height: 1;
  cursor: pointer;
  text-shadow: 0 2px 6px rgba(0,0,0,.45);
}

.pkp_page_index .cioh-arrows .prev {
  left: 18px;
}

.pkp_page_index .cioh-arrows .next {
  right: 18px;
}

.pkp_page_index #cioh-slide-1:checked ~ .cioh-arrows .prev1,
.pkp_page_index #cioh-slide-1:checked ~ .cioh-arrows .next1,
.pkp_page_index #cioh-slide-2:checked ~ .cioh-arrows .prev2,
.pkp_page_index #cioh-slide-2:checked ~ .cioh-arrows .next2,
.pkp_page_index #cioh-slide-3:checked ~ .cioh-arrows .prev3,
.pkp_page_index #cioh-slide-3:checked ~ .cioh-arrows .next3 {
  display: block;
}

/* NÚMEROS RECIENTES + ALCANCE */

.pkp_page_index .cioh-phase-one {
  max-width: 1180px;
  margin: 0 auto 45px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 55px;
  align-items: start;
}

.pkp_page_index .cioh-recent h2,
.pkp_page_index .cioh-scope h2 {
  margin: 0 0 18px;
  font-size: 23px;
  font-weight: 800;
  color: #111;
}

.pkp_page_index .cioh-issues {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pkp_page_index .cioh-issue-card img {
  width: 100%;
  max-width: 175px;
  height: 220px;
  object-fit: cover;
  display: block;
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
}

.pkp_page_index .cioh-issue-card h3 {
  margin: 13px 0 2px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
  color: #111;
}

.pkp_page_index .cioh-issue-card a {
  font-size: 13px;
  color: #003b5c;
  text-decoration: none;
}

.pkp_page_index .cioh-issue-card a:hover {
  text-decoration: underline;
}

.pkp_page_index .cioh-scope {
  background: #f1f1f1;
  padding: 28px 30px;
  min-height: 260px;
}

.pkp_page_index .cioh-scope h2 {
  color: #1b5b85;
}

.pkp_page_index .cioh-scope p {
  margin: 0 0 25px;
  font-size: 15px;
  line-height: 1.45;
}

.pkp_page_index .cioh-scope a {
  color: #1b5b85;
  font-weight: 700;
  text-decoration: none;
}

.pkp_page_index .cioh-scope a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .pkp_page_index .cioh-hero {
    height: 300px;
  }

  .pkp_page_index .cioh-slide img {
    height: 300px;
  }

  .pkp_page_index .cioh-hero-text h1 {
    font-size: 36px;
  }

  .pkp_page_index .cioh-hero-text h2 {
    font-size: 17px;
  }

  .pkp_page_index .cioh-hero-text a {
    position: static;
    display: inline-block;
    margin-top: 18px;
  }

  .pkp_page_index .cioh-phase-one {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .pkp_page_index .cioh-hero {
    height: 260px;
  }

  .pkp_page_index .cioh-slide img {
    height: 260px;
  }

  .pkp_page_index .cioh-hero-text {
    right: 30px;
    left: 30px;
  }

  .pkp_page_index .cioh-hero-text h1 {
    font-size: 28px;
  }

  .pkp_page_index .cioh-arrows label {
    font-size: 42px;
  }

  .pkp_page_index .cioh-issues {
    grid-template-columns: 1fr;
  }

  .pkp_page_index .cioh-issue-card img {
    max-width: 210px;
  }
}

/* ================================
   CIOH HOME - FASE 2
================================ */

.pkp_page_index .cioh-featured,
.pkp_page_index .cioh-videos {
  max-width: 1180px;
  margin: 0 auto 45px;
  padding: 0 28px;
}

.pkp_page_index .cioh-featured {
  border-top: 1px solid #e5e5e5;
  padding-top: 38px;
}

.pkp_page_index .cioh-featured h2,
.pkp_page_index .cioh-videos h2 {
  margin: 0 0 25px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: #1b5b85;
}

.pkp_page_index .cioh-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
}

.pkp_page_index .cioh-article-card {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.pkp_page_index .cioh-article-icon {
  width: 24px;
  height: 24px;
  background: #1b5b85;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
}

.pkp_page_index .cioh-article-card h3 {
  margin: 0 0 9px;
  font-size: 15px;
  line-height: 1.18;
  font-weight: 500;
  color: #111;
}

.pkp_page_index .cioh-article-card p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.25;
  color: #555;
}

.pkp_page_index .cioh-article-card a {
  display: inline-block;
  border: 1px solid #1b5b85;
  border-radius: 4px;
  padding: 2px 8px;
  color: #1b5b85;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.pkp_page_index .cioh-article-card a:hover {
  background: #1b5b85;
  color: #fff;
}

/* VIDEOS */

.pkp_page_index .cioh-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.pkp_page_index .cioh-video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
}

.pkp_page_index .cioh-video-thumb img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.pkp_page_index .cioh-video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.12);
  z-index: 1;
}

.pkp_page_index .cioh-video-thumb span {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: auto;
  width: 58px;
  height: 58px;
  border: 3px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  padding-left: 4px;
}

.pkp_page_index .cioh-video-card h3 {
  margin: 10px 0 0;
  font-size: 17px;
  font-weight: 500;
  color: #1b5b85;
}

/* RESPONSIVE FASE 2 */

@media (max-width: 900px) {
  .pkp_page_index .cioh-articles,
  .pkp_page_index .cioh-video-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pkp_page_index .cioh-video-thumb img {
    height: 220px;
  }
}

/* ================================
   CIOH HOME - FASE 4
================================ */

.pkp_page_index .cioh-institutional {
  border-top: 1px solid #e5e5e5;
  padding: 28px 28px 0;
}

.pkp_page_index .cioh-institutional-logos {
  max-width: 1180px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.pkp_page_index .cioh-institutional-logos img {
  max-height: 48px;
  max-width: 115px;
  object-fit: contain;
}

.pkp_page_index .cioh-institutional-logos button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #f1f1f1;
  color: #777;
  font-size: 30px;
  line-height: 1;
  cursor: default;
}

.pkp_page_index .cioh-footer-info {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 0 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  font-size: 12px;
  color: #222;
}

.pkp_page_index .cioh-footer-info h3 {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  color: #1b1b1b;
}

.pkp_page_index .cioh-footer-info p {
  margin: 0 0 8px;
  line-height: 1.35;
}

.pkp_page_index .cioh-social {
  display: flex;
  gap: 8px;
  margin: 12px 0;
}

.pkp_page_index .cioh-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.pkp_page_index .cioh-phone {
  font-size: 18px;
  font-weight: 800;
}

.pkp_page_index .cioh-gov-footer {
  background: #24387f;
  min-height: 115px;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px 45px;
}

.pkp_page_index .cioh-gov-footer img {
  max-height: 58px;
  width: auto;
}

/* RESPONSIVE FASE 4 */

@media (max-width: 900px) {
  .pkp_page_index .cioh-institutional-logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .pkp_page_index .cioh-footer-info {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 600px) {
  .pkp_page_index .cioh-gov-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 28px;
  }
}