/* Container spacing */
.bunker-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px;
  margin-top: 40px;
}

/* Base Card Styling (Mobile First) */
.photo-card {
  display: flex;
  flex-direction: column; /* Stacked on mobile */
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.photo-card:hover {
  transform: translateY(-5px);
}

/* Image styling */
.card-image {
  flex: 3;
  width: 100%;
  min-height: 150px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Text styling */
.card-content {
  flex: 2;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.card-content p {
  font-size: 0.9rem;
}

/* Desktop Logic */
@media (min-width: 768px) {
  .photo-card {
    flex-direction: row; /* Side-by-side on desktop */
    min-height: 350px;
  }

  /* The alternating magic */
  .photo-card:nth-child(even) {
    flex-direction: row-reverse;
  }

  .card-image, .card-content {
    width: 50%; /* Each takes half the card width */
  }

  .card-content p {
        font-size: 1.2rem;
    }
}