.imgDescBtn-container {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;  /* que ocupe todo el espacio asignado */
    box-sizing: border-box;
    background: white;
    border-radius: 8px;
    padding: 15px 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  /* Imagen más pequeña */
  .imgDescBtn-image img {
    width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    flex-shrink: 0;
  }
  
  /* Texto y botón ocupan el resto */
  .imgDescBtn-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .imgDescBtn-content h2 {
    margin: 0 0 15px 0;
    font-size: 26px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
  }
  
  .imgDescBtn-content p {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    margin: 0 0 25px 0;
  }
  
  /* Botón alineado abajo a la izquierda */
  .imgDescBtn-button {
    align-self: flex-start;
    padding: 12px 30px;
    background-color: #343638;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  
  .imgDescBtn-button:hover {
    background-color: #555;
  }
  
  /* Responsive: en móviles, pasar a columna y full ancho */
  @media (max-width: 900px) {
    .imgDescBtn-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 20px 15px;
    }
  
    .imgDescBtn-image img {
      width: 100%;
      max-width: 350px;
      height: auto;
      margin-bottom: 20px;
    }
  
    .imgDescBtn-content {
      align-items: center;
    }
  
    .imgDescBtn-content h2 {
      font-size: 24px;
    }
  
    .imgDescBtn-content p {
      font-size: 16px;
    }
  
    .imgDescBtn-button {
      align-self: center;
    }
  }
  