/**
 * 8Muses Pro Enhancements
 * Professional UI improvements
 * Version: 1.0.5
 * 
 * This file loads AFTER the main style.css to enhance the design
 * without breaking existing functionality
 */

/* =============================================================================
   SIDEBAR WIDGETS - PROFESSIONAL REDESIGN
   ============================================================================= */

/* Widget container - SUPER COMPACT */
#left-menu .widget {
    padding: 10px 12px !important;
    margin: 0 0 6px !important;
    background: rgba(25, 28, 38, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
    border-radius: 8px !important;
}

/* Widget inner */
#left-menu .widget__inner,
#left-menu .c-widget-wrap {
    padding: 0 !important;
    margin: 0 !important;
}

/* Widget titles - ONLY 1 accent bar */
#left-menu .widget-heading,
#left-menu .widget .heading,
#left-menu .widget h5,
#left-menu .widget h3,
#left-menu .widget-heading h5 {
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: #a0a4b8 !important;
    margin: 0 0 8px !important;
    padding: 0 !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: none !important;
}

/* Single accent bar */
#left-menu .widget-heading::before,
#left-menu .widget .heading::before {
    content: '' !important;
    width: 3px !important;
    height: 14px !important;
    background: linear-gradient(180deg, #6366f1, #a855f7) !important;
    border-radius: 2px !important;
    flex-shrink: 0 !important;
}

/* Remove ALL other lines/decorations */
#left-menu .widget-heading::after,
#left-menu .widget .heading::after,
#left-menu .widget-heading *::before,
#left-menu .widget-heading *::after,
#left-menu .widget .heading *::before,
#left-menu .widget .heading *::after,
#left-menu .widget-heading h5::before,
#left-menu .widget-heading h5::after {
    display: none !important;
    content: none !important;
}

/* =============================================================================
   TAG CLOUD - PREMIUM DESIGN
   ============================================================================= */

/* Container */
#left-menu .tagcloud,
#left-menu .widget .tagcloud,
#left-menu .wp-tag-cloud,
.widget_tag_cloud .tagcloud,
#left-menu .widget__inner .tagcloud {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
    padding: 0 !important;
    margin: 0 !important;
    max-height: 450px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    background: transparent !important;
    border-radius: 0 !important;
}

/* Custom scrollbar */
#left-menu .tagcloud::-webkit-scrollbar {
    width: 3px !important;
}

#left-menu .tagcloud::-webkit-scrollbar-track {
    background: transparent !important;
}

#left-menu .tagcloud::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #6366f1, #8b5cf6) !important;
    border-radius: 3px !important;
}

/* Tag pills - CLEAN */
#left-menu .tagcloud a,
#left-menu .tagcloud a[style],
#left-menu .widget .tagcloud a,
#left-menu .widget .tagcloud a[style],
.widget_tag_cloud .tagcloud a,
.widget_tag_cloud .tagcloud a[style] {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 8px !important;
    margin: 0 !important;
    background: rgba(30, 33, 45, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 8px !important;
    color: #b0b5c5 !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    text-align: center !important;
    text-decoration: none !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    transition: all 0.2s ease !important;
}

/* Hover effect */
#left-menu .tagcloud a:hover,
#left-menu .widget .tagcloud a:hover,
.widget_tag_cloud .tagcloud a:hover {
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    border-color: transparent !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3) !important;
}

/* =============================================================================
   SIDEBAR MENU ITEMS - COMPACT
   ============================================================================= */

#left-menu .menu-items > li > a,
#left-menu .menu-items > li > .row {
    padding: 8px 15px !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    font-size: 13px !important;
    transition: all 0.2s ease !important;
    border-left: 3px solid transparent !important;
}

#left-menu .menu-items > li {
    margin: 0 !important;
    padding: 0 !important;
}

#left-menu .menu-items > li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.03) !important;
}

#left-menu .menu-items > li:hover > a,
#left-menu .menu-items > li:hover > .row {
    background: rgba(99, 102, 241, 0.1) !important;
    border-left-color: #6366f1 !important;
}

/* =============================================================================
   CARDS / TILES - SIMPLE & CLEAN
   ============================================================================= */

.c-tile {
    border-radius: 10px !important;
    overflow: hidden !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.c-tile:hover {
    transform: translateY(-8px) !important;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(99, 102, 241, 0.15) !important;
}

.c-tile .image {
    overflow: hidden !important;
}

.c-tile img {
    transition: transform 0.4s ease !important;
}

.c-tile:hover img {
    transform: scale(1.08) !important;
}

/* Gradient overlay */
.c-tile .image-overlay {
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.8) 80%,
        rgba(0, 0, 0, 0.95) 100%
    ) !important;
}

