  .image-pair {
      align-items: stretch;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    .image-half {
      display: flex;
      flex-direction: column;
      justify-content: stretch;
      height: auto;
      flex: 1 1 48%;
    }

    body {
      font-family: 'Helvetica Neue', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #fff;
      color: #000;
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      padding: 1rem 2rem 0.5rem;
      max-width: 1000px;
      margin: auto;
    }

    .header-content h1 {
      font-size: 2.5rem;
      font-weight: 400;
      margin: 0;
    }

    nav {
      display: flex;
      gap: 1rem;
    }

    nav a {
      text-decoration: none;
      color: #000;
      font-weight: bold;
    }

    section {
      padding: 2rem;
      max-width: 1000px;
      margin: auto;
    }

    img.responsive-image {
      object-fit: cover;
      height: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin-bottom: 1rem;
    }

    figure {
      max-width: 1000px;
      margin: 2rem auto;
    }
	
	figure.side-by-side {
      height: 100%;
      margin: 0;
    }

    figcaption.caption-left {
      text-align: left;
    }
	
	.site-title {
  max-height: 60px;       /* controla el alto máximo */
  height: auto;           /* mantiene proporción */
  width: auto;            /* evita deformación */
  object-fit: contain;    /* ajusta bien la escala */
}
	

    @media screen and (max-width: 768px) {
      .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }

      .header-content h1 {
        font-size: 2rem;
      }

      section {
        padding: 1rem;
      }
	  
	   .site-title {
    max-height: 40px;     /* más pequeño en pantallas medianas */
  }
    }

    @media screen and (max-width: 480px) {
      .header-content h1 {
        font-size: 1.5rem;
      }
	  
	   .site-title {
    max-height: 30px;     /* aún más pequeño en móviles */
  }
    }