/* blog_styles.css */
/* Bu dosya, blog/index.html ve blog/yazi.html sayfalarına özel stilleri içerir. */

/* Genel Blog Alanı ve Konteyner */
.blog-container {
    padding-top: 50px;
    padding-bottom: 70px;
    width: 100%;
    background-color: #f4f6f8; /* Açık gri arka plan */
    color: #444; /* Genel metin rengi */
    font-family: 'Open Sans', sans-serif; /* Okunabilir bir font */
}

.blog-container .container {
    width: 90%;
    max-width: 1200px; /* Maksimum genişlik */
    margin: 0 auto; /* Ortalamak için */
}

/* Blog Ana Başlığı */
.blog-page-title {
    font-family: 'Montserrat', sans-serif; /* Modern bir başlık fontu */
    color: #2c3e50; /* Koyu mavi-gri başlık rengi */
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
}

.blog-page-title::after { /* Başlık altına çizgi */
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #3498db; /* Ana tema rengi */
    border-radius: 2px;
}

.blog-intro-text {
    font-size: 1.05rem;
    color: #555;
    text-align: center;
    max-width: 750px;
    margin: 0 auto 45px auto;
    line-height: 1.75;
    padding: 10px 15px 10px 20px;
    border-left: 3px solid #3498db; /* Sol tarafta vurgu çizgisi */
    background-color: #f0f8ff; /* Çok açık mavi arka plan */
    border-radius: 0 5px 5px 0;
}

/* Blog Sayfa Düzeni */
.blog-layout {
    display: flex;
    flex-direction: column; /* Kenar çubuğu her zaman yazıların üzerinde olacak şekilde dikey sıralama */
    gap: 30px; /* Kenar çubuğu ve yazı listesi arasındaki dikey boşluk */
}

.blog-posts-column,
.blog-sidebar-column {
    width: 100%; /* Hem yazı sütunu hem de kenar çubuğu tam genişlikte */
    flex-basis: auto; /* Önceki flex-basis ayarlarını sıfırla */
}

.blog-sidebar-column {
    margin-bottom: 20px; 
}


/* Blog Yazı Kartları (Ana Sayfa) */
.blog-post-item {
    background: #ffffff; 
    border-radius: 10px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.blog-post-item:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); 
}

.blog-post-item .blog-post-image-wrapper {
    display: block;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    line-height: 0;
}

.blog-post-item .blog-post-image {
    width: 100%;
    height: 280px; 
    object-fit: cover; 
    display: block;
    transition: transform 0.4s ease-out;
}

.blog-post-item:hover .blog-post-image {
    transform: scale(1.05); 
}

.blog-post-item-category {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    background-color: rgba(52, 152, 219, 0.9) !important;
    color: white !important;
    padding: 5px 10px !important;
    border-radius: 4px !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-family: 'Montserrat', sans-serif !important;
    text-decoration: none !important;
    z-index: 2 !important;
    line-height: 1.3 !important;
    display: inline-block !important;
    box-sizing: border-box !important;
    border: none !important;
    transition: background-color 0.2s ease !important;
    transform: none !important;
}

.blog-post-item-category:hover {
    background-color: rgba(41, 128, 185, 1) !important;
    transform: none !important;
}

.blog-post-item-content-category-wrapper { 
    padding: 15px 30px 0 30px; 
}
.blog-post-item-content-category-wrapper .blog-post-item-category {
    position: static !important; 
    transform: none !important;
    display: inline-block !important; 
    margin-bottom: 10px; 
}


.blog-post-item-content {
    padding: 20px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-post-item-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #333;
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.45;
    font-weight: 700;
}

.blog-post-item-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.blog-post-item-title a:hover {
    color: #3498db; 
}

.blog-post-item-meta {
    font-size: 0.8rem;
    color: #888; 
    margin-bottom: 18px;
    font-family: 'Open Sans', sans-serif;
}
.blog-post-item-meta i {
    margin-right: 5px;
    color: #aaa;
}
.blog-post-item-meta span + span::before {
    content: "|";
    margin: 0 8px;
    color: #ccc;
}

.blog-post-item-excerpt {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 25px;
    flex-grow: 1;
}

.blog-read-more-btn {
    align-self: flex-start;
    background: #3498db; 
    color: white !important;
    padding: 9px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    border: none;
}

.blog-read-more-btn:hover {
    background: #2980b9; 
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}
.blog-read-more-btn i {
    margin-left: 7px;
    transition: transform 0.2s ease;
}
.blog-read-more-btn:hover i {
    transform: translateX(2px);
}

