/*
 * Ultimate WP Theme — Homepage preset layouts
 */

.csco-home-hero {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}

.csco-home-hero--corporate,
.csco-home-hero--press {
  text-align: left;
}

.csco-home-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.csco-home-hero__text {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  color: var(--cs-color-secondary);
  font-size: 1.125rem;
  line-height: 1.6;
}

.csco-home-hero--corporate .csco-home-hero__text,
.csco-home-hero--press .csco-home-hero__text {
  margin-left: 0;
}

.csco-home-hero__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cs-color-accent, var(--cs-color-primary));
}

.csco-home-hero__cta {
  margin-top: 0.5rem;
}

.csco-home-services {
  padding: 1rem 0 2.5rem;
  border-top: 1px solid var(--cs-color-border, rgba(0,0,0,0.08));
  border-bottom: 1px solid var(--cs-color-border, rgba(0,0,0,0.08));
}

.csco-home-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.csco-home-services__item {
  padding: 20px;
  border-radius: 8px;
  background: var(--cs-color-bg-box, rgba(0,0,0,0.03));
}

.csco-home-services__item h3 {
  margin: 0 0 8px;
  font-size: 1.125rem;
}

.csco-home-services__item p {
  margin: 0;
  color: var(--cs-color-secondary);
  line-height: 1.55;
}

.csco-home-section {
  padding: 2rem 0 3rem;
}

.csco-home-section__head {
  margin-bottom: 1.5rem;
}

.csco-home-section__head h2 {
  margin: 0;
  font-size: 1.5rem;
}

.csco-home-featured {
  padding-bottom: 2rem;
}

.csco-home-featured__card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}

.csco-home-featured__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.csco-home-featured__title {
  margin: 0.5rem 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.csco-home-featured__title a {
  color: inherit;
  text-decoration: none;
}

.csco-home-featured__body p {
  color: var(--cs-color-secondary);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .csco-home-services__grid,
  .csco-home-featured__card {
    grid-template-columns: 1fr;
  }

  .csco-home-hero--corporate,
  .csco-home-hero--press {
    text-align: center;
  }

  .csco-home-hero--corporate .csco-home-hero__text,
  .csco-home-hero--press .csco-home-hero__text {
    margin-left: auto;
  }
}
