/* .asym-grid {
    width: 1100px;
    margin: auto;
    padding: 100px 0;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
}

.card {
    position: relative;
}

.img {
    height: 320px;
    background: #111;
}


.info {
    position: absolute;
    bottom: -50px;
    background: white;
    padding: 22px;
    width: 260px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}


.left-card .info {
    left: 40px;
}


.right-card .info {
    right: 40px;
}


.right-card {
    margin-top: 140px;
}

.info h4 {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.info p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.info span {
    display: block;
    margin-top: 10px;
    font-size: 11px;
    letter-spacing: 2px;
}


@media(max-width:900px) {

    .asym-grid {
        grid-template-columns: 1fr;
        width: 90%;
    }

    .right-card {
        margin-top: 0;
    }

    .info {
        left: 30px !important;
        right: auto !important;
    }

} */
:root {
  --bg-color: #f4f4f4;
  --card-bg: #ffffff;
  --image-placeholder: #1a1a1a;
}

/* body {
  background-color: var(--bg-color);
  font-family: 'Helvetica', sans-serif;
  margin: 0;
  padding: 50px;
} */

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.grid-container .grid-item:hover {
    .content-card {
        border: 1px solid rgba(37, 122, 171, 0.1);
        box-shadow: 0 15px 40px rgba(37, 122, 171, 0.25);
        border-color: var(--primary-blue);
    }
    
}

.grid-item {
  position: relative;
  display: flex;
  flex-direction: column;
}

.image-box {
  width: 100%;
  /* height: 100%; */
  min-height: 400px;
}
.image-box img{
    height: 100%;
}
/* .tall .image-box { height: 400px; }
.extra-tall .image-box { height: 500px; }
.normal .image-box { height: 450px; } */
.extra-tall { top: -95px; }

.shift-down {
  margin-top: 150px;
}


.content-card {
  background: var(--card-bg);
  padding: 30px;
  width: 80%;
  margin-top: -60px; 
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  z-index: 2;
}

.content-card h3 {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.content-card p {
  /* font-size: 13px;
  color: #555; */
  line-height: 1.6;
  margin-bottom: 20px;
}

.content-card a {
  font-size: 13px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  letter-spacing: 1px;
  border-bottom: 1px solid #000;
}

/* Responsive adjustments for Tablets and Mobile */
@media (max-width: 992px) {
  .grid-container {
    grid-template-columns: 1fr; /* Stack into a single column */
    row-gap: 40px;
    padding: 20px;
  }

  .shift-down {
    margin-top: 0; /* Remove the vertical stagger */
  }

  .content-card {
    width: 90%; /* Make text boxes wider on smaller screens */
    margin-top: -40px; /* Slightly less overlap */
    padding: 20px;
  }

  .image-box, 
  .tall .image-box, 
  .extra-tall .image-box, 
  .normal .image-box {
    height: 400px; /* Normalize heights for better mobile scrolling */
  }
}

/* Adjustments for small phones */
@media (max-width: 480px) {
  .content-card h3 {
    font-size: 12px;
  }
}