/* Kenar Çubuğu */
.blog-sidebar-column .widget { 
    background: #ffffff;
    padding: 25px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    margin-bottom: 30px; 
    border: 1px solid #e9ecef; 
}
.blog-sidebar-column .widget:last-child {
    margin-bottom: 0;
}

.blog-sidebar-column .widget-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem; 
    color: #2c3e50;
    margin-top: 0; 
    margin-bottom: 0; 
    padding-bottom: 0; 
    border-bottom: none; 
    font-weight: 700;
    flex-grow: 1; 
}
.blog-sidebar-column .widget-title i {
    margin-right: 10px;
    color: #3498db;
    font-size: 1.1rem; 
}

.collapsible-widget .widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding-bottom: 12px; 
    border-bottom: 2px solid #3498db;
    margin-bottom: 15px; 
    transition: border-color 0.3s ease;
    user-select: none; 
}

.collapsible-widget .widget-header:hover .widget-title,
.collapsible-widget .widget-header:hover .collapse-toggle-icon {
    color: #2980b9; 
}
.collapsible-widget .widget-header:hover {
    border-bottom-color: #2980b9;
}

.collapsible-widget .collapse-toggle-icon {
    font-size: 0.9rem; 
    color: #3498db;
    transition: transform 0.3s ease;
}
.collapsible-widget .collapse-toggle-icon i {
    display: block; 
}

.collapsible-widget .collapsible-content {
    max-height: 0; 
    overflow: hidden;
    transition: max-height 0.35s ease-out, padding-top 0.35s ease-out, padding-bottom 0.35s ease-out;
    padding-top: 0; 
    padding-bottom: 0;
}

.collapsible-widget:not(.collapsed) .collapsible-content {
    padding-top: 10px; 
    padding-bottom: 5px; 
}

.collapsible-widget.collapsed .collapse-toggle-icon i {
    transform: rotate(-180deg); 
}

.search-widget .widget-title { 
    margin-bottom: 20px; 
    padding-bottom: 12px;
    border-bottom: 2px solid #3498db;
}
.search-widget form {
    display: flex;
    border: 1px solid #ced4da; 
    border-radius: 5px;
    overflow: hidden; 
}
.search-widget input[type="search"] {
    flex-grow: 1;
    padding: 11px 15px;
    border: none;
    font-size: 0.9rem;
    font-family: 'Open Sans', sans-serif;
    outline: none;
    background-color: #fff;
}
.search-widget input[type="search"]::placeholder {
    color: #aaa;
}
.search-widget button {
    width: 50px;
    background: #3498db;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}
.search-widget button:hover {
    background: #2980b9;
}

.categories-widget ul,
.recent-posts-widget ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0; 
}

.categories-widget ul li a,
.recent-posts-widget ul li a {
    text-decoration: none;
    font-size: 0.9rem;
    color: #444;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 10px; 
    border-radius: 4px; 
    margin: 1px 0; 
    border-bottom: 1px solid #f0f0f0; 
    position: relative;
    box-sizing: border-box;
}
.categories-widget ul li:last-child a,
.recent-posts-widget ul li:last-child a {
    border-bottom: none; 
}

.categories-widget ul li a:hover,
.recent-posts-widget ul li a:hover {
    color: #3498db; 
    background-color: #f0f8ff; 
    transform: translateX(4px); 
}
.categories-widget ul li a .category-count {
    background-color: #e9ecef; 
    color: #555;
    padding: 2px 7px; 
    border-radius: 3px;
    font-size: 0.65rem; 
    font-weight: 600;
}

/* Sayfalama Stilleri */
.blog-pagination {
    text-align: center;
    margin-top: 50px; 
    margin-bottom: 30px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 8px; 
}
.blog-pagination a.pagination-link, .blog-pagination span.pagination-link, .blog-pagination span.pagination-ellipsis { 
    display: inline-block;
    padding: 10px 16px; 
    margin: 0 3px; 
    border: 1px solid #ddd; 
    color: #3498db; 
    text-decoration: none;
    border-radius: 5px; 
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    font-size: 0.9rem;
    font-weight: 600;
}
.blog-pagination span.pagination-ellipsis {
    border: none;
    color: #777;
    padding: 10px 8px;
}
.blog-pagination a.pagination-link:hover {
    background-color: #3498db; 
    color: white; 
    border-color: #2980b9; 
}
.blog-pagination a.pagination-link.current { 
    background-color: #3498db;
    color: white;
    border-color: #2980b9;
    cursor: default; 
}
.blog-pagination a.pagination-link.disabled { 
    color: #aaa;
    border-color: #eee;
    pointer-events: none; 
    background-color: #f9f9f9;
}
.blog-pagination .go-to-page-container {
    display: flex;
    align-items: center;
    margin-left: 15px; 
}
.blog-pagination .go-to-page-input {
    width: 60px;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-size: 0.9rem;
    text-align: center;
}
.blog-pagination .go-to-page-button {
    padding: 8px 12px;
    background-color: #3498db;
    color: white;
    border: 1px solid #3498db;
    border-left: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s;
}
.blog-pagination .go-to-page-button:hover {
    background-color: #2980b9;
}