/* Card title - CENTERED */
.c-tile .image-title {
    text-align: center !important;
    padding: 14px 12px !important;
}

.c-tile .image-title .title-text {
    display: block !important;
    text-align: center !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    color: #fff !important;
}

/* =============================================================================
   AD TILES - SAME SIZE AS CARDS
   ============================================================================= */

.c-tile.c-tile-ad {
    background: #14161c !important;
    cursor: default !important;
}

.c-tile.c-tile-ad:hover {
    transform: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.c-tile.c-tile-ad .ad-container {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

/* Make ad images fill the container */
.c-tile.c-tile-ad .ad-container img,
.c-tile.c-tile-ad .ad-container a img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Make iframes fill the container */
.c-tile.c-tile-ad .ad-container iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
}

/* Hide empty ad tiles */
.c-tile.c-tile-ad:empty {
    display: none !important;
}

/* =============================================================================
   SEO TEXT SECTIONS - CLEAN & SIMPLE
   ============================================================================= */

/* Container base */
.muses_expand {
    position: relative;
    padding: 20px 25px;
    margin: 0 0 20px 0;
    background: rgba(15, 17, 22, 0.6);
    border: none;
    border-radius: 8px;
    border-left: 3px solid #6366f1;
}

/* Text container - DEFAULT: show all */
.muses_expand .muses_text {
    position: relative;
    padding: 0;
    background: transparent;
    border: none;
}

/* ONLY BOTTOM section (vr_home_des) - collapsible */
.muses_expand.vr_home_des .muses_text {
    max-height: 120px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.muses_expand.vr_home_des .muses_text.expanded {
    max-height: 3000px;
}

/* Gradient fade - only for bottom */
.muses_expand.vr_home_des .muses_text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to top, rgba(15, 17, 22, 0.9) 0%, transparent 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.muses_expand.vr_home_des .muses_text.expanded::after {
    opacity: 0;
}

/* No pseudo before */
.muses_expand::before {
    display: none;
}

/* Hide original control */
.muses_expand .muses_text_control {
    display: none;
}

/* Title */
.muses_expand h2,
.muses_text h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    text-align: center;
}

/* Text */
.muses_expand p,
.muses_text p,
.muses_expand .muses_text {
    font-size: 14px;
    line-height: 1.7;
    color: #b0b5c5;
    margin: 0;
}

/* Links */
.muses_expand a {
    color: #818cf8;
    text-decoration: none;
}

.muses_expand a:hover {
    text-decoration: underline;
}

/* Bold */
.muses_expand strong,
.muses_expand b {
    color: #e5e7eb;
    font-weight: 600;
}

/* Read More Button - only for bottom section */
.seo-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
    padding: 6px 14px;
    background: #6366f1;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.seo-read-more:hover {
    background: #5558e3;
}

.seo-read-more svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.seo-read-more.expanded svg {
    transform: rotate(180deg);
}

/* Legacy selectors */
.content-post,
.entry-content_wrap {
    position: relative;
    padding: 20px 25px;
    margin: 0 0 20px 0;
    background: rgba(15, 17, 22, 0.6);
    border-radius: 8px;
    border-left: 3px solid #6366f1;
}

.content-post::before,
.entry-content_wrap::before {
    display: none;
}

.content-post h1,
.entry-content_wrap h1 {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.content-post p,
.entry-content_wrap p {
    color: #b0b5c5;
    font-size: 14px;
    line-height: 1.7;
}

.content-post h2,
.entry-content_wrap h2,
.muses_expand h2 {
    font-size: 17px !important;
    color: #e5e7eb !important;
    margin-top: 16px !important;
}

.content-post p,
.entry-content_wrap p,
.muses_expand p,
.muses_expand .muses_text {
    color: #9ca3af !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin-bottom: 10px !important;
}

.content-post a,
.entry-content_wrap a,
.muses_expand a {
    color: #a5b4fc !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.content-post a:hover,
.entry-content_wrap a:hover,
.muses_expand a:hover {
    color: #c7d2fe !important;
    text-decoration: underline !important;
}

.content-post strong,
.content-post b,
.entry-content_wrap strong,
.entry-content_wrap b,
.muses_expand strong {
    color: #e5e7eb !important;
    font-weight: 600 !important;
}

/* =============================================================================
   SEO SECTIONS - MOBILE RESPONSIVE
   ============================================================================= */

@media (max-width: 768px) {
    .muses_expand {
        padding: 15px 18px;
        margin: 0 0 15px 0;
    }
    
    .muses_expand.vr_home_des .muses_text {
        max-height: 100px;
    }
    
    .muses_expand h2,
    .muses_text h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .muses_expand p,
    .muses_text p,
    .muses_expand .muses_text {
        font-size: 13px;
    }
    
    .seo-read-more {
        padding: 5px 12px;
        font-size: 11px;
        margin-top: 10px;
    }
    
    /* Legacy */
    .content-post,
    .entry-content_wrap {
        padding: 15px 18px;
    }
    
    .content-post h1,
    .entry-content_wrap h1 {
        font-size: 18px;
    }
}

/* =============================================================================
   SIDEBAR SEARCH - COMPACT
   ============================================================================= */

#left-menu .search-form {
    padding: 0 !important;
    margin: 0 0 5px !important;
}

#left-menu .search-form .input {
    background: #1a1c24 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 6px !important;
    color: #fff !important;
    padding: 8px 12px !important;
    font-size: 13px !important;
    height: auto !important;
    transition: all 0.2s ease !important;
}

