.blog-main-content 
{
    padding-top: 90px !important; 
    font-family: "Montserrat", sans-serif;
}

.container-two {
    max-width: 1296px;
}

.blog-swiper {
    width: 100%;
    position: relative;
}

.blogSwiper {
    width: 100%;
    height: auto;
}

.swiper-slide {
    width: 100%;
    height: auto;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #333;
    color: #fff;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #333;
    transform: scale(1.2);
}

.blog_section {
    padding: 60px 0;
    background: #fff;
}

.blog-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.blog-article {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.article-date {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.article-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 20px;
}

.article-excerpt {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}


.article-excerpt .ql-font-monospace
{
    color: #666 !important;
    font-weight: normal !important;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #000;
    border: 1px solid #000;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}

.read-more-btn i {
    margin-left: 8px;
    font-size: 0.8rem;
}

/* Blog Grid Section */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.8), rgba(13, 71, 161, 0.8));
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.luckybear-logo {
    position: absolute;
    top: 15px;
    left: 15px;
}

.logo-small {
    width: 80px;
    height: auto;
    filter: brightness(0) invert(1);
}

.overlay-title h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    margin-top: 60px;
}

.game-title-overlay {
    text-align: center;
}

.game-title-overlay h4 {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.blog-card-content {
    padding: 25px;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}


.blog-excerpt .ql-font-monospace
{
    color: #666 !important;
    font-weight: normal !important;
}

/* Blog Detail Styles */
.blog-detail-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 40px;
    margin: 20px 0;
}

.blog-detail-header {
    margin-bottom: 30px;
}

.blog-detail-date {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.blog-detail-image {
    margin: 30px 0;
    text-align: center;
}

.blog-detail-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.blog-detail-content {
    margin: 30px 0;
}

.blog-detail-excerpt {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #1a237e;
}

.blog-detail-excerpt p {
    font-size: 1.1rem;
    color: #555;
    margin: 0;
    font-style: italic;
}

.blog-detail-full-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.blog-detail-full-content h1,
.blog-detail-full-content h2,
.blog-detail-full-content h3,
.blog-detail-full-content h4,
.blog-detail-full-content h5,
.blog-detail-full-content h6 {
    color: #1a237e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-detail-full-content p {
    margin-bottom: 20px;
}

.blog-detail-full-content ul,
.blog-detail-full-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-detail-full-content li {
    margin-bottom: 8px;
}

.blog-detail-full-content a {
    color: #1a237e;
    text-decoration: underline;
}

.blog-detail-full-content a:hover {
    color: #0d47a1;
}

.blog-detail-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.back-to-blog-btn {
    display: inline-flex;
    align-items: center;
    background: #1a237e;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-to-blog-btn:hover {
    background: #0d47a1;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.3);
}

.back-to-blog-btn i {
    margin-right: 8px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .blog-detail-card {
        padding: 20px;
        margin: 10px 0;
    }
    
    .blog-detail-title {
        font-size: 1.8rem;
    }
    
    .blog-detail-excerpt {
        padding: 15px;
    }
    
    .blog-detail-excerpt p {
        font-size: 1rem;
    }
}

.read-more-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #1a237e;
    text-decoration: none;
}