/* Tekil Blog Yazısı Sayfası */
.single-blog-post-container .container {
    max-width: 900px;
}
.single-blog-post-card {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
}
.single-post-header {
    margin-bottom: 20px; 
    text-align: center;
}
.single-post-category { 
    display: inline-block;
    background-color: #3498db;
    color: white !important; 
    padding: 6px 14px; 
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 15px; 
    transition: background-color 0.2s ease;
    font-family: 'Montserrat', sans-serif;
}
.single-post-category:hover {
    background-color: #2980b9;
}

#single-post-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem; 
    color: #e74c3c !important; /* Kırmızı olarak güncellendi */
    margin-top: 0; 
    margin-bottom: 12px; 
    line-height: 1.35;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.single-post-meta-info {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 25px; 
}
.single-post-meta-info i {
    margin-right: 6px;
}
.single-post-meta-info span + span::before {
    content: "|";
    margin: 0 10px;
    color: #ccc;
}

.post-contact-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; 
    margin-top: 10px; 
    margin-bottom: 30px; 
    padding: 10px 0; 
}

.post-contact-actions .action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px; 
    border-radius: 25px; 
    text-decoration: none;
    font-size: 0.9rem; 
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    color: white;
    border: none;
    cursor: pointer;
    min-width: 180px; 
    text-align: center;
}

.post-contact-actions .action-button i {
    margin-right: 8px; 
    font-size: 1rem; 
}

.post-contact-actions .call-button {
    background-color: #2ecc71; 
    box-shadow: 0 3px 10px rgba(46, 204, 113, 0.25);
}
.post-contact-actions .call-button:hover {
    background-color: #27ae60; 
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(46, 204, 113, 0.35);
}

.post-contact-actions .whatsapp-button {
    background-color: #25D366; 
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.25);
}
.post-contact-actions .whatsapp-button:hover {
    background-color: #1DA851; 
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(37, 211, 102, 0.35);
}

.single-post-featured-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
}
.single-post-content-area {
    font-size: 1.05rem; 
    line-height: 1.8; 
    color: #34495e; 
}

