/*
Theme Name: Correo Cloud
Theme URI: https://correo-cloud.com
Description: Tema hijo de GeneratePress para el blog de Correo Cloud. Replica la identidad visual de la landing: paleta navy/cyan, fuentes Outfit + DM Sans, diseño limpio y moderno.
Author: Correo Cloud
Author URI: https://correo-cloud.com
Template: generatepress
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: correo-cloud
*/

/* ===== CSS Variables — Same tokens as the landing ===== */
:root {
    --cc-navy: #0a1628;
    --cc-navy-light: #111d35;
    --cc-navy-mid: #162544;
    --cc-blue-primary: #1a56db;
    --cc-blue-bright: #2563eb;
    --cc-cyan: #00b4d8;
    --cc-cyan-light: #48cae4;
    --cc-cyan-glow: rgba(0, 180, 216, 0.15);
    --cc-white: #ffffff;
    --cc-gray-50: #f8fafc;
    --cc-gray-100: #f1f5f9;
    --cc-gray-200: #e2e8f0;
    --cc-gray-300: #cbd5e1;
    --cc-gray-400: #94a3b8;
    --cc-gray-500: #64748b;
    --cc-gray-600: #475569;
    --cc-gray-700: #334155;
    --cc-gray-800: #1e293b;
    --cc-font-display: 'Outfit', sans-serif;
    --cc-font-body: 'DM Sans', sans-serif;
    --cc-shadow-card: 0 4px 24px rgba(0,0,0,0.08);
    --cc-shadow-card-hover: 0 12px 40px rgba(0,0,0,0.12);
    --cc-radius: 16px;
    --cc-radius-sm: 10px;
    --cc-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Base & Typography ===== */
body,
body.wp-singular,
body.wp-admin-bar {
    font-family: var(--cc-font-body);
    color: var(--cc-gray-700);
    background: var(--cc-white);
    -webkit-font-smoothing: antialiased;
    line-height: 1.7;
    font-size: 17px;
}

h1, h2, h3, h4, h5, h6,
.entry-title, .page-title {
    font-family: var(--cc-font-display);
    font-weight: 700;
    color: var(--cc-navy);
    line-height: 1.2;
}

a { color: var(--cc-blue-primary); transition: var(--cc-transition); }
a:hover { color: var(--cc-cyan); }

/* ===== Custom Header (overrides GeneratePress) ===== */
.cc-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--cc-transition);
}
.cc-header.scrolled {
    background: rgba(10, 22, 40, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.cc-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.cc-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.cc-logo svg { height: 38px; width: auto; }
.cc-logo-text {
    font-family: var(--cc-font-display);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--cc-white);
}
.cc-logo-text span { color: var(--cc-cyan); }

.cc-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.cc-nav a {
    font-family: var(--cc-font-display);
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.02em;
    position: relative;
    text-decoration: none;
}
.cc-nav a:hover { color: var(--cc-white); }
.cc-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--cc-cyan);
    transition: width 0.3s ease;
}
.cc-nav a:hover::after { width: 100%; }
.cc-nav a.current,
.cc-nav li.current-menu-item a { color: var(--cc-white); }
.cc-nav a.current::after,
.cc-nav li.current-menu-item a::after { width: 100%; }

.cc-nav-cta {
    background: linear-gradient(135deg, var(--cc-blue-primary), var(--cc-cyan)) !important;
    color: var(--cc-white) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
}
.cc-nav-cta::after { display: none !important; }
.cc-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0,180,216,0.3);
}

.cc-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px; height: 24px;
    position: relative;
    z-index: 1001;
}
.cc-mobile-toggle span {
    display: block;
    width: 100%; height: 2px;
    background: var(--cc-white);
    position: absolute;
    left: 0;
    transition: var(--cc-transition);
}
.cc-mobile-toggle span:nth-child(1) { top: 0; }
.cc-mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.cc-mobile-toggle span:nth-child(3) { bottom: 0; }
.cc-mobile-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.cc-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.cc-mobile-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Push content below fixed header */
.site-content,
.cc-page-hero { padding-top: 72px; }

/* ===== Page Hero (for blog pages) ===== */
.cc-page-hero {
    background: var(--cc-navy);
    color: var(--cc-white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}
.cc-page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(26,86,219,0.15), transparent),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0,180,216,0.1), transparent);
}
.cc-page-hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}
.cc-page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.cc-page-hero h1 {
    font-family: var(--cc-font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--cc-white);
    line-height: 1.15;
    margin-bottom: 16px;
}
.cc-page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}
.cc-page-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--cc-font-display);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cc-cyan);
    margin-bottom: 16px;
}
.cc-page-hero-label::before {
    content: '';
    width: 24px; height: 2px;
    background: linear-gradient(90deg, var(--cc-cyan), transparent);
}