.read-more-link i {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more-link:hover i {
    transform: translateX(3px);
}

/* Blog Card Link Styling */
.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.blog-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.blog-card-link:hover .blog-card {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.blog-card-link:hover .read-more-link {
    color: #1a237e;
}

.blog-card-link:hover .read-more-link i {
    transform: translateX(3px);
}

/* Pagination Styles */
.pagination-wrapper {
    margin-top: 60px;
    margin-bottom: 40px;
}

.pagination {
    margin: 0;
}

.page-item {
    margin: 0 5px;
}

.page-link {
    color: #333;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
}

.page-link:hover {
    color: #fff;
    background-color: #1a237e;
    border-color: #1a237e;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.3);
}

.page-item.active .page-link {
    background-color: #1a237e;
    border-color: #1a237e;
    color: #fff;
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.3);
}

.page-item.disabled .page-link {
    color: #999;
    background-color: #f8f9fa;
    border-color: #e0e0e0;
    cursor: not-allowed;
}

.page-item.disabled .page-link:hover {
    transform: none;
    box-shadow: none;
    background-color: #f8f9fa;
    border-color: #e0e0e0;
    color: #999;
}

/* Pagination responsive */
@media (max-width: 768px) {
    .pagination-wrapper {
        margin-top: 40px;
        margin-bottom: 30px;
    }
    
    .page-link {
        padding: 10px 12px;
        font-size: 0.8rem;
        min-width: 40px;
    }
    
    .page-item {
        margin: 0 2px;
    }
}

@media (max-width: 768px) {
    .blog_section {
        padding: 40px 0;
    }
    
    .blog-article {
        padding: 20px;
    }
    
    .article-title {
        font-size: 1.3rem;
    }
    
    .blog-promo-image {
        padding: 30px 20px;
        min-height: 250px;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
    .overlay-title h3 {
        font-size: 0.9rem;
    }
    
    .game-title-overlay h4 {
        font-size: 1rem;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    /* Touch-friendly improvements */
    .read-more-btn,
    .read-more-link,
    .page-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better spacing for mobile */
    .blog_section {
        padding: 30px 0;
    }
    
    .container-two {
        max-width: 100%;
        padding: 0 15px;
    }
    .blog-main-content {
        padding-top: 70px !important;
    }
    
    .container-two {
        max-width: 100%;
        padding: 0 15px;
    }
    
    
    .blog-article {
        padding: 15px;
        margin: 0 10px;
    }
    
    .blog-article .col-12.row {
        flex-direction: column;
    }
    
    .blog-article .col-6 {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .blog-article .col-6:last-child {
        margin-bottom: 0;
    }
    
    .article-title {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .article-excerpt {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .read-more-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Swiper Navigation Mobile */
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px;
    }
    
    /* Section Title Mobile */
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
        padding: 0 15px;
    }
    
    /* Blog Grid Mobile */
    .blog-card {
        margin-bottom: 20px;
    }
    
    .blog-card-image {
        height: 180px;
    }
    
    .blog-card-content {
        padding: 15px;
    }
    
    .blog-title {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .blog-excerpt {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .blog-date {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .read-more-link {
        font-size: 0.8rem;
    }
    
    /* Pagination Mobile */
    .pagination-wrapper {
        margin-top: 30px;
        margin-bottom: 20px;
    }
    
    .page-link {
        padding: 8px 10px;
        font-size: 0.8rem;
        min-width: 35px;
    }
    
    .page-item {
        margin: 0 1px;
    }
    
    /* Footer Mobile */
    .footer-end-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 15px 0;
    }
    
    .footer-end-wrapper .col-6 {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .footer-end-wrapper .col-6:last-child {
        margin-bottom: 0;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
    
    .footer-icon {
        width: 25px;
        height: 25px;
    }
    
    /* Mobile navigation improvements */
    .swiper-button-next,
    .swiper-button-prev {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    /* Better touch targets */
    .blog-card-link {
        padding: 5px;
        margin: -5px;
    }
    
    /* Improved readability */
    .article-excerpt,
    .blog-excerpt {
        -webkit-line-clamp: 3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media (max-width: 576px) {
    .blog-main-content {
        padding-top: 60px !important;
    }
    
    .blog_section {
        padding: 20px 0;
    }
    
    .blog-article {
        padding: 12px;
        margin: 0 5px;
    }
    
    .article-title {
        font-size: 1.2rem;
    }
    
    .article-excerpt {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.4rem;
        padding: 0 10px;
    }
    
    .blog-card-image {
        height: 150px;
    }
    
    .blog-card-content {
        padding: 12px;
    }
    
    .blog-title {
        font-size: 0.9rem;
    }
    
    .blog-excerpt {
        font-size: 0.8rem;
    }
    
    /* Swiper Navigation Extra Small */
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 12px;
    }
    
    /* Pagination Extra Small */
    .page-link {
        padding: 6px 8px;
        font-size: 0.75rem;
        min-width: 30px;
    }
    
    /* Extra small screen improvements */
    .blog-card-link {
        padding: 3px;
        margin: -3px;
    }
    
    /* Better text truncation for very small screens */
    .blog-title {
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .article-title {
        -webkit-line-clamp: 3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .container-two {
        max-width: 95%;
    }
    
    .blog-article {
        padding: 25px;
    }
    
    .article-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .blog-card-image {
        height: 220px;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
}

/* Large Mobile Landscape */
@media (min-width: 577px) and (max-width: 768px) {
    .blog-article .col-6 {
        width: 50%;
        margin-bottom: 0;
    }
    
    .blog-article .col-6:first-child {
        padding-right: 10px;
    }
    
    .blog-article .col-6:last-child {
        padding-left: 10px;
    }
    
    .article-title {
        font-size: 1.3rem;
    }
    
    .blog-card-image {
        height: 200px;
    }
}

/* Extra Large Screens */
@media (min-width: 1200px) {
    .container-two {
        max-width: 1400px;
    }
    
    .blog-article {
        padding: 40px;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .blog-card,
    .read-more-btn,
    .read-more-link,
    .page-link {
        transition: none;
    }
    
    .blogSwiper {
        --swiper-navigation-size: 40px;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .blog-card {
        border: 2px solid #000;
    }
    
    .read-more-btn {
        border: 2px solid #000;
    }
    
    .page-link {
        border: 2px solid #000;
    }
}

/* Print Styles */
@media print {
    .blog-main-content {
        padding-top: 0 !important;
    }
    
    .navbar,
    .footer-end,
    .swiper-button-next,
    .swiper-button-prev,
    .swiper-pagination {
        display: none !important;
    }
    
    .blog-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* Blog Detail Page Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Blog Detail Card Mobile */
    .blog-detail-card {
        padding: 20px 15px;
        margin: 10px 0;
        border-radius: 10px;
    }
    
    .blog-detail-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 20px;
        word-wrap: break-word;
    }
    
    .blog-detail-image {
        margin: 20px 0;
    }
    
    .blog-detail-image img {
        border-radius: 8px;
        max-width: 100%;
        height: auto;
    }
    
    .blog-detail-excerpt {
        padding: 15px;
        margin-bottom: 25px;
        border-radius: 6px;
    }
    
    .blog-detail-excerpt p {
        font-size: 1rem;
        line-height: 1.5;
        margin: 0;
    }
    
    .blog-detail-full-content {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .blog-detail-full-content h1,
    .blog-detail-full-content h2,
    .blog-detail-full-content h3,
    .blog-detail-full-content h4,
    .blog-detail-full-content h5,
    .blog-detail-full-content h6 {
        font-size: 1.3rem;
        margin-top: 25px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .blog-detail-full-content p {
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .blog-detail-full-content ul,
    .blog-detail-full-content ol {
        margin-bottom: 15px;
        padding-left: 20px;
    }
    
    .blog-detail-full-content li {
        margin-bottom: 6px;
    }
    
    .blog-detail-footer {
        margin-top: 30px;
        padding-top: 20px;
        text-align: center;
    }
    
    .back-to-blog-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Container adjustments for mobile */
    .container-two {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* Better spacing for mobile */
    .blog_section {
        padding: 20px 0;
    }
    
    /* Mobile navigation improvements */
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    /* Better touch targets for mobile */
    .back-to-blog-btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Improved readability on mobile */
    .blog-detail-full-content img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 15px 0;
    }
    
    /* Better table handling on mobile */
    .blog-detail-full-content table {
        font-size: 0.8rem;
        overflow-x: auto;
        display: block;
    }
    
    .blog-detail-full-content table td,
    .blog-detail-full-content table th {
        padding: 8px 6px;
        min-width: 80px;
    }
}

@media (max-width: 576px) {
    .blog-detail-card {
        padding: 15px 12px;
        margin: 5px 0;
    }
    
    .blog-detail-title {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .blog-detail-excerpt {
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .blog-detail-excerpt p {
        font-size: 0.9rem;
    }
    
    .blog-detail-full-content {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .blog-detail-full-content h1,
    .blog-detail-full-content h2,
    .blog-detail-full-content h3,
    .blog-detail-full-content h4,
    .blog-detail-full-content h5,
    .blog-detail-full-content h6 {
        font-size: 1.2rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    
    .blog-detail-full-content p {
        margin-bottom: 12px;
    }
    
    .blog-detail-full-content ul,
    .blog-detail-full-content ol {
        margin-bottom: 12px;
        padding-left: 18px;
    }
    
    .back-to-blog-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    /* Container adjustments for extra small screens */
    .container-two {
        padding: 0 10px;
    }
    
    /* Extra small screen improvements */
    .blog-detail-title {
        word-break: break-word;
        hyphens: auto;
    }
    
    .blog-detail-full-content {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Better button sizing for very small screens */
    .back-to-blog-btn {
        padding: 12px 14px;
        font-size: 0.8rem;
    }
    
    /* Improved spacing for very small screens */
    .blog-detail-card {
        margin: 2px 0;
    }
    
    .blog-detail-excerpt {
        margin-bottom: 15px;
    }
}

/* Tablet Responsive for Blog Detail */
@media (min-width: 769px) and (max-width: 1024px) {
    .blog-detail-card {
        padding: 30px 25px;
    }
    
    .blog-detail-title {
        font-size: 2rem;
    }
    
    .blog-detail-full-content {
        font-size: 1.05rem;
    }
    
    .blog-detail-full-content h1,
    .blog-detail-full-content h2,
    .blog-detail-full-content h3,
    .blog-detail-full-content h4,
    .blog-detail-full-content h5,
    .blog-detail-full-content h6 {
        font-size: 1.5rem;
    }
}

/* Large Mobile Landscape */
@media (min-width: 577px) and (max-width: 768px) {
    .blog-detail-title {
        font-size: 1.8rem;
    }
    
    .blog-detail-full-content {
        font-size: 1rem;
    }
    
    .blog-detail-full-content h1,
    .blog-detail-full-content h2,
    .blog-detail-full-content h3,
    .blog-detail-full-content h4,
    .blog-detail-full-content h5,
    .blog-detail-full-content h6 {
        font-size: 1.4rem;
    }
}

/* Extra Large Screens for Blog Detail */
@media (min-width: 1200px) {
    .blog-detail-card {
        padding: 50px 40px;
    }
    
    .blog-detail-title {
        font-size: 2.8rem;
    }
    
    .blog-detail-full-content {
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    .blog-detail-full-content h1,
    .blog-detail-full-content h2,
    .blog-detail-full-content h3,
    .blog-detail-full-content h4,
    .blog-detail-full-content h5,
    .blog-detail-full-content h6 {
        font-size: 1.8rem;
    }
}

/* Blog Detail Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .back-to-blog-btn {
        transition: none;
    }
}

@media (prefers-contrast: high) {
    .blog-detail-card {
        border: 2px solid #000;
    }
    
    .blog-detail-excerpt {
        border: 2px solid #000;
    }
    
    .back-to-blog-btn {
        border: 2px solid #000;
    }
}

/* Blog Detail Print Styles */
@media print {
    .blog-detail-card {
        padding: 20px;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .blog-detail-title {
        font-size: 1.8rem;
        color: #000;
    }
    
    .blog-detail-full-content {
        font-size: 1rem;
        color: #000;
    }
    
    .back-to-blog-btn {
        display: none;
    }
}
