.abt-body{
  background: #e8d2c5;
}

.flyer{
  padding-top: 10px;
}

.flyer-block{
  padding: 22px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  text-align: left;
}

.about-owner{
  display: grid;
  grid-template-columns: 1.65fr 0.95fr;
  gap: 34px;
  align-items: start;
}

.about-text{
  text-align: left;
}

.flyer-h1{
  margin: 0 0 18px 0;
  font-family: "Italianno", cursive;
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-style: normal;
  color: rgba(53,51,51,0.92);
  position: relative;
  text-align: left;
}

.flyer-h1::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-14px;
  width: min(70%, 520px);
  height:1.5px;
  background: rgba(255,255,255,0.22);
}

.about-text p{
  margin: 0 0 16px 0;
  color: rgba(53,51,51,0.92);
  line-height: 1.65;
  font-size: 1.25rem;
  max-width: 72ch;
}

.owner-image{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 20px;
}

.owner-image img{
  width: 100%;
  max-width: 300px;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  background: rgba(0,0,0,0.12);
}

/* ---------- For Mobile Devices ---------- */
@media (max-width: 900px){
  .flyer-block{
    text-align: center;
  }

  .about-owner{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .flyer-h1{
    text-align: center;
  }

  .flyer-h1::after{
    left:50%;
    transform: translateX(-50%);
  }

  .about-text p{
    margin-left: auto;
    margin-right: auto;
  }

  .owner-image{
    padding-top: 6px;
  }

  .owner-image img{
    max-width: 260px;
  }
}