.single-post-content-area h1, 
.single-post-content-area h2,
.single-post-content-area h3,
.single-post-content-area h4,
.single-post-content-area h5,
.single-post-content-area h6 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50; 
    margin-top: 2em;   
    margin-bottom: 0.8em; 
    line-height: 1.4;
    font-weight: 700; 
}
.single-post-content-area h1 { font-size: 2rem; border-bottom: 2px solid #3498db; padding-bottom: 0.3em;} 
.single-post-content-area h2 { font-size: 1.8rem; padding-bottom: 0.2em; border-bottom: 1px solid #e0e0e0;}
.single-post-content-area h3 { font-size: 1.5rem; }
.single-post-content-area h4 { font-size: 1.3rem; color: #3498db; } 
.single-post-content-area h5 { font-size: 1.15rem; }
.single-post-content-area h6 { font-size: 1rem; color: #7f8c8d; text-transform: uppercase; }

.single-post-content-area p { 
    margin-bottom: 1.5em; 
}
.single-post-content-area a { 
    color: #3498db; 
    text-decoration: none; 
    border-bottom: 1px dotted #3498db; 
    transition: color 0.2s ease, border-bottom-color 0.2s ease;
}
.single-post-content-area a:hover { 
    color: #2980b9; 
    border-bottom-color: #2980b9;
}

.single-post-content-area ul,
.single-post-content-area ol {
    margin-left: 25px; 
    margin-bottom: 1.5em;
    padding-left: 20px; 
}
.single-post-content-area ul li,
.single-post-content-area ol li {
    margin-bottom: 0.6em; 
}
.single-post-content-area ul {
    list-style-type: disc; 
}
.single-post-content-area ul ul { 
    list-style-type: circle;
    margin-top: 0.5em;
}
.single-post-content-area ol {
    list-style-type: decimal; 
}
.single-post-content-area ol ol { 
    list-style-type: lower-alpha;
     margin-top: 0.5em;
}


.single-post-content-area blockquote {
    border-left: 5px solid #3498db; 
    margin: 2em 0; 
    padding: 1em 25px; 
    background-color: #f9f9f9; 
    font-style: italic; 
    color: #555; 
    border-radius: 0 5px 5px 0;
}
.single-post-content-area blockquote p {
    margin-bottom: 0.5em; 
}
.single-post-content-area blockquote footer,
.single-post-content-area blockquote cite {
    display: block;
    text-align: right;
    font-size: 0.9em;
    color: #777;
    margin-top: 0.8em;
}

.single-post-content-area img {
    max-width: 100%; 
    height: auto; 
    border-radius: 6px; 
    margin: 1.5em auto; 
    display: block; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
}
.single-post-content-area figure {
    margin: 1.5em 0;
}
.single-post-content-area figure figcaption {
    font-size: 0.9em;
    color: #777;
    text-align: center;
    margin-top: 0.5em;
    font-style: italic;
}

.single-post-content-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
}
.single-post-content-area th,
.single-post-content-area td {
    border: 1px solid #e0e0e0; 
    padding: 10px 12px; 
    text-align: left; 
}
.single-post-content-area th {
    background-color: #f4f6f8; 
    font-weight: 700; 
    color: #333;
    font-family: 'Montserrat', sans-serif;
}
.single-post-content-area tbody tr:nth-child(even) {
    background-color: #fbfcfd; 
}
.single-post-content-area tbody tr:hover {
    background-color: #f0f4f8; 
}

.single-post-content-area hr {
    border: 0;
    height: 1px;
    background-color: #e0e0e0;
    margin: 2.5em 0;
}

.single-post-content-area pre {
    background-color: #2d2d2d; 
    color: #f8f8f2; 
    padding: 20px;
    border-radius: 6px;
    overflow-x: auto; 
    margin: 2em 0;
    font-family: 'Courier New', Courier, monospace; 
    font-size: 0.9em;
    line-height: 1.6;
    border: 1px solid #444;
    white-space: pre; 
}
.single-post-content-area code { 
    background-color: #f0f0f0;
    color: #c7254e; 
    padding: 2px 5px;
    border-radius: 3px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85em;
}
.single-post-content-area pre code { 
    background: none;
    color: inherit;
    padding: 0;
    font-size: inherit; 
    white-space: inherit; 
}

.single-post-content-area .accordion-container {
    margin: 2em 0; 
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.single-post-content-area .accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.single-post-content-area .accordion-item:last-child {
    border-bottom: none; 
}

.single-post-content-area .accordion-header {
    background-color: #f8f9fa; 
    color: #34495e; 
    cursor: pointer;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.1rem; 
    font-weight: 600; 
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.single-post-content-area .accordion-header:hover {
    background-color: #e9ecef; 
}

.single-post-content-area .accordion-header .accordion-icon {
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease; 
}

.single-post-content-area .accordion-header.active .accordion-icon {
    transform: rotate(45deg); 
}

.single-post-content-area .accordion-content {
    background-color: white;
    max-height: 0; 
    overflow: hidden; 
    padding-left: 20px;  
    padding-right: 20px; 
    padding-top: 0;      
    padding-bottom: 0;   
    transition: max-height 0.3s ease-out, padding-top 0.3s ease-out, padding-bottom 0.3s ease-out; 
}

.single-post-content-area .accordion-content.content-active {
    padding-top: 15px;
    padding-bottom: 20px;
}

.single-post-content-area .accordion-content p,
.single-post-content-area .accordion-content ul,
.single-post-content-area .accordion-content ol,
.single-post-content-area .accordion-content table,
.single-post-content-area .accordion-content blockquote {
    margin-top: 1em;
    margin-bottom: 1em;
}
.single-post-content-area .accordion-content p:first-child,
.single-post-content-area .accordion-content ul:first-child,
.single-post-content-area .accordion-content ol:first-child,
.single-post-content-area .accordion-content table:first-child,
.single-post-content-area .accordion-content blockquote:first-child {
    margin-top: 0;
}
.single-post-content-area .accordion-content p:last-child,
.single-post-content-area .accordion-content ul:last-child,
.single-post-content-area .accordion-content ol:last-child,
.single-post-content-area .accordion-content table:last-child,
.single-post-content-area .accordion-content blockquote:last-child {
    margin-bottom: 0;
}


.single-post-footer-details {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}
.post-tags-container {
    margin-bottom: 20px;
}
.post-tags-container strong {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    margin-right: 8px;
}
.post-tags-container a.tag-link {
    display: inline-block;
    background-color: #ecf0f1;
    color: #555;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-decoration: none;
    margin-right: 6px;
    margin-bottom: 6px;
    transition: background-color 0.2s, color 0.2s;
}
.post-tags-container a.tag-link:hover {
    background-color: #3498db;
    color: white;
}
.share-buttons-container strong {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    margin-right: 10px;
}
.share-buttons-container a.social-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #bdc3c7; 
    color: white;
    border-radius: 50%; 
    text-decoration: none;
    margin-right: 8px;
    font-size: 1.1rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.share-buttons-container a.social-share-btn:hover {
    transform: scale(1.1); 
}
.share-buttons-container a.social-share-btn i.fab.fa-facebook-f,
.share-buttons-container a.social-share-btn i.fa-brands.fa-facebook-f { background-color: #3b5998; }
.share-buttons-container a.social-share-btn i.fab.fa-twitter,
.share-buttons-container a.social-share-btn i.fa-brands.fa-twitter { background-color: #1da1f2; }
.share-buttons-container a.social-share-btn i.fab.fa-linkedin-in,
.share-buttons-container a.social-share-btn i.fa-brands.fa-linkedin-in { background-color: #0077b5; }
.share-buttons-container a.social-share-btn i.fab.fa-whatsapp,
.share-buttons-container a.social-share-btn i.fa-brands.fa-whatsapp { background-color: #25d366; }


.loader {
    border: 5px solid #f0f0f0;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1.2s linear infinite;
    margin: 50px auto;
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-posts-message {
    text-align: center;
    font-size: 1.1rem;
    color: #777;
    padding: 40px 20px;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-top: 20px;
}
.no-posts-message i {
    display: block;
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: #ccc;
}

/* Mobil Uyum */
@media (max-width: 992px) { 
    .blog-page-title { font-size: 2.2rem; }
    .blog-intro-text { font-size: 1rem; margin-bottom: 35px;}
    #single-post-title { font-size: 1.9rem; } /* ID ile düzeltildi */
    .single-post-content-area h1 { font-size: 1.8rem; }
    .single-post-content-area h2 { font-size: 1.6rem; }
    .single-post-content-area h3 { font-size: 1.4rem; }
    .single-post-content-area h4 { font-size: 1.2rem; }
}

@media (max-width: 768px) { 
    .blog-page-title { font-size: 1.9rem; }
    .blog-post-item-title { font-size: 1.3rem; }
    #single-post-title { font-size: 1.7rem; } /* ID ile düzeltildi */
    .single-blog-post-card { padding: 20px; }
    .single-post-content-area { font-size: 1rem; } 
    .single-post-content-area h1 { font-size: 1.6rem; }
    .single-post-content-area h2 { font-size: 1.4rem; }
    .single-post-content-area h3 { font-size: 1.2rem; }
    .single-post-content-area h4 { font-size: 1.1rem; }
    .single-post-content-area blockquote { padding: 0.8em 15px; margin: 1.5em 0;}
    .single-post-content-area table { font-size: 0.9rem; }
    .single-post-content-area th, .single-post-content-area td { padding: 8px 10px; }


    .post-contact-actions {
        flex-direction: column; 
        gap: 10px;
        margin-top: 15px;
        margin-bottom: 20px;
    }
    .post-contact-actions .action-button {
        width: 100%; 
        max-width: 280px; 
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) { 
    .blog-page-title { font-size: 1.7rem; }
    .blog-post-item-title { font-size: 1.2rem; }
    .blog-post-item-content { padding: 15px 20px 20px 20px; }
    #single-post-title { font-size: 1.5rem; } /* ID ile düzeltildi */
    .single-blog-post-card { padding: 15px; }
    .single-post-content-area h1 { font-size: 1.4rem; }
    .single-post-content-area h2 { font-size: 1.3rem; }
    .single-post-content-area h3 { font-size: 1.15rem; }
    .single-post-content-area h4 { font-size: 1.05rem; }
    .share-buttons-container a.social-share-btn {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
    .post-contact-actions .action-button {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    .post-contact-actions .action-button i {
        margin-right: 6px;
        font-size: 0.9rem;
    }
}