/* ═══════════════════════════════════════════════════════════
   MAIN CONTAINER — FIX v1.0.1
   .site-main y .content-area ya NO están en la regla base de
   max-width:800px porque causaban conflicto con el layout de
   GeneratePress. Cada contexto (single / blog / archive) se
   maneja por separado más abajo.
   ═══════════════════════════════════════════════════════════ */
.site-content .inside-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

body:not(.single-post) .site-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

body.blog .site-content .content-area,
body.archive .site-content .content-area,
body.search .site-content .content-area {
    max-width: 1100px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 60px 24px 80px;
}

/* ===== Post/Article Cards (listing) ===== */
.cc-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 20px;
}
body.blog article,
body.archive article,
body.search article {
    background: var(--cc-white);
    border: 1px solid var(--cc-gray-200);
    border-radius: var(--cc-radius);
    padding: 0;
    margin-bottom: 0;
    overflow: hidden;
    transition: var(--cc-transition);
    display: flex;
    flex-direction: column;
}
body.blog article:hover,
body.archive article:hover,
body.search article:hover {
    transform: translateY(-4px);
    box-shadow: var(--cc-shadow-card-hover);
    border-color: rgba(0,180,216,0.3);
}
body.blog article .post-image,
body.archive article .post-image,
body.search article .post-image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--cc-navy), var(--cc-cyan));
    overflow: hidden;
}
body.blog article .post-image img,
body.archive article .post-image img,
body.search article .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
body.blog article .inside-article,
body.archive article .inside-article,
body.search article .inside-article {
    padding: 28px;
    margin: 0;
    max-width: none;
    flex: 1;
    display: flex;
    flex-direction: column;
}
body.blog article .entry-title,
body.archive article .entry-title,
body.search article .entry-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.3;
}
body.blog article .entry-title a,
body.archive article .entry-title a,
body.search article .entry-title a {
    color: var(--cc-navy);
    text-decoration: none;
}
body.blog article .entry-title a:hover,
body.archive article .entry-title a:hover,
body.search article .entry-title a:hover {
    color: var(--cc-blue-primary);
}
body.blog article .entry-meta,
body.archive article .entry-meta,
body.search article .entry-meta {
    font-size: 0.8rem;
    color: var(--cc-gray-400);
    margin-bottom: 12px;
}
body.blog article .entry-summary,
body.archive article .entry-summary,
body.search article .entry-summary {
    color: var(--cc-gray-600);
    font-size: 0.95rem;
    margin-bottom: 16px;
    flex: 1;
}
body.blog article .read-more,
body.archive article .read-more,
body.search article .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--cc-font-display);
    font-weight: 600;
    color: var(--cc-cyan);
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: auto;
}
body.blog article .read-more:hover,
body.archive article .read-more:hover,
body.search article .read-more:hover {
    gap: 10px;
    color: var(--cc-blue-primary);
}

/* ===== Single Post Styles ===== */
body.single-post .entry-header {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--cc-gray-200);
}
body.single-post .entry-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 20px;
    line-height: 1.2;
}
body.single-post .entry-meta {
    font-family: var(--cc-font-display);
    font-size: 0.85rem;
    color: var(--cc-gray-400);
    font-weight: 500;
}
body.single-post .entry-meta a { color: var(--cc-cyan); text-decoration: none; }
body.single-post .entry-meta a:hover { color: var(--cc-blue-primary); }

body.single-post .entry-content {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--cc-gray-700);
}
body.single-post .entry-content > * { margin-bottom: 24px; }
body.single-post .entry-content h2 {
    font-size: 1.8rem;
    margin-top: 48px;
    margin-bottom: 20px;
    padding-top: 8px;
}
body.single-post .entry-content h3 {
    font-size: 1.35rem;
    margin-top: 36px;
    margin-bottom: 16px;
}
body.single-post .entry-content h4 {
    font-size: 1.1rem;
    margin-top: 28px;
    margin-bottom: 12px;
}
body.single-post .entry-content p { margin-bottom: 20px; }
body.single-post .entry-content a {
    color: var(--cc-blue-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(26,86,219,0.3);
}
body.single-post .entry-content a:hover {
    color: var(--cc-cyan);
    text-decoration-color: var(--cc-cyan);
}
body.single-post .entry-content ul,
body.single-post .entry-content ol {
    margin-left: 20px;
    margin-bottom: 24px;
}
body.single-post .entry-content li { margin-bottom: 8px; }
body.single-post .entry-content blockquote {
    border-left: 4px solid var(--cc-cyan);
    background: var(--cc-gray-50);
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    margin: 32px 0;
    font-style: italic;
    color: var(--cc-gray-600);
}
body.single-post .entry-content code {
    background: var(--cc-gray-100);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--cc-blue-primary);
}
body.single-post .entry-content pre {
    background: var(--cc-navy);
    color: var(--cc-white);
    padding: 20px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 24px 0;
}
body.single-post .entry-content pre code {
    background: none;
    color: inherit;
    padding: 0;
}
body.single-post .entry-content img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 32px auto;
}
body.single-post .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--cc-gray-200);
}
body.single-post .entry-content th {
    background: var(--cc-gray-50);
    font-family: var(--cc-font-display);
    font-weight: 600;
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid var(--cc-gray-200);
    color: var(--cc-navy);
}
body.single-post .entry-content td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--cc-gray-200);
}
body.single-post .entry-content tr:last-child td { border-bottom: none; }

