

/* CARD */
.land-card {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.land-card:hover {
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* HEADER */
.land-header h2 {
  color: var(--primary-blue);
  font-weight: 700;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--accent-red);
  margin: 10px auto 30px;
  border-radius: 5px;
}

/* IMAGE */
.land-img {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.land-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  transition: transform 0.4s ease;
}

/* IMAGE HOVER */
.land-img:hover img {
  transform: scale(1.05);
}

/* CONTENT */
.land-content p {
  color: #444;
  line-height: 1.8;
  font-size: 15px;
  text-align: justify;
}

/* RESPONSIVE */
@media(max-width:768px){

  .land-card {
    padding: 20px;
  }

  .land-content p {
    text-align: left;
  }
}