/* Thema Name: Harman Yeri */

/* 16:9 oranında responsive bir kutu için */
.ratio-16x9 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #eee;
  overflow: hidden;
  object-fit: cover;
}

.ratio-16x9 > * {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.text-balance {
  text-wrap: balance;
}

.w-80 {
  width: 80%;
}

/* media queries */
@media (max-width: 768px) {
  .w-80 {
    width: 100% !important;
  }
}