/* ===== Post Navigation ===== */
.post-navigation {
    margin-top: 60px;
    padding: 32px 0;
    border-top: 1px solid var(--cc-gray-200);
    border-bottom: 1px solid var(--cc-gray-200);
}
.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.nav-previous, .nav-next {
    padding: 20px;
    background: var(--cc-gray-50);
    border-radius: var(--cc-radius-sm);
    transition: var(--cc-transition);
}
.nav-previous:hover, .nav-next:hover {
    background: var(--cc-white);
    box-shadow: var(--cc-shadow-card);
    transform: translateY(-2px);
}
.nav-next { text-align: right; }
.nav-previous a, .nav-next a {
    text-decoration: none;
    color: var(--cc-navy);
    font-family: var(--cc-font-display);
    font-weight: 600;
}
.nav-previous a::before { content: '← '; color: var(--cc-cyan); }
.nav-next a::after { content: ' →'; color: var(--cc-cyan); }

/* ===== Featured CTA (end of post) ===== */
.cc-post-cta {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--cc-navy), var(--cc-navy-mid));
    border-radius: var(--cc-radius);
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cc-post-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 80% at 50% 120%, rgba(0,180,216,0.15), transparent);
}
.cc-post-cta-content { position: relative; z-index: 2; }
.cc-post-cta h3 {
    font-family: var(--cc-font-display);
    font-weight: 700;
    color: var(--cc-white);
    font-size: 1.6rem;
    margin-bottom: 12px;
    line-height: 1.2;
}
.cc-post-cta p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.cc-post-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.cc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--cc-font-display);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: var(--cc-transition);
    border: none;
    cursor: pointer;
}
.cc-btn-primary {
    background: linear-gradient(135deg, var(--cc-blue-primary), var(--cc-cyan));
    color: var(--cc-white);
    box-shadow: 0 4px 20px rgba(0,180,216,0.3);
}
.cc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,180,216,0.4);
    color: var(--cc-white);
}
.cc-btn-outline {
    background: transparent;
    color: var(--cc-white);
    border: 1.5px solid rgba(255,255,255,0.25);
}
.cc-btn-outline:hover {
    border-color: var(--cc-cyan);
    color: var(--cc-cyan);
    background: rgba(0,180,216,0.05);
}

/* ===== Pagination ===== */
.paging-navigation,
.nav-links,
.pagination {
    margin-top: 48px;
    text-align: center;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid var(--cc-gray-200);
    border-radius: 8px;
    font-family: var(--cc-font-display);
    font-weight: 600;
    color: var(--cc-gray-600);
    text-decoration: none;
    transition: var(--cc-transition);
}
.page-numbers:hover,
.page-numbers.current {
    background: linear-gradient(135deg, var(--cc-blue-primary), var(--cc-cyan));
    color: var(--cc-white);
    border-color: transparent;
}

