/* Blox Layout */
.blox-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 100%;
  padding: 1rem;     /* Applies 1rem on all sides: top, right, bottom, left */
  margin: 0 auto;
}

.blox-left,
.blox-right {
  box-sizing: border-box;
}

.blox-left {
  flex: 2;
  display: flex;
}

.blox-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Shared block style */
.blox-block {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  margin: 0;
}


/* Individual banner backgrounds */
.blox-banner-large {
  background-image: url('images/001.jpg');
}

.blox-banner-small-1 {
  background-image: url('images/002.jpg');
}

.blox-banner-small-2 {
  background-image: url('images/003.jpg');
}

/* Mobile layout */
@media (max-width: 768px) {
  .blox-container {
    flex-direction: column;
  }

  .blox-left,
  .blox-right {
    width: 100%;
  }

  .blox-right {
    flex-direction: column;
  }
}