﻿/* ================= STORY SECTION ================= */

.story-sec{
  background:#f5f7f2;
  padding:30px 20px;
}

/* GRID */
.story-wrap{
  max-width:1200px;
  margin:auto;

  display:grid;
  grid-template-columns:1fr 1fr; /* 🔥 50-50 layout */
  gap:60px;
  align-items:center;
}

/* ================= TEXT ================= */

.story-text .tag{
  color:#c9a74d;
  font-size:12px;
  letter-spacing:2px;
}

.story-text h2{
  font-family:'Playfair Display', serif;
  font-size:52px;
  margin:15px 0;
  line-height:1.25;
  color:#C9A74D;
}

.story-text h2 span{
  color:#2f5d50;
}

.story-text p{
    color:#000;
  font-size:16px;
  line-height:1.9;
  margin-bottom:18px;
  text-align:justify;
}

/* ================= IMAGE ================= */

.story-img{
  width:100%;
  border-radius:18px;
  overflow:hidden;
}

.story-img img{
  width:100%;
  height:auto;   /* 🔥 keeps full image visible */
  display:block;
  border-radius:18px;
}

.story-img img:hover{
  transform:scale(1.05);
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .story-wrap{
    grid-template-columns:1fr;
    gap:35px;
  }

  .story-text h2{
    font-size:34px;
  }

  .story-text p{
    font-size:15px;
    line-height:1.8;
  }

  .story-img{
    height:260px;
  }

}

/* ================= SAFETY ================= */

.story-sec img{
  max-width:100%;
  height:auto;
}