/* ===== Footer ===== */
.cc-footer {
    background: var(--cc-navy);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 48px 0;
    margin-top: 80px;
}
.cc-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.cc-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cc-footer-brand svg { height: 30px; }
.cc-footer-brand-text {
    font-family: var(--cc-font-display);
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}
.cc-footer-center { text-align: center; }
.cc-footer-email a {
    color: var(--cc-cyan);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
}
.cc-footer-email a:hover { color: var(--cc-cyan-light); }
.cc-footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    margin-top: 8px;
}
.cc-footer-powered {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
}
.cc-footer-powered a {
    color: rgba(255,255,255,0.4);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cc-footer-powered a:hover { color: var(--cc-cyan); }

/* ═══════════════════════════════════════════════════════════
   HIDE GENERATEPRESS DEFAULT ELEMENTS + FIX LAYOUT v1.0.1
   — Oculta header/footer de GP porque el tema hijo provee los suyos
   — Oculta sidebar y variantes
   — Mata display:flex/grid del site-content (que hace que content-area
     quede a la izquierda)
   — Fuerza content-area a full width + centrado (sin floats)
   Los selectores con html body suben especificidad a 0,2,2 para
   ganarle al CSS de GeneratePress.
   ═══════════════════════════════════════════════════════════ */
.site-header,
.main-navigation,
.site-footer,
#masthead,
#colophon { display: none !important; }

html body .sidebar,
html body #secondary,
html body .widget-area,
html body #right-sidebar,
html body #left-sidebar { display: none !important; }

html body .site-content,
html body #content { display: block !important; }

html body .site-content .content-area,
html body #primary,
html body #primary.content-area,
html body.single-post .content-area,
html body.blog .content-area,
html body.archive .content-area,
html body.page .content-area {
    float: none !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .cc-nav { display: none; }
    .cc-nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--cc-navy);
        justify-content: center;
        align-items: center;
        gap: 28px;
        z-index: 999;
    }
    .cc-nav.open a {
        font-size: 1.2rem;
        color: var(--cc-white);
    }
    .cc-mobile-toggle { display: block; }

    .cc-page-hero { padding: 100px 0 60px; }
    .site-main,
    body.blog .site-content .content-area,
    body.archive .site-content .content-area { padding: 40px 20px 60px; }

    .nav-links { grid-template-columns: 1fr; }
    .nav-next { text-align: left; }

    .cc-footer-inner { flex-direction: column; text-align: center; }
    .cc-post-cta { padding: 36px 24px; }
    .cc-post-cta-buttons { flex-direction: column; }
    .cc-btn { width: 100%; justify-content: center; }

    .cc-posts-grid { grid-template-columns: 1fr; }
}

/* ===== WP-specific resets ===== */
.wp-block-image img { border-radius: 12px; }
.wp-block-button__link {
    background: linear-gradient(135deg, var(--cc-blue-primary), var(--cc-cyan)) !important;
    color: var(--cc-white) !important;
    border-radius: 50px !important;
    padding: 12px 28px !important;
    font-family: var(--cc-font-display) !important;
    font-weight: 600 !important;
}

/* ═══════════════════════════════════════════════════════════
   SINGLE POST REDESIGN (centered reading column)
   — .cc-single-main limita el ancho legible a 780px
   — Se centra respecto al viewport porque su padre .content-area
     está forzado a full width + margin auto arriba.
   ═══════════════════════════════════════════════════════════ */
html body.single-post .cc-single-main,
html body.single-post main.site-main.cc-single-main {
    max-width: 780px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    float: none !important;
    padding: 120px 24px 60px !important;
    box-sizing: border-box !important;
}

.cc-entry-header {
    margin-bottom: 40px;
    text-align: center;
}
.cc-entry-category {
    margin-bottom: 20px;
}
.cc-entry-category a {
    display: inline-block;
    font-family: var(--cc-font-display);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cc-cyan);
    text-decoration: none;
    padding: 6px 16px;
    background: rgba(0, 180, 216, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(0, 180, 216, 0.2);
    margin: 0 4px;
}
.cc-entry-title {
    font-family: var(--cc-font-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--cc-navy);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 24px 0;
}
.cc-entry-meta {
    font-family: var(--cc-font-display);
    font-size: 0.88rem;
    color: var(--cc-gray-500);
    font-weight: 500;
}
.cc-meta-sep {
    margin: 0 10px;
    color: var(--cc-gray-300);
}
.cc-featured-image {
    margin: 40px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.cc-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}
.cc-entry-footer {
    margin-top: 48px;
    padding: 24px 0;
    border-top: 1px solid var(--cc-gray-200);
    border-bottom: 1px solid var(--cc-gray-200);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.cc-tags-label {
    font-family: var(--cc-font-display);
    font-weight: 600;
    color: var(--cc-navy);
}
.cc-entry-footer a {
    display: inline-block;
    padding: 4px 12px;
    background: var(--cc-gray-100);
    border-radius: 50px;
    color: var(--cc-gray-600);
    text-decoration: none;
    font-size: 0.85rem;
}
.cc-entry-footer a:hover {
    background: var(--cc-cyan);
    color: var(--cc-white);
}
.cc-nav-label {
    display: block;
    font-family: var(--cc-font-display);
    font-size: 0.8rem;
    color: var(--cc-cyan);
    margin-bottom: 6px;
    text-transform: uppercase;
}
.cc-nav-title {
    display: block;
    font-family: var(--cc-font-display);
    font-weight: 600;
    color: var(--cc-navy);
}

/* Responsive single post */
@media (max-width: 768px) {
    html body.single-post .cc-single-main,
    html body.single-post main.site-main.cc-single-main {
        padding: 100px 20px 50px !important;
    }
}