/*
Theme Name: BlogPeak 2
Theme URI: https://themes.developer.com/blogpeak2
Author: Developer
Description: Magazine-style theme inspired by blogpeak.com with dark header, newsflash ticker, hero grid, and pink accent.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blogpeak2
Tags: blog, news, magazine, grid-layout, custom-logo, custom-menu, featured-images, footer-widgets, elementor
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Roboto', sans-serif; color: #0a0a0a; background: #f5f5f5; line-height: 1.7; overflow-x: hidden; }
a { color: #f2295b; text-decoration: none; transition: color 0.2s; }
a:hover { color: #d91e4a; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: 'Roboto', sans-serif; color: #0a0a0a; line-height: 1.3; font-weight: 700; overflow-wrap: anywhere; word-break: break-word; }
p { overflow-wrap: anywhere; word-break: break-word; }

/* ===== LAYOUT ===== */
.site-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.content-area { display: flex; gap: 30px; padding: 30px 0; align-items: flex-start; }
.content-area .main-content { position: sticky; top: 16px; align-self: flex-start; }
.main-content { flex: 1; min-width: 0; }
.sidebar-area { width: 300px; flex-shrink: 0; }
@media (max-width: 991px) {
    .content-area { flex-direction: column; }
    .content-area .main-content { position: static; }
    .sidebar-area { width: 100%; }
}

