.listing-cat-media {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.listing-cat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.listing-cat-media-2 {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.listing-cat-media-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-panel {
    border-radius: 12px;
}

.single-video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.custom-video {
    width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 12px;
    object-fit: cover;
    background: #000;
}

/* Mobil için */
@media (max-width: 768px) {
    .custom-video {
        max-height: 300px;
    }
}

.select2-container--default .select2-selection--single {
  height: 50px;
  border-radius: 6px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: normal;
}

.select2-dropdown {
  border-radius: 8px;
  border: 1px solid #ddd;
}

.rounded-3 {
  border-radius: 8px !important;
  -webkit-border-radius: 8px !important;
  -moz-border-radius: 8px !important;
  -ms-border-radius: 8px !important;
  -o-border-radius: 8px !important;
}

.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  height: 48px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  background-color: #fff;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: normal;
  padding-left: 0;
  color: #495057;
  font-size: 14px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 100%;
  right: 10px;
}

.select2-container--default.select2-container--focus
  .select2-selection--single {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  outline: 0;
}

.select2-dropdown {
  border-radius: 6px;
  border: 1px solid #ced4da;
}

.section-title {
  font-weight: 700;
  font-size: 32px;
}

.section-subtitle {
  color: #6c757d;
  font-size: 15px;
}

.category-card {
  background: #fff;
  border-radius: 15px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #dc3545;
}

.category-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #dc3545;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.category-title {
  font-weight: 600;
  margin: 0;
}

.category-count {
  font-size: 14px;
  color: #6c757d;
}

.news-ticker{
    background:#f5f5f5;
    border-radius:8px;
    overflow:hidden;
}

.ticker-wrapper{
    overflow:hidden;
    width:100%;
}

.ticker-track{
    display:flex;
    animation:tickerMove 20s linear infinite;
}

.news-ticker:hover .ticker-track{
    animation-play-state: paused;
}

.ticker-item a{
    text-decoration:none;
    color:#000;
    display:block;
}

.ticker-item a:hover{
    color:#0d6efd;
}

.ticker-item{
    flex:0 0 33.333%;
    padding:20px 20px;
    font-weight:500;
    white-space:nowrap;
}

@keyframes tickerMove{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-100%);
    }
}
@media (max-width:992px){
    .ticker-item{
        flex:0 0 50%;
    }
}

@media (max-width:576px){
    .ticker-item{
        flex:0 0 100%;
    }
}