.responsive_container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
  }
  
  /* Then style the iframe to fit in the container div with full height and width */
  .responsive_inner {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }

  .responsive_inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .breadcrumb-title-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 560px; /* Gerekirse ayarlayın */
    display: inline-block;
    vertical-align: bottom;
  }

  /* Kısayol oluşturma butonu stili */
.add-to-home {
  display: inline-block;
  padding: 10px 20px;
  background: #0d47a1;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin: 20px 0;
}


  @media (max-width: 768px) {
    .breadcrumb-title-ellipsis {
      max-width: 190px; /* Gerekirse ayarlayın */
    }
  }
   
.object_fit_cover{
	object-fit: cover; 
	height: 100%; 
	width: 100%;
}