/* ===============================
              IMAGES
================================ */

.images{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}

.images img{
  flex: 0 0 calc(50% - 0.5rem);
  max-width: calc(50% - 0.5rem);
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;

  box-shadow: 0 4px 8px rgba(0,0,0,0.2), 0 6px 20px rgba(0,0,0,0.19);
  border-radius: 6px;
}

@media (max-width: 600px){
  .images{
    padding: 1rem;
  }

  .images img{
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ---------------------------------------
   Homepage – Region CTA Panel
--------------------------------------- */
.homepage-region-link {
    margin: 12px 0;
    padding: 10px 16px;
    background: #f6fbfb;               /* very light green tint */
    border-left: 4px solid #2d9391;     /* brand green accent */
    border-radius: 4px;
}

.homepage-region-link p {
    margin: 0;
    font-size: 1.05em;
    line-height: 1.5;
}

.homepage-region-link a {
    font-weight: 600;
    text-decoration: none;
    color: #2d9391;
    transition: color 0.2s ease;
}

.homepage-region-link a:hover {
    color: #2baab1;
    text-decoration: underline;
}

.accommodation-page p:last-child{ margin-bottom: 0; }

/* ===============================
          COLUMN DIVIDER
================================ */
.column-divider{
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #cfcfcf,
    transparent
  );
  margin: 1.25rem 0 1.5rem;
}