/**
 * Theme Name:     Twenty Twenty-Five Child
 * Author:         the WordPress team
 * Template:       twentytwentyfive
 * Text Domain:	   twenty-twenty-five-child
 * Description:    Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
 */
/* ===== Estilos Generales para el ancho del contenido ===== */
/* Ancho del contenido estándar */
.wp-block {
  max-width: 900px;
}

/* Ancho amplio */
.wp-block[data-align="wide"] {
  max-width: 1200px;
}

/* Ancho completo */
.wp-block[data-align="full"] {
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* Responsividad en pantallas pequeñas */
@media screen and (max-width: 960px) {
  .alignwide,
  .alignfull {
    width: 100%;
    margin-left: 0;
  }
}

/* ===== Header Sticky ===== */

#headerContainer {
  position: sticky;
  top: 0;
  z-index: 999;
}