#left-menu .search-form .input:focus {
    border-color: #6366f1 !important;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15) !important;
    outline: none !important;
}

/* =============================================================================
   PAGINATION - ULTRA PREMIUM DESIGN
   ============================================================================= */

.pagination,
nav.pagination {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 40px 20px !important;
    flex-wrap: wrap !important;
}

.pagination .page,
nav.pagination .page {
    position: relative !important;
    background: linear-gradient(145deg, #1c1f2e 0%, #14171f 100%) !important;
    border: 1px solid rgba(99, 102, 241, 0.15) !important;
    border-radius: 12px !important;
    color: #a0a5b8 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    min-width: 48px !important;
    height: 48px !important;
    padding: 0 16px !important;
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: nowrap !important;
    line-height: 1 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    overflow: hidden !important;
}

.pagination .page a,
nav.pagination .page a {
    color: inherit !important;
    text-decoration: none !important;
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    white-space: nowrap !important;
    width: 100% !important;
    height: 100% !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Fix spans inside links - single line & centered */
.pagination .page a span,
nav.pagination .page a span {
    display: inline !important;
    line-height: 1 !important;
    vertical-align: middle !important;
}

/* Hover effect - Glow */
.pagination .page:hover,
nav.pagination .page:hover {
    background: linear-gradient(145deg, #252a3d 0%, #1c1f2e 100%) !important;
    border-color: rgba(99, 102, 241, 0.5) !important;
    color: #fff !important;
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 
        0 12px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(99, 102, 241, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* Active/Current page - GRADIENT GLOW */
.pagination .page.current,
nav.pagination .page.current {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 700 !important;
    box-shadow: 
        0 8px 25px rgba(99, 102, 241, 0.5),
        0 0 30px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

.pagination .page.current:hover,
nav.pagination .page.current:hover {
    transform: translateY(-4px) scale(1.08) !important;
    box-shadow: 
        0 15px 35px rgba(99, 102, 241, 0.5),
        0 0 40px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

/* Dots/ellipsis */
.pagination .page.dots,
nav.pagination .page.dots {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #4a4f60 !important;
    min-width: 35px !important;
    font-size: 18px !important;
    letter-spacing: 2px !important;
    pointer-events: none !important;
    padding: 0 8px !important;
}

.pagination .page.dots:hover,
nav.pagination .page.dots:hover {
    transform: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* ============= RESPONSIVE ============= */

@media (max-width: 768px) {
    .pagination,
    nav.pagination {
        gap: 6px !important;
        padding: 25px 10px !important;
    }
    
    .pagination .page,
    nav.pagination .page {
        min-width: 42px !important;
        height: 42px !important;
        font-size: 13px !important;
        border-radius: 10px !important;
        padding: 0 12px !important;
    }
    
    .pagination .page:hover,
    nav.pagination .page:hover {
        transform: translateY(-2px) !important;
    }
}

@media (max-width: 480px) {
    .pagination,
    nav.pagination {
        gap: 5px !important;
        padding: 20px 8px !important;
    }
    
    .pagination .page,
    nav.pagination .page {
        min-width: 36px !important;
        height: 36px !important;
        font-size: 12px !important;
        border-radius: 8px !important;
        padding: 0 10px !important;
    }
}

/* Old selector fallback */
.c-page_nav .item {
    position: relative !important;
    background: linear-gradient(145deg, #1c1f2e 0%, #14171f 100%) !important;
    border: 1px solid rgba(99, 102, 241, 0.15) !important;
    border-radius: 12px !important;
    color: #a0a5b8 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    min-width: 48px !important;
    height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.c-page_nav .item:hover {
    background: linear-gradient(145deg, #252a3d 0%, #1c1f2e 100%) !important;
    border-color: rgba(99, 102, 241, 0.5) !important;
    color: #fff !important;
    transform: translateY(-4px) scale(1.05) !important;
}

.c-page_nav .item.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5) !important;
}

/* =============================================================================
   BUTTONS - ENHANCED
   ============================================================================= */

.c-box .button,
.row .button,
#left-menu .newsletter-form .button {
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    border: none !important;
    border-radius: 6px !important;
    color: #fff !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
}

.c-box .button:hover,
.row .button:hover,
#left-menu .newsletter-form .button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4) !important;
}

/* =============================================================================
   SCROLLBAR - MODERN DARK
   ============================================================================= */

::-webkit-scrollbar {
    width: 8px !important;
    height: 8px !important;
}

::-webkit-scrollbar-track {
    background: #0d0f14 !important;
}

::-webkit-scrollbar-thumb {
    background: #2d3042 !important;
    border-radius: 4px !important;
}

::-webkit-scrollbar-thumb:hover {
    background: #3d4052 !important;
}

/* =============================================================================
   HEADER IMPROVEMENTS
   ============================================================================= */

#top-menu {
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

/* =============================================================================
   RESPONSIVE MOBILE IMPROVEMENTS
   ============================================================================= */

@media (max-width: 767px) {
    .c-tile {
        border-radius: 8px !important;
    }
    
    .c-tile .image-title {
        padding: 10px 8px !important;
    }
    
    .c-tile .image-title .title-text {
        font-size: 11px !important;
    }
    
    .c-tile:hover {
        transform: none !important;
    }
    
    .c-tile:active {
        transform: scale(0.98) !important;
    }
    
    /* Tags mobile */
    #left-menu .tagcloud a,
    #left-menu .widget .tagcloud a {
        padding: 8px 6px !important;
        font-size: 10px !important;
    }
}

/* =============================================================================
   SMOOTH TRANSITIONS GLOBALLY
   ============================================================================= */

a, button, .c-tile, .item, input, .tagcloud a {
    transition: all 0.2s ease !important;
}

/* =============================================================================
   LINK COLORS - ACCENT
   ============================================================================= */

#left-menu a:hover,
.widget a:hover {
    color: #8b5cf6 !important;
}

/* =============================================================================
   SINGLE PAGE - COMIC DETAILS IMPROVEMENTS
   ============================================================================= */

/* Tags wrapper */
.tags-wrap {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    max-height: 28px;
    gap: 4px;
    align-items: center;
}

.tags-wrap a {
    display: inline-block;
    padding: 3px 8px;
    margin: 2px 4px 2px 0;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 4px;
    color: #a5b4fc;
    font-size: 12px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.tags-wrap a:hover {
    background: rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.4);
    color: #c7d2fe;
}

.show-more-btn {
    flex-shrink: 0;
    padding: 4px 10px;
    background: #6366f1;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.show-more-btn:hover {
    background: #5558e3;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .tags-wrap {
        max-height: 26px;
    }
    
    .tags-wrap a {
        padding: 2px 6px;
        font-size: 11px;
    }
    
    .show-more-btn {
        padding: 2px 6px;
        font-size: 10px;
    }
}

/* =============================================================================
   RESPONSIVE TITLES - MOBILE FRIENDLY
   ============================================================================= */

/* Títulos principales de manga/comic */
.manga_meta h1,
.post-title h1,
.c-blog__heading h1,
h1.post-title,
.summary h1,
.entry-title {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    -webkit-hyphens: auto !important;
    line-height: 1.3 !important;
}

/* Mobile - títulos más pequeños */
@media (max-width: 767px) {
    /* TÍTULO PRINCIPAL DE MANGA */
    .manga_meta h1 {
        font-size: 18px !important;
        line-height: 1.25 !important;
        margin: 0 0 8px 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 70% !important;
    }
    
    .manga_meta {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: flex-start !important;
        justify-content: space-between !important;
        gap: 5px !important;
    }
    
    .manga_meta .post-rating {
        flex-shrink: 0 !important;
    }
    
    .post-title h1,
    .c-blog__heading h1,
    h1.post-title,
    .summary h1,
    .entry-title,
    .post-content h1 {
        font-size: 18px !important;
        line-height: 1.25 !important;
        margin-bottom: 10px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* H2 también responsive */
    .post-title h2,
    h2.post-title,
    .summary h2,
    .entry-title h2,
    .post-content h2 {
        font-size: 16px !important;
        line-height: 1.3 !important;
    }
    
    /* H3 */
    h3, .post-content h3 {
        font-size: 15px !important;
        line-height: 1.3 !important;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .manga_meta h1 {
        font-size: 16px !important;
        line-height: 1.2 !important;
        max-width: 65% !important;
    }
    
    .post-title h1,
    .c-blog__heading h1,
    h1.post-title,
    .summary h1,
    .entry-title,
    .post-content h1 {
        font-size: 16px !important;
        line-height: 1.2 !important;
    }
    
    .post-title h2,
    h2.post-title,
    .summary h2,
    .post-content h2 {
        font-size: 15px !important;
    }
}
