<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">    /* Scroll yapÄ±nca logo gÃ¶rÃ¼nÃ¼r olsun - FIX */
    .u-header--abs-top.js-header-fix-moment .u-header__navbar-brand {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Scroll yapÄ±nca navbar'Ä±n tamamÄ± gÃ¶rÃ¼nÃ¼r olsun */
    .u-header--abs-top.js-header-fix-moment .u-header__navbar {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* MOBÄ°L LOGO BOYUTU */
    @media (max-width: 991.98px) {
        .u-header__navbar-brand img {
            max-height: 40px !important;
        }
    }
    
    @media (max-width: 575.98px) {
        .u-header__navbar-brand img {
            max-height: 35px !important;
        }
    }
    
    /* Desktop'ta normal boyut */
    @media (min-width: 992px) {
        .u-header__navbar-brand img {
            max-height: 60px !important;
        }
    }
	
	
	/* Blog Gallery CSS DÃ¼zeltmeleri */

/* Ana resim iÃ§in object-fit */
.blog-gallery .min-height-458 {
    min-height: 458px !important;
    object-fit: cover; /* Dikey resimleri dÃ¼zgÃ¼n sÄ±ÄŸdÄ±r */
    width: 100%;
}

/* Yan resimler iÃ§in object-fit */
.blog-gallery .min-height-150 {
    min-height: 150px !important;
    max-height: 150px; /* Maksimum yÃ¼kseklik sÄ±nÄ±rÄ± */
    object-fit: cover; /* Dikey resimleri dÃ¼zgÃ¼n sÄ±ÄŸdÄ±r */
    width: 100%;
}

/* Responsive dÃ¼zenlemeler */
@media (max-width: 991px) {
    .blog-gallery .min-height-458 {
        min-height: 300px !important; /* Tablette daha kÃ¼Ã§Ã¼k */
        max-height: 400px;
    }
}

@media (max-width: 767px) {
    .blog-gallery .min-height-458 {
        min-height: 250px !important; /* Mobilde daha kÃ¼Ã§Ã¼k */
        max-height: 300px;
    }
    
    .blog-gallery .min-height-150 {
        min-height: 120px !important; /* Mobilde daha kÃ¼Ã§Ã¼k yan resimler */
        max-height: 120px;
    }
}

/* U-media-viewer overlay iÃ§in geliÅŸtirmeler */
.u-media-viewer__container {
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.u-media-viewer:hover .u-media-viewer__container {
    opacity: 1;
}

/* Tek resim iÃ§in CSS */
.blog-single-image {
    max-height: 500px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .blog-single-image {
        max-height: 300px;
    }
}

/* Sidebar Ä°lgili YazÄ±lar CSS DÃ¼zeltmeleri */

/* Sidebar'daki ilgili yazÄ±lar iÃ§in resim boyutlarÄ± */
.sidebar-related-post-image {
    width: 80px !important;
    height: 60px !important;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0; /* Resmin kÃ¼Ã§Ã¼lmesini engelle */
}

/* Ä°lgili yazÄ±lar container */
.related-post-item {
    display: flex;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f1f1;
}

.related-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-post-content {
    margin-left: 0.75rem;
    flex: 1;
    min-width: 0; /* Text overflow iÃ§in */
}

.related-post-title {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Maksimum 2 satÄ±r */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-post-date {
    font-size: 12px;
    color: #666;
}

/* Mobil responsive */
@media (max-width: 767px) {
    .sidebar-related-post-image {
        width: 60px !important;
        height: 45px !important;
    }
    
    .related-post-title {
        font-size: 13px;
    }
}</pre></body></html>