/* ===== HEADER (centered logo, magazine style) ===== */
.site-header { background: #ffffff; color: #0a0a0a; position: relative; z-index: 100; border-bottom: 1px solid #f0f0f0; }
.site-header .header-inner { display: flex; align-items: center; justify-content: center; min-height: 100px; padding: 18px 0; }
.site-header.site-header-centered .site-branding { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.site-branding .custom-logo { max-height: 64px; width: auto; }
.site-branding .custom-logo-link { display: inline-block; }
.site-title-text { font-family: 'Pacifico', 'Brush Script MT', cursive; font-size: 36px; font-weight: 400; color: #0a0a0a; letter-spacing: 0; line-height: 1.1; text-decoration: none; }
.site-title-text:hover { color: #f2295b; }
.site-description { font-size: 12px; color: #888888; margin-top: 4px; letter-spacing: 0.5px; text-transform: uppercase; }
@media (max-width: 600px) {
    .site-header .header-inner { min-height: 80px; padding: 12px 0; }
    .site-title-text { font-size: 28px; }
}

/* ===== HEADER SEARCH (toggle popup) ===== */
.main-nav-right { display: flex; align-items: center; gap: 8px; position: relative; }
.header-search-toggle { background: rgba(255,255,255,0.08); border: none; color: #ffffff; padding: 8px; border-radius: 50%; cursor: pointer; width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; transition: background 0.2s; }
.header-search-toggle:hover { background: #f2295b; }
.header-search-toggle svg { width: 16px; height: 16px; }
.header-search-form { position: absolute; top: 100%; right: 0; margin-top: 8px; background: #212121; padding: 8px; border-radius: 4px; box-shadow: 0 6px 20px rgba(0,0,0,0.3); display: none; z-index: 200; }
.header-search-form.open { display: block; }
.header-search-form input { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: #ffffff; padding: 9px 16px; border-radius: 4px; font-size: 13px; width: 240px; font-family: 'Roboto', sans-serif; }
.header-search-form input:focus { background: rgba(255,255,255,0.12); border-color: #f2295b; outline: none; }
.header-search-form input::placeholder { color: rgba(255,255,255,0.4); }

/* ===== MAIN NAVIGATION ===== */
.main-nav { background: #212121; border-top: 1px solid rgba(255,255,255,0.06); }
.main-nav .site-container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.main-nav .nav-menu { flex: 1; }
.social-icons { display: flex; align-items: center; gap: 6px; }
.social-icons .social-icon { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; color: #ffffff; background: rgba(255,255,255,0.08); transition: background 0.2s, color 0.2s, transform 0.2s; }
.social-icons .social-icon:hover { background: #f2295b; color: #ffffff; transform: translateY(-1px); }
.social-icons .social-icon svg { width: 16px; height: 16px; }
@media (max-width: 768px) {
    .social-icons { order: 3; }
}
.nav-menu { list-style: none; display: flex; flex-wrap: wrap; gap: 0; }
.nav-menu li { position: relative; }
.nav-menu li a { display: block; padding: 14px 18px; color: #ffffff; font-family: 'Roboto', sans-serif; font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.2s; border-bottom: 3px solid transparent; }
.nav-menu li a:hover, .nav-menu li.current-menu-item a, .nav-menu li.current_page_item a { color: #f2295b; border-bottom-color: #f2295b; }
.nav-menu li ul { display: none; position: absolute; top: 100%; left: 0; background: #212121; min-width: 220px; z-index: 200; border-top: 3px solid #f2295b; box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.nav-menu li:hover > ul { display: block; }
.nav-menu li ul li a { padding: 10px 18px; font-size: 13px; text-transform: none; border-bottom: 1px solid rgba(255,255,255,0.06); border-left: none; border-right: none; }

/* Mobile menu toggle */
.menu-toggle { display: none; background: none; border: none; color: #ffffff; font-size: 24px; cursor: pointer; padding: 10px; }
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-menu { display: none; flex-direction: column; width: 100%; }
    .nav-menu.active { display: flex; }
    .nav-menu li a { border-bottom-color: transparent; border-left: 3px solid transparent; }
    .nav-menu li a:hover { border-left-color: #f2295b; }
    .nav-menu li ul { position: static; box-shadow: none; border-top: none; }
    .nav-menu li ul li a { padding-left: 36px; }
}

/* ===== NEWSFLASH TICKER ===== */
.newsflash { background: #1a1a1a; border-top: 1px solid rgba(255,255,255,0.06); overflow: hidden; }
.newsflash-inner { display: flex; align-items: center; min-height: 40px; }
.newsflash-badge { background: #f2295b; color: #ffffff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 6px 14px; flex-shrink: 0; }
.newsflash-track { flex: 1; overflow: hidden; position: relative; margin-left: 16px; }
.newsflash-scroll { display: flex; gap: 40px; animation: newsflash-scroll 30s linear infinite; white-space: nowrap; }
.newsflash-scroll a { color: #cccccc; font-size: 13px; font-weight: 400; transition: color 0.2s; }
.newsflash-scroll a:hover { color: #f2295b; }
@keyframes newsflash-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== HERO SLIDER ===== */
.hero-section { margin-bottom: 30px; }
.hero-slider { position: relative; }
.hero-slider .carousel-track-wrap { overflow: hidden; }
.hero-slider .hero-track { display: flex; transition: transform 0.5s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.hero-slide { position: relative; flex: 0 0 100%; min-height: 460px; aspect-ratio: 16 / 7; overflow: hidden; background: #1a1a1a; display: block; }
.hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-slide .no-thumb-hero { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #212121, #f2295b); color: #ffffff; font-size: 80px; font-weight: 700; opacity: 0.7; }
.hero-slide-overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 60px 60px 80px; background: linear-gradient(to top, rgba(0,0,0,0.85), transparent); color: #ffffff; }
.hero-slide-cat { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1px; color: #ffffff; margin-bottom: 14px; }
.hero-slide-title { font-size: 38px; font-weight: 700; line-height: 1.2; max-width: 70%; margin: 0; color: #ffffff; overflow-wrap: anywhere; word-break: break-word; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.hero-prev, .hero-next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 44px; height: 44px; border-radius: 50%; border: none; background: rgba(255,255,255,0.9); color: #0a0a0a; font-size: 16px; cursor: pointer; box-shadow: 0 4px 14px rgba(0,0,0,0.2); transition: background 0.2s, color 0.2s; display: flex; align-items: center; justify-content: center; }
.hero-prev:hover:not(:disabled), .hero-next:hover:not(:disabled) { background: #f2295b; color: #ffffff; }
.hero-prev:disabled, .hero-next:disabled { opacity: 0; pointer-events: none; }
.hero-prev { left: 16px; }
.hero-next { right: 16px; }
.hero-dots { position: absolute; left: 0; right: 0; bottom: 20px; display: flex; justify-content: center; gap: 8px; z-index: 2; }
.hero-dots .carousel-dot, .hero-dots .ig-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,0.4); padding: 0; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.hero-dots .carousel-dot:hover, .hero-dots .ig-dot:hover { background: rgba(255,255,255,0.7); }
.hero-dots .carousel-dot.is-active, .hero-dots .ig-dot.is-active { background: #f2295b; transform: scale(1.4); }
@media (max-width: 768px) {
    .hero-slide { min-height: 320px; }
    .hero-slide-overlay { padding: 30px 24px 50px; }
    .hero-slide-title { font-size: 22px; max-width: 100%; }
}

/* ===== POST CARDS ===== */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 991px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .posts-grid { grid-template-columns: 1fr; } }

.post-card { background: #ffffff; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; }
.post-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.post-card .card-thumb { position: relative; overflow: hidden; aspect-ratio: 16/10; background: #e0e0e0; }
.post-card .card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.post-card:hover .card-thumb img { transform: scale(1.05); }
.post-card .card-thumb .no-thumb { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #212121, #f2295b); color: white; font-family: 'Roboto', sans-serif; font-size: 28px; font-weight: 700; opacity: 0.6; }
.post-card .card-body { padding: 18px; }
.post-card .card-category { display: inline-block; padding: 3px 10px; border-radius: 3px; font-size: 11px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.post-card .card-title { font-size: 17px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; overflow-wrap: anywhere; word-break: break-word; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-card .card-title a { color: #0a0a0a; }
.post-card .card-title a:hover { color: #f2295b; }
.post-card .card-excerpt { overflow-wrap: anywhere; word-break: break-word; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-card .card-body { min-width: 0; }
.post-card .card-excerpt { font-size: 14px; color: #666666; line-height: 1.6; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-card .card-meta { font-size: 12px; color: #999999; display: flex; align-items: center; gap: 12px; }

/* Category color badges */
.cat-color-1 { background: #f2295b; }
.cat-color-2 { background: #1e96fc; }
.cat-color-3 { background: #3ddc97; }
.cat-color-4 { background: #c49529; }
.cat-color-5 { background: #9b59b6; }
.cat-color-6 { background: #e67e22; }
.cat-color-7 { background: #1abc9c; }
.cat-color-8 { background: #e74c3c; }

/* ===== SECTION HEADERS — tab/ribbon style ===== */
.section-header { position: relative; display: flex; align-items: stretch; margin-bottom: 24px; border-bottom: 1px solid #e5e7eb; }
.section-title { display: inline-flex; align-items: center; padding: 8px 22px 10px; background: #f2295b; color: #ffffff !important; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px 4px 0 0; margin-bottom: -1px; position: relative; }
.section-title::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: #f2295b; }
/* Apply same tab style to category, YMHM, and authors headings */
.catsec-head { display: flex; align-items: stretch; justify-content: space-between; gap: 16px; margin-bottom: 24px; border-bottom: 1px solid #e5e7eb; }
.catsec-title { display: inline-flex; align-items: center; padding: 8px 22px 10px; background: #f2295b; color: #ffffff !important; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px 4px 0 0; margin: 0 !important; line-height: 1.2; min-height: 36px; }
.catsec-title a { color: #ffffff !important; }
.catsec-title::after { display: none !important; }
.catsec-more { align-self: center; }
.ymhm-head { display: flex; align-items: stretch; justify-content: space-between; gap: 16px; margin-bottom: 22px; border-bottom: 1px solid #e5e7eb; }
.ymhm-title { display: inline-flex; align-items: center; padding: 8px 22px 10px; background: #f2295b; color: #ffffff !important; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px 4px 0 0; margin: 0 !important; line-height: 1.2; min-height: 36px; }
.ymhm-title::after { display: none !important; }
.ymhm-dots { align-self: center; }
.authors-head { text-align: center; margin-bottom: 28px; }
.authors-title { display: inline-flex; align-items: center; padding: 8px 22px 10px; background: #f2295b; color: #ffffff !important; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; margin: 0 !important; line-height: 1.2; }
.authors-title::after { display: none !important; }

/* ===== SIDEBAR ===== */
.widget { background: #ffffff; border-radius: 6px; padding: 22px; margin-bottom: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.widget-title { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: #0a0a0a; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid #eeeeee; width: 100%; position: relative; }
.widget-title::before { content: ''; display: inline-block; width: 14px; height: 14px; background: #f2295b; border-radius: 2px; }
.widget-title::after { content: ''; position: absolute; left: 0; bottom: -1px; width: 60px; height: 2px; background: #f2295b; }

/* Stay Connected widget */
.stay-connected-list { display: flex; flex-direction: column; gap: 6px; }
.sc-row { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 4px; color: #ffffff !important; font-size: 13px; font-weight: 600; transition: filter 0.15s, transform 0.15s; }
.sc-row:hover { filter: brightness(1.1); transform: translateX(2px); }
.sc-row .sc-icon { display: inline-flex; }
.sc-row .sc-icon svg { width: 14px; height: 14px; color: #ffffff; }
.sc-row .sc-label { flex: 1; }
.sc-row .sc-action { font-size: 11px; padding: 3px 9px; background: rgba(255,255,255,0.2); border-radius: 2px; text-transform: uppercase; letter-spacing: 0.5px; }

/* Don't Miss widget — text list */
.dm-list { list-style: none; margin: 0; padding: 0; }
.dm-list li { padding: 10px 0; border-bottom: 1px solid #f0f0f0; font-size: 14px; line-height: 1.5; }
.dm-list li:last-child { border-bottom: none; }
.dm-list li a { color: #0a0a0a; font-weight: 600; transition: color 0.2s; }
.dm-list li a:hover { color: #f2295b; }

/* Popular Posts — first item is featured */
.pop-feat { display: block; position: relative; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 4px; margin-bottom: 14px; background: #1a1a1a; }
.pop-feat img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pop-feat-overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px; background: linear-gradient(to top, rgba(0,0,0,0.85), transparent); color: #ffffff; }
.pop-feat-cat { display: block; font-size: 10px; font-weight: 700; letter-spacing: 1px; margin-bottom: 4px; opacity: 0.95; }
.pop-feat-title { display: block; font-size: 14px; font-weight: 700; line-height: 1.3; overflow-wrap: anywhere; word-break: break-word; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.wrp-cat { font-size: 10px; font-weight: 700; letter-spacing: 1px; color: #f2295b; text-transform: uppercase; margin-bottom: 4px; }
.widget ul { list-style: none; }
.widget ul li { padding: 8px 0; border-bottom: 1px solid #eeeeee; font-size: 14px; }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: #0a0a0a; display: flex; justify-content: space-between; }
.widget ul li a:hover { color: #f2295b; }
.widget ul li .count { color: #999999; font-size: 12px; }

/* Recent Posts Widget */
.widget-recent-post { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid #eeeeee; }
.widget-recent-post:last-child { border-bottom: none; }
.widget-recent-post .wrp-thumb { width: 70px; height: 70px; border-radius: 4px; overflow: hidden; flex-shrink: 0; background: #e0e0e0; }
.widget-recent-post .wrp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.widget-recent-post .wrp-content { flex: 1; min-width: 0; }
.widget-recent-post .wrp-title { font-size: 13px; font-weight: 700; line-height: 1.4; margin-bottom: 4px; overflow-wrap: anywhere; word-break: break-word; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.widget-recent-post .wrp-title a { color: #0a0a0a; display: inline; }
.widget-recent-post .wrp-title a:hover { color: #f2295b; }
.widget-recent-post .wrp-date { font-size: 11px; color: #999999; }
.widget, .widget * { min-width: 0; }
.widget ul li a { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ===== SINGLE POST ===== */
.single-post-content { background: #ffffff; border-radius: 6px; padding: 36px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); min-width: 0; max-width: 100%; overflow: hidden; }
.single-post-header { margin-bottom: 24px; min-width: 0; }
.single-post-header .post-category { display: inline-block; padding: 4px 14px; border-radius: 3px; font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; margin-bottom: 16px; }
.single-post-header h1 { font-size: 32px; line-height: 1.3; margin-bottom: 16px; overflow-wrap: anywhere; word-break: break-word; hyphens: auto; }
.single-post-header .post-meta { font-size: 14px; color: #999999; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid #eeeeee; }
.single-post-header .post-meta span::before { margin-right: 6px; }
.single-featured-image { margin-bottom: 24px; border-radius: 6px; overflow: hidden; }
.single-featured-image img { width: 100%; }

/* Post content typography */
.entry-content { font-size: 17px; line-height: 1.8; color: #333333; overflow-wrap: anywhere; word-break: break-word; }
.entry-content p { margin-bottom: 1.5em; }
.entry-content h2 { font-size: 26px; margin: 1.5em 0 0.8em; }
.entry-content h3 { font-size: 22px; margin: 1.3em 0 0.6em; }
.entry-content h4 { font-size: 18px; margin: 1.2em 0 0.5em; }
.entry-content blockquote { border-left: 4px solid #f2295b; padding: 16px 24px; margin: 1.5em 0; background: rgba(0,0,0,0.02); font-style: italic; font-size: 18px; }
.entry-content ul, .entry-content ol { margin: 1em 0; padding-left: 2em; }
.entry-content li { margin-bottom: 0.5em; }
.entry-content img { border-radius: 6px; margin: 1em 0; }
.entry-content a { color: #f2295b; text-decoration: underline; }
.entry-content pre { background: #212121; color: #ffffff; padding: 20px; border-radius: 6px; overflow-x: auto; font-size: 14px; margin: 1.5em 0; }
.entry-content code { background: rgba(0,0,0,0.06); padding: 2px 6px; border-radius: 3px; font-size: 14px; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
.entry-content th, .entry-content td { padding: 10px 14px; border: 1px solid #eeeeee; text-align: left; }
.entry-content th { background: #f5f5f5; font-weight: 700; }

/* ===== PAGINATION ===== */
.pagination { display: flex; gap: 6px; justify-content: center; margin: 40px 0; flex-wrap: wrap; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: 4px; font-size: 14px; font-weight: 500; background: #ffffff; color: #0a0a0a; border: 1px solid #eeeeee; transition: all 0.2s; }
.pagination a:hover { background: #f2295b; color: #fff; border-color: #f2295b; }
.pagination .current { background: #f2295b; color: #fff; border-color: #f2295b; }

/* ===== FOOTER ===== */
/* ===== HERO SECTION (full container) ===== */
.hero-section { padding-top: 20px; }

/* ===== SINGLE POST — BYLINE + SHARE ===== */
.post-meta-author { display: inline-flex; align-items: center; gap: 8px; }
.post-meta-author-photo { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid #f2295b; }
.post-meta-author strong { color: #0a0a0a; }

.share-buttons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 18px 0 20px; margin: 0 0 20px; border-bottom: 1px solid #eeeeee; }
.share-btn { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 18px; border-radius: 4px; font-size: 14px; font-weight: 600; color: #ffffff; border: none; cursor: pointer; transition: transform 0.15s, filter 0.15s, box-shadow 0.15s; text-decoration: none; font-family: inherit; width: 100%; min-height: 48px; }
.share-btn:hover { transform: translateY(-1px); filter: brightness(1.08); box-shadow: 0 3px 10px rgba(0,0,0,0.15); color: #ffffff; }
.share-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.share-fb  { background: #3b5998; }
.share-tw  { background: #0a0a0a; }
.share-pin { background: #e60023; }
.share-ig  { background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%); }
@media (max-width: 600px) { .share-buttons { grid-template-columns: 1fr; } }

/* ===== ABOUT OUR AUTHORS ===== */
.authors-section { padding: 40px 0; }
.authors-head { text-align: center; margin-bottom: 28px; }
.authors-title { display: inline-block; position: relative; font-size: 24px; font-weight: 700; color: #0a0a0a; text-transform: uppercase; letter-spacing: 0.8px; padding-bottom: 10px; margin: 0; }
.authors-title::after { content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 60px; height: 3px; background: #f2295b; }
.authors-grid { display: grid; gap: 24px; justify-content: center; }
.authors-grid-1 { grid-template-columns: minmax(280px, 420px); }
.authors-grid-2 { grid-template-columns: repeat(2, minmax(260px, 380px)); }
.authors-grid-3 { grid-template-columns: repeat(3, 1fr); }
.authors-grid-4 { grid-template-columns: repeat(4, 1fr); }
.author-card { position: relative; background: #ffffff; border-radius: 8px; padding: 28px 24px; text-align: center; box-shadow: 0 2px 14px rgba(0,0,0,0.06); border: 1px solid #eeeeee; display: flex; flex-direction: column; align-items: center; overflow: hidden; }
.author-card::before,
.author-card::after { content: ''; position: absolute; width: 36px; height: 36px; pointer-events: none; transition: width 0.25s ease, height 0.25s ease; }
.author-card::before { top: 0; left: 0; border-top: 3px solid #f2295b; border-left: 3px solid #f2295b; border-top-left-radius: 8px; }
.author-card::after { bottom: 0; right: 0; border-bottom: 3px solid #f2295b; border-right: 3px solid #f2295b; border-bottom-right-radius: 8px; }
.author-card:hover::before,
.author-card:hover::after { width: 52px; height: 52px; }
.author-photo-wrap { width: 120px; height: 120px; margin-bottom: 16px; padding: 5px; border-radius: 50%; border: 2px dashed #2b3a67; background: #ffffff; }
.author-photo { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.author-name { font-family: Georgia, 'Times New Roman', serif; font-size: 22px; font-weight: 700; color: #0a0a0a; margin: 0 0 10px; }
.author-tagline { font-size: 15px; font-weight: 700; color: #0a0a0a; margin: 0 0 12px; }
.author-bio { font-size: 14px; line-height: 1.7; color: #555555; margin-bottom: 16px; }
.author-bio p { margin: 0 0 8px; }
.author-bio p:last-child { margin-bottom: 0; }
@media (max-width: 1100px) { .authors-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .authors-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .authors-grid-2, .authors-grid-3, .authors-grid-4 { grid-template-columns: 1fr; } }

/* ===== AD BANNER ===== */
.ad-banner { padding: 20px 0; text-align: center; }
.ad-banner > .site-container { display: flex; justify-content: center; }
.ad-banner img { display: block; max-width: 100%; max-height: 240px; width: auto; height: auto; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); margin: 0 auto; }
.ad-banner .ad-banner-link { display: inline-block; transition: transform 0.15s ease, box-shadow 0.15s ease; border-radius: 8px; }
.ad-banner .ad-banner-link:hover { transform: translateY(-1px); }
.ad-banner .ad-banner-link:hover img { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }

/* ===== CATEGORY SECTION ===== */
.catsec { padding: 40px 0 16px; border-bottom: 1px solid #eeeeee; }
.catsec:last-of-type { border-bottom: none; }
.catsec-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.catsec-more { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #0a0a0a; padding: 6px 0; transition: color 0.2s, gap 0.2s; }
.catsec-more span { font-size: 18px; line-height: 1; transition: transform 0.2s; display: inline-block; }
.catsec-more:hover { color: #f2295b; gap: 8px; }
.catsec-more:hover span { transform: translateX(2px); }
.catsec-title { position: relative; display: inline-block; font-size: 22px; font-weight: 700; color: #0a0a0a; padding-bottom: 10px; margin: 0; letter-spacing: 0.2px; }
.catsec-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 60px; height: 3px; background: #f2295b; }
.catsec-title a { color: inherit; }
.catsec-title a:hover { color: #f2295b; }
/* "News" 2x2 layout — title + small thumb + excerpt + button */
.catsec-news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.catsec-news-card { padding: 22px 24px 22px 24px; border-top: 1px solid #eeeeee; border-right: 1px solid #eeeeee; }
.catsec-news-card:nth-child(2n) { border-right: none; }
.catsec-news-card:nth-child(-n+2) { border-top: none; }
.catsec-news-cat { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px; color: #f2295b; text-transform: uppercase; margin-bottom: 8px; }
.catsec-news-title { font-size: 18px; font-weight: 700; line-height: 1.3; margin: 0 0 14px; overflow-wrap: anywhere; word-break: break-word; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.catsec-news-title a { color: #0a0a0a; }
.catsec-news-title a:hover { color: #f2295b; }
.catsec-news-body { display: flex; gap: 14px; align-items: flex-start; }
.catsec-news-thumb { flex: 0 0 110px; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 3px; background: #f0f0f0; display: block; }
.catsec-news-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.catsec-news-thumb:hover img { transform: scale(1.05); }
.catsec-news-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 12px; }
.catsec-news-excerpt { font-size: 14px; line-height: 1.6; color: #555555; margin: 0; overflow-wrap: anywhere; word-break: break-word; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.catsec-news-text .catsec-rm-btn { align-self: flex-start; margin-top: 0; }
@media (max-width: 768px) { .catsec-news-grid { grid-template-columns: 1fr; } .catsec-news-card { border-right: none; border-top: 1px solid #eeeeee !important; } .catsec-news-card:first-child { border-top: none !important; } }

/* "Read More" 3-up cards layout */
.catsec-rm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.catsec-rm-card { display: flex; flex-direction: column; gap: 10px; }
.catsec-rm-cat { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: #f2295b; text-transform: uppercase; }
.catsec-rm-title { font-size: 18px; font-weight: 700; line-height: 1.4; margin: 0 0 6px; overflow-wrap: anywhere; word-break: break-word; }
.catsec-rm-title a { color: #0a0a0a; }
.catsec-rm-title a:hover { color: #f2295b; }
.catsec-rm-thumb { display: block; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 4px; background: #f0f0f0; }
.catsec-rm-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.catsec-rm-thumb:hover img { transform: scale(1.04); }
.catsec-rm-excerpt { font-size: 14px; line-height: 1.6; color: #555555; margin: 6px 0 4px; overflow-wrap: anywhere; word-break: break-word; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.catsec-rm-btn { align-self: flex-start; display: inline-block; padding: 10px 22px; background: #1a1a1a; color: #ffffff; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-radius: 3px; transition: background 0.2s; margin-top: auto; }
.catsec-rm-btn:hover { background: #f2295b; color: #ffffff; }
@media (max-width: 991px) { .catsec-rm-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .catsec-rm-grid { grid-template-columns: 1fr; } }

/* "Mixed" layout — 1 large + 4 small list */
.catsec-mixed-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: start; }
.catsec-mixed-feat .catsec-media { aspect-ratio: 4 / 3; min-height: 360px; }
.catsec-mixed-list { display: flex; flex-direction: column; gap: 16px; }
.catsec-mixed-item { display: flex; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid #eeeeee; }
.catsec-mixed-item:last-child { border-bottom: none; }
.catsec-mixed-thumb { flex: 0 0 100px; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 4px; background: #f0f0f0; }
.catsec-mixed-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.catsec-mixed-body { flex: 1; min-width: 0; }
.catsec-mixed-cat { font-size: 10px; font-weight: 700; letter-spacing: 1px; color: #f2295b; text-transform: uppercase; }
.catsec-mixed-title { font-size: 15px; font-weight: 700; line-height: 1.4; margin: 4px 0 0; overflow-wrap: anywhere; word-break: break-word; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.catsec-mixed-title a { color: #0a0a0a; }
.catsec-mixed-title a:hover { color: #f2295b; }
@media (max-width: 768px) { .catsec-mixed-grid { grid-template-columns: 1fr; } .catsec-mixed-feat .catsec-media { min-height: 280px; } }

.catsec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.catsec-card { min-width: 0; }
.catsec-media { position: relative; display: block; aspect-ratio: 5 / 4; overflow: hidden; border-radius: 6px; background: #1a1a1a; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.catsec-media .catsec-img, .catsec-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.catsec-media:hover img { transform: scale(1.05); }
.catsec-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 60px; font-weight: 700; color: #ffffff; background: linear-gradient(135deg, #f2295b, #6d28d9); }
.catsec-gradient { position: absolute; left: 0; right: 0; bottom: 0; height: 70%; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0) 100%); pointer-events: none; }
.catsec-card-cat { position: absolute; left: 16px; top: 16px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: #ffffff; }
.catsec-card-title { position: absolute; left: 18px; right: 18px; bottom: 18px; margin: 0; font-size: 17px; font-weight: 700; line-height: 1.3; color: #ffffff; overflow-wrap: anywhere; word-break: break-word; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
@media (max-width: 991px) { .catsec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .catsec-grid { grid-template-columns: 1fr; } }

/* ===== YOU MAY HAVE MISSED ===== */
.ymhm-section { padding: 32px 0 40px; }
.ymhm-card { background: transparent; border: none; padding: 0; box-shadow: none; }
.ymhm-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.ymhm-title { position: relative; font-size: 22px; font-weight: 700; color: #0a0a0a; letter-spacing: 0.2px; padding-bottom: 10px; margin: 0; }
.ymhm-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 60px; height: 3px; background: #f2295b; }
.ymhm-carousel { position: relative; }
.carousel-track-wrap { overflow: hidden; }
.carousel-track { display: flex; gap: 16px; transition: transform 0.45s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.ymhm-track .ymhm-item { flex: 0 0 calc((100% - 48px) / 4); min-width: 0; }
.ymhm-item { display: block; }
.ymhm-media { position: relative; display: block; aspect-ratio: 5 / 4; overflow: hidden; border-radius: 6px; background: #1a1a1a; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.ymhm-media .ymhm-img, .ymhm-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.ymhm-media:hover img { transform: scale(1.05); }
.ymhm-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 60px; font-weight: 700; color: #ffffff; background: linear-gradient(135deg, #f2295b, #6d28d9); }
.ymhm-gradient { position: absolute; left: 0; right: 0; bottom: 0; height: 70%; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0) 100%); pointer-events: none; }
.ymhm-cat { position: absolute; left: 16px; top: 16px; padding: 0; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: #ffffff; background: transparent; }
.ymhm-item-title { position: absolute; left: 18px; right: 18px; bottom: 18px; margin: 0; font-size: 17px; font-weight: 700; line-height: 1.3; color: #ffffff; overflow-wrap: anywhere; word-break: break-word; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.ymhm-media:hover .ymhm-item-title { color: #ffffff; }

.ymhm-dots { display: flex; gap: 8px; align-items: center; }
.ymhm-dots .carousel-dot, .ymhm-dots .ig-dot { width: 10px; height: 10px; border-radius: 50%; border: 1px solid #cbd5e1; background: #ffffff; padding: 0; cursor: pointer; transition: background 0.2s, border-color 0.2s, transform 0.2s; }
.ymhm-dots .carousel-dot:hover, .ymhm-dots .ig-dot:hover { border-color: #6d28d9; }
.ymhm-dots .carousel-dot.is-active, .ymhm-dots .ig-dot.is-active { background: #6d28d9; border-color: #6d28d9; }

@media (max-width: 991px) { .ymhm-track .ymhm-item { flex: 0 0 calc((100% - 24px) / 3); } }
@media (max-width: 768px) { .ymhm-track .ymhm-item { flex: 0 0 calc((100% - 12px) / 2); } .ymhm-item-title { font-size: 14px; } }
@media (max-width: 480px) { .ymhm-track .ymhm-item { flex: 0 0 100%; } }

/* ===== INSTAGRAM SECTION ===== */
.ig-section { position: relative; padding: 56px 0 32px; background: transparent; overflow: hidden; }
.ig-section.has-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--ig-bg);
    background-position: center left;
    background-size: cover;
    opacity: 0.09;
    mix-blend-mode: luminosity;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    pointer-events: none;
    z-index: 0;
}
.ig-section > .site-container { position: relative; z-index: 1; }
.ig-heading { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; color: #0a0a0a; font-family: 'Pacifico', 'Brush Script MT', cursive; font-size: 32px; font-weight: 400; letter-spacing: 0.3px; line-height: 1; text-decoration: none; transition: color 0.2s; }
.ig-heading:hover { color: #f2295b; }
.ig-heading .ig-heading-icon { width: 26px; height: 26px; color: #f2295b; flex-shrink: 0; }
.ig-heading span { line-height: 1; }

.ig-carousel { position: relative; }
.ig-track-wrap { overflow: hidden; }
.ig-track { display: flex; gap: 12px; transition: transform 0.45s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.ig-item { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 4px; background: #f0f0f0; flex: 0 0 calc((100% - 48px) / 5); max-width: 220px; }
@media (max-width: 1024px) { .ig-item { flex: 0 0 calc((100% - 36px) / 4); } }
@media (max-width: 768px)  { .ig-item { flex: 0 0 calc((100% - 24px) / 3); } }
@media (max-width: 480px)  { .ig-item { flex: 0 0 calc((100% - 12px) / 2); } }
.ig-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.ig-item:hover img { transform: scale(1.05); }
.ig-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(242,41,91,0); color: #ffffff; opacity: 0; transition: opacity 0.25s, background 0.25s; pointer-events: none; }
.ig-overlay svg { width: 28px; height: 28px; }
.ig-item:hover .ig-overlay { opacity: 1; background: rgba(242,41,91,0.7); }

.ig-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 44px; height: 44px; border-radius: 50%; border: none; background: #ffffff; color: #0a0a0a; font-size: 18px; cursor: pointer; box-shadow: 0 4px 14px rgba(0,0,0,0.12); transition: background 0.2s, color 0.2s, transform 0.15s; display: flex; align-items: center; justify-content: center; }
.ig-nav:hover:not(:disabled) { background: #f2295b; color: #ffffff; }
.ig-nav:active:not(:disabled) { transform: translateY(-50%) scale(0.94); }
.ig-nav:disabled { opacity: 0; pointer-events: none; }
.ig-prev { left: -8px; }
.ig-next { right: -8px; }

.ig-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.ig-dot { width: 7px; height: 7px; border-radius: 50%; border: none; background: #cccccc; padding: 0; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.ig-dot:hover { background: #999999; }
.ig-dot.is-active { background: #f2295b; transform: scale(1.3); }

@media (max-width: 768px) {
    .ig-heading { font-size: 34px; }
    .ig-heading .ig-heading-icon { width: 28px; height: 28px; }
    .ig-nav { width: 36px; height: 36px; }
    .ig-prev { left: 4px; }
    .ig-next { right: 4px; }
}

/* ===== NEWSLETTER BAND ===== */
.newsletter-band { background: linear-gradient(135deg, #f2295b 0%, #d91e4a 100%); padding: 48px 0; margin-top: 40px; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-text { flex: 1; min-width: 260px; }
.newsletter-title { font-size: 28px; font-weight: 700; color: #ffffff; margin-bottom: 6px; }
.newsletter-sub { color: rgba(255,255,255,0.9); font-size: 15px; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; flex: 1; min-width: 300px; justify-content: flex-end; }
.newsletter-form input[type="text"], .newsletter-form input[type="email"] { flex: 1; min-width: 160px; padding: 13px 16px; border: none; border-radius: 4px; font-size: 15px; font-family: inherit; background: #ffffff; color: #0a0a0a; outline: none; box-shadow: 0 2px 6px rgba(0,0,0,0.08); }
.newsletter-form input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.5); }
.newsletter-form .nl-submit { padding: 13px 28px; border: none; border-radius: 4px; background: #0a0a0a; color: #ffffff; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; cursor: pointer; transition: background 0.2s, transform 0.1s; }
.newsletter-form .nl-submit:hover:not(:disabled) { background: #333333; }
.newsletter-form .nl-submit:active:not(:disabled) { transform: translateY(1px); }
.newsletter-form .nl-submit:disabled { opacity: 0.7; cursor: wait; }
@media (max-width: 768px) {
    .newsletter-title { font-size: 22px; }
    .newsletter-form { justify-content: stretch; }
    .newsletter-form input, .newsletter-form .nl-submit { flex: 1 1 100%; }
}

/* ===== NEWSLETTER MODAL ===== */
.nl-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s; }
.nl-modal.is-open { opacity: 1; }
.nl-modal[hidden] { display: none; }
.nl-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(2px); cursor: pointer; }
.nl-modal-box { position: relative; background: #ffffff; border-radius: 10px; padding: 40px 32px 32px; max-width: 420px; width: calc(100% - 32px); text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.35); transform: scale(0.92); transition: transform 0.2s; }
.nl-modal.is-open .nl-modal-box { transform: scale(1); }
.nl-modal-close { position: absolute; top: 10px; right: 14px; background: none; border: none; font-size: 28px; line-height: 1; color: #999999; cursor: pointer; padding: 4px 8px; }
.nl-modal-close:hover { color: #0a0a0a; }
.nl-modal-icon { width: 64px; height: 64px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; background: #22c55e; color: #ffffff; border-radius: 50%; font-size: 32px; font-weight: 700; }
.nl-modal.nl-modal-error .nl-modal-icon { background: #ef4444; }
.nl-modal-title { font-size: 22px; font-weight: 700; color: #0a0a0a; margin-bottom: 10px; }
.nl-modal-body { font-size: 15px; color: #555555; line-height: 1.6; }

.site-footer { background: #1a1a1a; color: #999999; margin-top: 0; }
.footer-widgets { display: grid; grid-template-columns: 2fr 1fr 1.3fr 1.7fr; gap: 40px; padding: 50px 0 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-widget { min-width: 0; overflow-wrap: anywhere; word-break: break-word; }
.footer-heading { position: relative; font-size: 18px; font-weight: 700; color: #f2295b; text-transform: none; letter-spacing: 0.3px; margin-bottom: 20px; padding-bottom: 10px; }
.footer-heading::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: #f2295b; }
.footer-about .footer-heading { font-size: 28px; color: #ffffff; text-transform: uppercase; letter-spacing: 0.5px; padding-bottom: 14px; margin-bottom: 18px; }
.footer-about .footer-heading::after { width: 50px; height: 3px; }
.footer-about-text { color: #bbbbbb; font-size: 14px; line-height: 1.7; }
.footer-about-text p { margin-bottom: 8px; }
.footer-contact { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 10px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #cccccc; line-height: 1.5; }
.footer-contact a { color: #cccccc; transition: color 0.2s; }
.footer-contact a:hover { color: #f2295b; }
.footer-contact-icon { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; color: #f2295b; margin-top: 1px; }
.footer-contact-icon svg { width: 16px; height: 16px; }
.footer-social .social-icons { gap: 10px; flex-wrap: wrap; }
.footer-social .social-icons .social-icon { width: 38px; height: 38px; background: rgba(255,255,255,0.08); color: #ffffff; border-radius: 4px; }
.footer-social .social-icons .social-icon svg { width: 18px; height: 18px; }
.footer-social .social-icons .social-icon:hover { background: #f2295b; }
.footer-social-empty { font-size: 13px; color: #777777; }
.footer-cat-list { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 16px; }
.footer-cat-list li { break-inside: avoid; padding: 4px 0; }
.footer-cat-list li a { color: #cccccc; font-size: 14px; font-weight: 600; transition: color 0.2s; }
.footer-cat-list li a:hover { color: #f2295b; }
.footer-recent-item { display: flex; gap: 12px; margin-bottom: 16px; }
.footer-recent-item:last-child { margin-bottom: 0; }
.footer-recent-thumb { flex-shrink: 0; width: 80px; height: 70px; border-radius: 4px; overflow: hidden; background: #2a2a2a; }
.footer-recent-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.footer-recent-body { flex: 1; min-width: 0; }
.footer-recent-title { display: block; color: #eaeaea; font-size: 14px; font-weight: 700; line-height: 1.4; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.footer-recent-title:hover { color: #f2295b; }
.footer-recent-date { font-size: 12px; color: #888888; text-transform: uppercase; }
.footer-bottom-bar { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; gap: 20px; font-size: 13px; color: #888888; }
.footer-copyright a { color: #cccccc; }
.footer-copyright a:hover { color: #f2295b; }
.footer-menu { list-style: none; display: flex; flex-wrap: wrap; gap: 0; padding: 0; margin: 0; }
.footer-menu li { position: relative; padding: 0 14px; }
.footer-menu li::after { content: '/'; position: absolute; right: -2px; color: #555555; }
.footer-menu li:last-child { padding-right: 0; }
.footer-menu li:last-child::after { content: ''; }
.footer-menu li:first-child { padding-left: 0; }
.footer-menu a { color: #cccccc; font-weight: 500; transition: color 0.2s; }
.footer-menu a:hover { color: #f2295b; }
@media (max-width: 991px) {
    .footer-widgets { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
    .footer-widgets { grid-template-columns: 1fr; gap: 28px; padding: 36px 0 24px; }
    .footer-about .footer-heading { font-size: 22px; }
    .footer-bottom-bar { flex-direction: column; align-items: flex-start; }
}

/* ===== ARCHIVE / SEARCH HEADER ===== */
.archive-header { background: #ffffff; border-radius: 6px; padding: 24px 30px; margin-bottom: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.archive-header h1 { font-size: 24px; margin-bottom: 4px; }
.archive-header p { color: #999999; font-size: 14px; }

/* ===== 404 PAGE ===== */
.error-404 { text-align: center; padding: 80px 20px; background: #ffffff; border-radius: 6px; }
.error-404 h1 { font-size: 120px; color: #f2295b; line-height: 1; margin-bottom: 16px; }
.error-404 h2 { font-size: 28px; margin-bottom: 16px; }
.error-404 p { font-size: 16px; color: #999999; margin-bottom: 24px; }
.error-404 .btn { display: inline-block; padding: 12px 28px; background: #f2295b; color: #fff; border-radius: 4px; font-weight: 700; }
.error-404 .btn:hover { background: #d91e4a; color: #fff; }

/* ===== COMMENTS ===== */
.comments-area { background: #ffffff; border-radius: 6px; padding: 30px; margin-top: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.comments-area h2 { font-size: 22px; margin-bottom: 24px; }
.comment-list { list-style: none; }
.comment-body { padding: 16px 0; border-bottom: 1px solid #eeeeee; }
.comment-meta { font-size: 13px; color: #999999; margin-bottom: 8px; }
.comment-meta .fn { font-weight: 700; color: #0a0a0a; }
.comment-content p { font-size: 15px; margin-bottom: 8px; }
.comment-reply-link { font-size: 13px; color: #f2295b; font-weight: 700; }
.comment-respond { margin-top: 24px; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea {
    width: 100%; padding: 10px 14px; border: 1px solid #eeeeee; border-radius: 4px; font-size: 14px; margin-bottom: 12px; font-family: 'Roboto', sans-serif;
}
.comment-form textarea { min-height: 120px; resize: vertical; }
.comment-form .submit { background: #f2295b; color: #fff; border: none; padding: 12px 28px; border-radius: 4px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: 'Roboto', sans-serif; }
.comment-form .submit:hover { background: #d91e4a; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs { font-size: 13px; color: #999999; padding: 16px 0; }
.breadcrumbs a { color: #f2295b; }
.breadcrumbs .sep { margin: 0 8px; }

/* ===== NO RESULTS ===== */
.no-results { text-align: center; padding: 60px 20px; background: #ffffff; border-radius: 6px; }
.no-results h2 { margin-bottom: 12px; }
.no-results p { color: #999999; }

/* ===== SEARCH FORM ===== */
.search-form { display: flex; gap: 8px; }
.search-form .search-field { flex: 1; padding: 10px 14px; border: 1px solid #eeeeee; border-radius: 4px; font-size: 14px; }
.search-form .search-submit { background: #f2295b; color: #fff; border: none; padding: 10px 20px; border-radius: 4px; font-weight: 700; cursor: pointer; }

/* ===== SCREEN READER TEXT ===== */
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute; height: 1px; width: 1px; overflow: hidden; }

/* ===== ALIGNMENTS ===== */
.alignleft { float: left; margin: 0 1.5em 1.5em 0; }
.alignright { float: right; margin: 0 0 1.5em 1.5em; }
.aligncenter { display: block; margin: 1.5em auto; }
.wp-block-image { margin: 1.5em 0; }

/* ===== POST TAGS ===== */
.post-tags { margin-top: 24px; padding-top: 16px; border-top: 1px solid #eeeeee; }
.post-tags a { display: inline-block; background: #f5f5f5; color: #666666; padding: 4px 12px; border-radius: 3px; font-size: 12px; margin: 4px 4px 4px 0; transition: all 0.2s; }
.post-tags a:hover { background: #f2295b; color: #ffffff; }
