/* Container for the two boxes */
.crc-container {
  display: flex;
  flex-wrap: wrap;
  /* Allows stacking on mobile */
  gap: 30px;
  /* Space between boxes */
  margin-top: 30px;
  justify-content: space-between;
  align-items: flex-start;
  /* <--- THIS IS THE FIX: Prevents stretching height */
}
/* The Box Style */
.crc-box {
  flex: 1 1 300px;
  /* Takes up equal space, but won't shrink below 300px */
  border: 2px solid #d40000;
  /* Nice Red Border */
  border-radius: 15px;
  /* Rounded corners */
  padding: 30px;
  box-sizing: border-box;
  /* Keeps padding inside the width */
  background-color: #fff;
  /* Ensures white background */
}
/* Specific styling for headings inside the boxes */
.crc-box h4 {
  color: #d40000;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.4em;
  text-align: center;
  /* Center the header like in your image */
  text-transform: uppercase;
  border-bottom: 1px dashed #d40000;
  padding-bottom: 10px;
}
/* Center the Opening Times text */
.crc-right .times {
  text-align: center;
}
/* Responsive adjustment for very small screens */
@media (max-width: 700px) {
  .crc-container {
    flex-direction: column;
  }
  .crc-box {
    width: 100%;
  }
}
