<style>
@media (max-width: 768px) {
  .max-imgs {
    width: 190px !important;
    height: 190px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
  }
}

.button-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Hide by default */
.btn-whatsapp {
  display: none;
}

/* Show both buttons on screens smaller than 768px */
@media (max-width: 767px) {
  .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .btn-info {
    display: inline-flex;
    align-items: center;
    background-color: #131369;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
  }
}

@media (max-width: 376px) {
  .button-row {
    flex-wrap: nowrap;  /* force in one row */
  }

  .btn-whatsapp,
  .btn-info {
    flex: 1;                /* share space equally */
    min-width: 0;           /* prevent overflow */
    justify-content: center;
    font-size: 14px;        /* slightly smaller text */
    padding: 8px 10px;      /* reduce padding */
  }
}

</style>
