/* ================================================
   CONSTRUCTION CHRONICLE — COMPLETE STYLESHEET
   Replace your ENTIRE assets/css/style.css with this
================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; scroll-behavior: smooth; }
body {
    font-family: 'Inter', Arial, sans-serif;
    background: #f5f5f5;
    color: #111;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── Global container ── */
.cch-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ════════════════════════════════
   HEADER
════════════════════════════════ */
.cch-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 #e5e5e5, 0 4px 20px rgba(0,0,0,.06);
}

/* Topbar */
.cch-topbar { background: #0a0a0a; }
.cch-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 34px;
    font-size: 11px;
}
.cch-topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
}
.cch-topbar-date { color: #aaa; font-weight: 500; }
.cch-topbar-sep  { color: #444; }
.cch-topbar-clock { color: #c69b2c; font-weight: 700; font-size: 11.5px; }
.cch-topbar-right { color: #555; font-weight: 500; font-size: 11px; }

/* Brand row */
.cch-brand { background: #fff; border-bottom: 1px solid #ebebeb; }
.cch-brand-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 80px;
}
.cch-logo img { height: 46px; width: auto; object-fit: contain; }
.cch-brand-center { flex: 1; }
.cch-tagline {
    font-size: 10px;
    color: #aaa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Search */
.cch-search { display: flex; gap: 0; width: 360px; flex-shrink: 0; }
.cch-search input {
    flex: 1;
    height: 40px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 3px 0 0 3px;
    padding: 0 14px;
    font-size: 12.5px;
    font-family: inherit;
    outline: none;
    background: #fafafa;
    color: #111;
    transition: border-color .2s, background .2s;
}
.cch-search input:focus { border-color: #111; background: #fff; }
.cch-search button {
    width: 46px;
    height: 40px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    flex-shrink: 0;
}
.cch-search button:hover { background: #333; }

/* Hamburger */
.cch-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}
.cch-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: .3s;
    transform-origin: center;
}
.cch-hamburger.cch-hamburger-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cch-hamburger.cch-hamburger-open span:nth-child(2) { opacity: 0; }
.cch-hamburger.cch-hamburger-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Breaking */
.cch-breaking { background: #111; }
.cch-breaking-inner {
    display: flex;
    align-items: center;
    height: 36px;
    gap: 0;
}
.cch-breaking-tag {
    flex-shrink: 0;
    background: #c69b2c;
    height: 36px;
    display: flex;
    align-items: center;
    padding: 0 14px;
}
.cch-breaking-tag span {
    font-size: 9.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #111;
    white-space: nowrap;
}
.cch-ticker { flex: 1; overflow: hidden; }
.cch-ticker marquee {
    font-size: 12.5px;
    font-weight: 500;
    color: #ccc;
    line-height: 36px;
}
.cch-ticker a { color: #ddd; transition: color .2s; }
.cch-ticker a:hover { color: #c69b2c; }
.cch-ticker-sep { color: #444; }

/* Nav */
.cch-nav { background: #fff; border-bottom: 2px solid #111; }
.cch-nav-list {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0;
    padding: 0;
    margin: 0;
}
.cch-nav-list::-webkit-scrollbar { display: none; }
.cch-nav-list li a {
    display: block;
    padding: 11px 13px;
    font-size: 11.5px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
    position: relative;
    transition: color .2s;
}
.cch-nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 13px;
    width: 0; height: 2px;
    background: #111;
    transition: width .25s;
}
.cch-nav-list li a:hover { color: #000; }
.cch-nav-list li a:hover::after { width: calc(100% - 26px); }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.cch-footer { background: #0d0d0d; color: #c0c0c0; margin-top: 50px; }
.cch-footer-main { padding: 52px 0 36px; }
.cch-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 44px;
}

/* Brand col */
.cch-footer-logo {
    height: 38px;
    width: auto;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
    opacity: .85;
}
.cch-footer-brand p {
    font-size: 12.5px;
    line-height: 1.78;
    color: #666;
    max-width: 290px;
}
.cch-footer-social {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}
.cch-footer-social a {
    width: 34px; height: 34px;
    background: #1a1a1a;
    color: #777;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 800;
    border-radius: 50%;
    border: 1px solid #2a2a2a;
    transition: background .2s, color .2s, border-color .2s;
}
.cch-footer-social a:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
}

/* Link cols */
.cch-footer-col h4 {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #222;
}
.cch-footer-col ul { padding: 0; margin: 0; }
.cch-footer-col li { margin-bottom: 10px; }
.cch-footer-col a {
    font-size: 12.5px;
    color: #666;
    transition: color .2s, padding-left .2s;
    display: inline-block;
}
.cch-footer-col a:hover { color: #fff; padding-left: 4px; }

/* Newsletter */
.cch-footer-nl p {
    font-size: 12.5px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 14px;
}
.cch-nl-form { display: flex; flex-direction: column; gap: 8px; }
.cch-nl-form input {
    height: 42px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 2px;
    color: #fff;
    padding: 0 14px;
    font-size: 12.5px;
    font-family: inherit;
    outline: none;
    transition: border-color .2s;
}
.cch-nl-form input:focus { border-color: #555; }
.cch-nl-form button {
    height: 42px;
    background: #fff;
    color: #111;
    border: none;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s, color .2s;
}
.cch-nl-form button:hover { background: #e0e0e0; }
.cch-nl-note { font-size: 10.5px !important; color: #3a3a3a !important; margin-top: 8px !important; margin-bottom: 0 !important; }

/* Bottom bar */
.cch-footer-bottom { border-top: 1px solid #1a1a1a; background: #070707; }
.cch-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 52px;
}
.cch-footer-bottom p { font-size: 11.5px; color: #3a3a3a; }

/* ════════════════════════════════
   HOMEPAGE — ccx- classes
════════════════════════════════ */
.ccx-home {
    background: #f5f5f5;
    font-family: 'Inter', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
.ccx-wrap {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Ad */
.ccx-adbar {
    padding: 12px 0 5px;
}

.ccx-adbar-mid {
    padding: 16px 0 6px;
}

.ccx-adbox {
    width: 100%;
    max-width: 970px;
    height: 90px;
    margin: 0 auto;
    overflow: hidden;
    background: transparent;
    border: none;
}

.ccx-adbox img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ccx-adbox-dk {
    background: #0a0a0a;
}
/* Date */
.ccx-dt {
    display: block;
    font-size: 10px;
    color: #aaa;
    margin-top: 4px;
    letter-spacing: .2px;
}

/* Section head */
.ccx-blk { padding: 18px 0 6px; }
.ccx-blk-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.ccx-blk-left {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}
.ccx-blk-lbl {
    background: #111;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 7px 14px;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: 'Inter', Arial, sans-serif;
}
.ccx-blk-line { flex: 1; height: 2px; background: #111; min-width: 10px; }
.ccx-blk-more {
    font-size: 9.5px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: .6px;
    white-space: nowrap;
    border-bottom: 1px solid #bbb;
    padding-bottom: 2px;
    flex-shrink: 0;
    transition: color .2s;
}
.ccx-blk-more:hover { color: #111; }

/* ── HERO ── */
.ccx-hero {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 1px;
    background: #ccc;
    margin: 10px 0 0;
    overflow: hidden;
}

/* Hero main */
.ccx-hero-main { background: #111; overflow: hidden; }
.ccx-hero-main > a { display: block; }
.ccx-hm-fig {
    position: relative;
    overflow: hidden;
    line-height: 0;
}
.ccx-hm-fig img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(.88);
    transition: transform .6s ease;
}
.ccx-hero-main:hover .ccx-hm-fig img { transform: scale(1.04); }
.ccx-hm-fig::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 40%, rgba(0,0,0,.5) 100%);
    pointer-events: none;
}
.ccx-hm-fig .ccx-ctag {
    position: absolute;
    top: 0; left: 0;
    z-index: 3;
    padding: 5px 12px;
    font-size: 8.5px;
}
.ccx-hm-cap {
    background: #fff;
    padding: 15px 17px 17px;
    border-left: 4px solid #111;
}
.ccx-hm-h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.38;
    color: #111;
    margin: 0 0 7px;
}
.ccx-hm-p {
    font-size: 11.5px;
    color: #555;
    line-height: 1.65;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Rail 2x2 */
.ccx-hero-rail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1px;
    background: #ccc;
}
.ccx-rc { background: #fff; overflow: hidden; display: flex; flex-direction: column; }
.ccx-rc > a { display: flex; flex-direction: column; height: 100%; }
.ccx-rc-fig { position: relative; overflow: hidden; line-height: 0; flex-shrink: 0; }
.ccx-rc-fig img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(.9);
    transition: transform .4s;
}
.ccx-rc:hover .ccx-rc-fig img { transform: scale(1.06); }
.ccx-rc-fig::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.38) 0%, transparent 55%);
    pointer-events: none;
}
.ccx-rc-fig .ccx-ctag { position: absolute; bottom: 0; left: 0; z-index: 3; }
.ccx-rc-body { padding: 9px 11px 11px; flex: 1; border-top: 1px solid #ebebeb; }
.ccx-rc-h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.42;
    color: #111;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Latest 4-col ── */
.ccx-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #ccc;
}
.ccx-nc { background: #fff; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.ccx-nc:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.09); }
.ccx-nc > a { display: block; }
.ccx-nc-fig { position: relative; overflow: hidden; line-height: 0; }
.ccx-nc-fig img {
    width: 100%;
    height: 155px;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(.92);
    transition: transform .4s;
}
.ccx-nc:hover .ccx-nc-fig img { transform: scale(1.05); }
.ccx-nc-fig .ccx-ctag { position: absolute; bottom: 0; left: 0; z-index: 2; }
.ccx-nc-body { padding: 12px 13px 14px; border-top: 2px solid #111; }
.ccx-nc-h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.42;
    color: #111;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ccx-nc-p {
    font-size: 11px;
    color: #666;
    line-height: 1.55;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Category sections ── */
.ccx-cat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #ccc;
}

/* Lead */
.ccx-lead { background: #fff; overflow: hidden; transition: box-shadow .25s; }
.ccx-lead:hover { box-shadow: 0 4px 18px rgba(0,0,0,.09); }
.ccx-lead > a { display: block; }
.ccx-la-fig { position: relative; overflow: hidden; line-height: 0; }
.ccx-la-fig img {
    width: 100%;
    height: 222px;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(.9);
    transition: transform .45s;
}
.ccx-lead:hover .ccx-la-fig img { transform: scale(1.04); }
.ccx-la-fig::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.46) 0%, transparent 55%);
    pointer-events: none;
}
.ccx-la-fig .ccx-ctag { position: absolute; bottom: 0; left: 0; z-index: 3; padding: 5px 10px; }
.ccx-la-body { padding: 13px 14px 15px; border-top: 3px solid #111; }
.ccx-la-h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.38;
    color: #111;
    margin: 0 0 7px;
}
.ccx-la-p {
    font-size: 11.5px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 7px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* List col */
.ccx-list-col { background: #fff; display: flex; flex-direction: column; }
.ccx-li-row { border-bottom: 1px solid #ebebeb; transition: background .15s; }
.ccx-li-row:last-child { border-bottom: none; }
.ccx-li-row:hover { background: #f9f9f9; }
.ccx-li-row > a {
    display: grid;
    grid-template-columns: 95px 1fr;
    min-height: 84px;
    color: inherit;
}
.ccx-li-fig { overflow: hidden; line-height: 0; flex-shrink: 0; }
.ccx-li-fig img {
    width: 95px;
    height: 84px;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(.92);
    transition: transform .4s;
}
.ccx-li-row:hover .ccx-li-fig img { transform: scale(1.08); }
.ccx-li-body {
    padding: 9px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    border-left: 1px solid #ebebeb;
}
.ccx-li-h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.42;
    color: #111;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ccx-li-p {
    font-size: 10.5px;
    color: #777;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */

/* Tablet landscape */
@media (max-width: 1100px) {
    .ccx-hero         { grid-template-columns: 1fr; }
    .ccx-hm-fig img   { height: 380px; }
    .ccx-hero-rail    { grid-template-columns: repeat(4, 1fr); grid-template-rows: auto; }
    .ccx-rc-fig img   { height: 125px; }
    .ccx-four         { grid-template-columns: repeat(2, 1fr); }
    .ccx-cat-grid     { grid-template-columns: 1fr; }
    .cch-footer-grid  { grid-template-columns: 1fr 1fr; gap: 32px; }
    .cch-search       { width: 300px; }
}

/* Tablet portrait */
@media (max-width: 768px) {
    .ccx-wrap          { padding: 0 12px; }
    .cch-container     { padding: 0 14px; }
    .cch-topbar-right  { display: none; }
    .cch-brand-inner   { flex-wrap: wrap; min-height: auto; padding: 12px 0; gap: 12px; }
    .cch-brand-center  { display: none; }
    .cch-logo img      { height: 40px; }
    .cch-search        { order: 3; width: 100%; flex-basis: 100%; }
    .cch-hamburger     { display: flex; }
    .cch-nav           { display: none; }
    .cch-nav.cch-nav-open { display: block; background: #0d0d0d; }
    .cch-nav-list      { flex-direction: column; align-items: flex-start; padding: 6px 0; }
    .cch-nav-list li   { width: 100%; border-bottom: 1px solid #1e1e1e; }
    .cch-nav-list li a { color: #ccc; padding: 13px 20px; font-size: 12px; }
    .cch-nav-list li a::after { display: none; }
    .cch-nav-list li a:hover { color: #fff; }
    .ccx-hm-fig img    { height: 280px; }
    .ccx-hm-h1         { font-size: 16px; }
    .ccx-hm-p          { display: none; }
    .ccx-hero-rail     { grid-template-columns: repeat(2, 1fr); }
    .ccx-rc-fig img    { height: 125px; }
    .ccx-four          { grid-template-columns: repeat(2, 1fr); }
    .ccx-nc-fig img    { height: 138px; }
    .ccx-la-fig img    { height: 188px; }
    .ccx-la-h3         { font-size: 14px; }
    .cch-footer-grid   { grid-template-columns: 1fr 1fr; gap: 28px; }
    .cch-footer-brand  { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 540px) {
    .ccx-wrap          { padding: 0 10px; }
    .ccx-hm-fig img    { height: 230px; }
    .ccx-hm-h1         { font-size: 14.5px; }
    .ccx-hero-rail     { grid-template-columns: 1fr 1fr; }
    .ccx-rc-fig img    { height: 108px; }
    .ccx-rc-h3         { font-size: 10.5px; }
    .ccx-four          { grid-template-columns: 1fr; }
    .ccx-nc-fig img    { height: 190px; }
    .ccx-la-fig img    { height: 185px; }
    .ccx-la-h3         { font-size: 13.5px; }
    .ccx-li-row > a    { grid-template-columns: 82px 1fr; }
    .ccx-li-fig img    { width: 82px; height: 72px; }
    .ccx-li-p          { display: none; }
    .ccx-adbox         { height: 52px; font-size: 9px; }
    .ccx-blk           { padding: 14px 0 4px; }
    .cch-footer-grid   { grid-template-columns: 1fr; gap: 28px; }
    .cch-footer-bottom-inner { flex-direction: column; height: auto; padding: 16px 0; text-align: center; gap: 6px; }
    .cch-footer-main   { padding: 36px 0 28px; }
}

/* Small mobile */
@media (max-width: 380px) {
    .ccx-hero-rail  { grid-template-columns: 1fr; }
    .ccx-rc-fig img { height: 160px; }
    .ccx-hm-fig img { height: 200px; }
}


/* ================================================
   CONSTRUCTION CHRONICLE — ALL PAGES CSS (FIXED)
   Action: REPLACE your entire style.css with this
   OR paste at very bottom after existing CSS
================================================ */

/* ── Shared page base ── */
.cnp-page, .srp-page, .atp-page {
    background: #f5f5f5;
    font-family: 'Inter', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 50px;
    min-height: 60vh;
}
.cnp-wrap, .srp-wrap, .atp-wrap {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ── Breadcrumb ── */
.cnp-bc {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 0 0;
    font-size: 11px;
    color: #bbb;
    flex-wrap: wrap;
}
.cnp-bc a { color: #777; transition: color .2s; }
.cnp-bc a:hover { color: #111; }
.cnp-bc span { color: #ccc; }
.cnp-bc-cur { color: #111; font-weight: 600; }

/* ── Ad bar ── */
.cnp-adbar { padding: 12px 0 6px; }
.cnp-adbox {
    width: 100%;
    height: 72px;
    background: #fff;
    border: 1px dashed #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #ccc;
    letter-spacing: .8px;
    text-transform: uppercase;
    box-sizing: border-box;
}

/* ── Shared atoms ── */
.cnp-tag {
    display: inline-block;
    background: #111;
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 3px 9px;
    line-height: 1.4;
    white-space: nowrap;
}
.cnp-tag-sm {
    font-size: 7.5px;
    padding: 2px 7px;
    background: rgba(0,0,0,.65);
}
.cnp-dt { display: block; font-size: 10px; color: #aaa; margin-top: 4px; }

/* ── Section head ── */
.cnp-blk-hd { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.cnp-blk-left { display: flex; align-items: center; flex: 1; min-width: 0; }
.cnp-blk-lbl { background: #111; color: #fff; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; padding: 7px 14px; white-space: nowrap; flex-shrink: 0; font-family: 'Inter', Arial, sans-serif; }
.cnp-blk-line { flex: 1; height: 2px; background: #111; min-width: 10px; }
.cnp-blk-more { font-size: 9.5px; font-weight: 700; color: #555; text-transform: uppercase; letter-spacing: .6px; white-space: nowrap; border-bottom: 1px solid #bbb; padding-bottom: 2px; flex-shrink: 0; transition: color .2s; }
.cnp-blk-more:hover { color: #111; }

/* ════════════════════
   CATEGORY PAGE
════════════════════ */

.cnp-pg-hd { padding: 14px 0 10px; border-bottom: 2px solid #111; }
.cnp-pg-title { font-family: 'Playfair Display', Georgia, serif; font-size: 26px; font-weight: 700; color: #111; margin: 0 0 4px; line-height: 1.2; }
.cnp-pg-meta  { font-size: 11px; color: #999; font-weight: 500; }

/* Pills */
.cnp-pills { display: flex; flex-wrap: wrap; gap: 6px; padding: 12px 0 4px; }
.cnp-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    color: #555;
    background: #fff;
    border: 1px solid #ddd;
    text-transform: uppercase;
    letter-spacing: .4px;
    transition: background .2s, color .2s, border-color .2s;
    white-space: nowrap;
    cursor: pointer;
}
.cnp-pill em { font-style: normal; font-size: 9px; color: #bbb; }
.cnp-pill:hover { background: #111; color: #fff; border-color: #111; }
.cnp-pill-on  { background: #111 !important; color: #fff !important; border-color: #111 !important; }
.cnp-pill-on em { color: #666; }

/* Layout: main + sidebar */
.cnp-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 22px;
    margin-top: 16px;
    align-items: start;
}

/* ── LEAD ARTICLE (fixed layout) ── */
.cnp-lead { background: #fff; overflow: hidden; margin-bottom: 1px; }
.cnp-lead > a {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 280px;
}
.cnp-lead-fig {
    position: relative;
    overflow: hidden;
    line-height: 0;
    background: #e0e0e0;
}
.cnp-lead-fig img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .5s;
}
.cnp-lead:hover .cnp-lead-fig img { transform: scale(1.03); }
.cnp-lead-fig .cnp-tag {
    position: absolute;
    top: 0; left: 0;
    z-index: 3;
    padding: 5px 12px;
    font-size: 8.5px;
}
.cnp-lead-body {
    padding: 24px 22px;
    border-top: 3px solid #111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}
.cnp-lead-h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.38;
    color: #111;
    margin: 0 0 12px;
}
.cnp-lead-p {
    font-size: 12.5px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── ARTICLE GRID ── */
.cnp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #ddd;
    margin-top: 1px;
}
.cnp-card { background: #fff; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.cnp-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.09); position: relative; z-index: 1; }
.cnp-card > a { display: block; }
.cnp-card-fig {
    position: relative;
    overflow: hidden;
    line-height: 0;
    background: #e0e0e0;
}
.cnp-card-fig img {
    width: 100%;
    height: 172px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .4s;
}
.cnp-card:hover .cnp-card-fig img { transform: scale(1.05); }
.cnp-card-fig .cnp-tag { position: absolute; bottom: 0; left: 0; z-index: 2; }
.cnp-card-body { padding: 12px 13px 14px; border-top: 2px solid #111; }
.cnp-card-h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.42;
    color: #111;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cnp-card-p {
    font-size: 11px;
    color: #666;
    line-height: 1.55;
    margin: 0 0 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── PAGINATION ── */
.cnp-pager { display: flex; align-items: center; justify-content: center; gap: 4px; padding: 28px 0 10px; flex-wrap: wrap; }
.cnp-pg-btn { height: 36px; padding: 0 16px; background: #111; color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; transition: background .2s; }
.cnp-pg-btn:hover { background: #333; }
.cnp-pg-n { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: #555; background: #fff; border: 1px solid #ddd; transition: background .2s, color .2s; }
.cnp-pg-n:hover, .cnp-pg-on { background: #111 !important; color: #fff !important; border-color: #111 !important; }
.cnp-pg-dot { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: #bbb; }

/* ── EMPTY STATE ── */
.cnp-empty { background: #fff; padding: 50px 30px; text-align: center; border-top: 3px solid #111; }
.cnp-empty h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: #111; }
.cnp-empty p  { font-size: 13px; color: #777; margin-bottom: 20px; }
.cnp-empty a  { font-size: 12px; font-weight: 700; color: #111; border-bottom: 1px solid #111; padding-bottom: 2px; }

/* ════════════════════
   SIDEBAR (shared)
════════════════════ */
.cnp-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 18px; }
.cnp-sb-box  { background: #fff; overflow: hidden; }
.cnp-sb-hd   { display: flex; align-items: center; }
.cnp-sb-lbl  { background: #111; color: #fff; font-size: 8.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.3px; padding: 7px 13px; white-space: nowrap; flex-shrink: 0; }
.cnp-sb-ln   { flex: 1; height: 2px; background: #111; }

.cnp-sb-row  {
    display: grid;
    grid-template-columns: 80px 1fr;
    border-bottom: 1px solid #ebebeb;
    transition: background .15s;
    text-decoration: none;
    color: inherit;
}
.cnp-sb-row:last-child { border-bottom: none; }
.cnp-sb-row:hover { background: #f9f9f9; }
.cnp-sb-imgw { overflow: hidden; line-height: 0; background: #e0e0e0; }
.cnp-sb-imgw img {
    width: 80px;
    height: 68px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .35s;
}
.cnp-sb-row:hover .cnp-sb-imgw img { transform: scale(1.08); }
.cnp-sb-txt  { padding: 9px 11px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid #ebebeb; }
.cnp-sb-txt h4 { font-family: 'Playfair Display', Georgia, serif; font-size: 11px; font-weight: 700; line-height: 1.42; color: #111; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.cnp-sb-ad { height: 250px; background: #fff; border: 1px dashed #d0d0d0; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: #ccc; text-align: center; letter-spacing: .6px; text-transform: uppercase; line-height: 1.6; }

.cnp-sb-cat { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-bottom: 1px solid #ebebeb; font-size: 11.5px; font-weight: 600; color: #333; transition: background .15s; text-decoration: none; }
.cnp-sb-cat:last-child { border-bottom: none; }
.cnp-sb-cat:hover { background: #f5f5f5; color: #111; }
.cnp-sb-cat-on { background: #111 !important; color: #fff !important; }
.cnp-sb-cat em { font-style: normal; font-size: 10px; color: #bbb; background: #f0f0f0; padding: 2px 7px; border-radius: 20px; }
.cnp-sb-cat-on em { background: #222; color: #666; }

/* ════════════════════
   SEARCH PAGE
════════════════════ */
.srp-layout { display: grid; grid-template-columns: 1fr 300px; gap: 22px; margin-top: 16px; align-items: start; }
.srp-box { background: #fff; border-top: 3px solid #111; padding: 22px 24px; margin: 14px 0 0; }
.srp-title { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 700; color: #111; margin: 0 0 14px; }
.srp-form { display: flex; max-width: 600px; }
.srp-form input { flex: 1; height: 44px; border: 1px solid #ddd; border-right: none; padding: 0 16px; font-size: 13px; font-family: inherit; outline: none; background: #fafafa; }
.srp-form input:focus { border-color: #111; background: #fff; }
.srp-form button { height: 44px; padding: 0 22px; background: #111; color: #fff; border: none; font-size: 12px; font-weight: 700; cursor: pointer; font-family: inherit; transition: background .2s; }
.srp-form button:hover { background: #333; }
.srp-count { font-size: 12px; color: #666; margin-top: 12px; }
.srp-hint  { background: #fff; padding: 40px; text-align: center; font-size: 13px; color: #999; border-top: 2px solid #111; }

.srp-card { background: #fff; border-bottom: 1px solid #ebebeb; transition: background .15s; }
.srp-card:last-child { border-bottom: none; }
.srp-card:hover { background: #fafafa; }
.srp-card > a { display: grid; grid-template-columns: 160px 1fr; min-height: 120px; text-decoration: none; color: inherit; }
.srp-card-fig { overflow: hidden; line-height: 0; background: #e0e0e0; position: relative; flex-shrink: 0; }
.srp-card-fig img { width: 160px; height: 120px; object-fit: cover; object-position: center top; display: block; transition: transform .4s; }
.srp-card:hover .srp-card-fig img { transform: scale(1.05); }
.srp-card-fig .cnp-tag { position: absolute; bottom: 0; left: 0; z-index: 2; }
.srp-card-body { padding: 16px 18px; display: flex; flex-direction: column; justify-content: center; border-left: 2px solid #111; }
.srp-card-h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 15px; font-weight: 700; line-height: 1.4; color: #111; margin: 0 0 8px; }
.srp-card-p  { font-size: 12px; color: #666; line-height: 1.6; margin: 0 0 8px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.srp-hl { background: #fef3cd; color: #111; font-style: normal; padding: 0 2px; }

/* ════════════════════
   ARTICLE PAGE
════════════════════ */
.atp-layout { display: grid; grid-template-columns: 1fr 300px; gap: 22px; margin-top: 14px; align-items: start; }
.atp-main { background: #fff; border-top: 3px solid #111; padding: 28px 32px 32px; }
.atp-meta-top { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.atp-cat-tag { background: #111; color: #fff; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; }
.atp-read { font-size: 10.5px; color: #bbb; }
.atp-h1 { font-family: 'Playfair Display', Georgia, serif; font-size: 28px; font-weight: 700; line-height: 1.32; color: #111; margin: 0 0 16px; letter-spacing: -.2px; }
.atp-summary { font-size: 14.5px; line-height: 1.75; color: #444; margin: 0 0 18px; border-left: 3px solid #111; padding-left: 16px; font-weight: 500; }
.atp-share { display: flex; align-items: center; gap: 8px; padding: 12px 0; border-top: 1px solid #ebebeb; border-bottom: 1px solid #ebebeb; margin-bottom: 22px; flex-wrap: wrap; }
.atp-share span { font-size: 10.5px; font-weight: 700; color: #555; text-transform: uppercase; letter-spacing: .5px; }
.atp-share-btn { font-size: 10.5px; font-weight: 700; padding: 5px 12px; color: #fff; transition: opacity .2s; }
.atp-share-btn:hover { opacity: .85; }
.atp-share-fb { background: #1877f2; }
.atp-share-tw { background: #1da1f2; }
.atp-share-li { background: #0a66c2; }
.atp-share-wa { background: #25d366; }
.atp-feat-img { margin-bottom: 24px; }
.atp-feat-img img { width: 100%; max-height: 520px; object-fit: cover; object-position: center top; display: block; }
.atp-content { font-size: 15.5px; line-height: 1.88; color: #222; }
.atp-content p { margin: 0 0 20px; }
.atp-content h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 700; color: #111; margin: 30px 0 14px; border-left: 3px solid #111; padding-left: 12px; }
.atp-content h3 { font-size: 18px; font-weight: 700; color: #111; margin: 24px 0 12px; }
.atp-content img { max-width: 100%; height: auto; margin: 16px 0; }
.atp-content a { color: #111; font-weight: 600; border-bottom: 1px solid #ccc; }
.atp-content blockquote { border-left: 3px solid #111; padding: 12px 16px; margin: 20px 0; background: #f9f9f9; font-style: italic; color: #444; }
.atp-content ul, .atp-content ol { padding-left: 22px; margin-bottom: 18px; }
.atp-content li { margin-bottom: 6px; }
.atp-tags { padding: 18px 0 0; border-top: 1px solid #ebebeb; margin-top: 24px; display: flex; gap: 8px; flex-wrap: wrap; }
.atp-tag-pill { font-size: 10px; font-weight: 700; padding: 4px 12px; background: #f0f0f0; color: #555; text-transform: uppercase; letter-spacing: .5px; transition: background .2s, color .2s; }
.atp-tag-pill:hover { background: #111; color: #fff; }
.atp-prevnext { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #ddd; margin-top: 24px; }
.atp-prev, .atp-next { background: #fff; padding: 16px; display: flex; flex-direction: column; gap: 5px; transition: background .2s; text-decoration: none; color: inherit; }
.atp-prev:hover, .atp-next:hover { background: #f5f5f5; }
.atp-next { text-align: right; }
.atp-prev span, .atp-next span { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: #bbb; }
.atp-prev strong, .atp-next strong { font-family: 'Playfair Display', Georgia, serif; font-size: 13px; font-weight: 700; color: #111; line-height: 1.4; }
.atp-related { padding: 24px 0 10px; }
.atp-rel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #ddd; }

/* ════════════════════
   RESPONSIVE
════════════════════ */
@media (max-width: 1100px) {
    .cnp-layout, .srp-layout, .atp-layout { grid-template-columns: 1fr 260px; }
    .cnp-grid { grid-template-columns: repeat(2, 1fr); }
    .atp-rel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .cnp-layout, .srp-layout, .atp-layout { grid-template-columns: 1fr; }
    .cnp-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .cnp-lead > a { grid-template-columns: 1fr; }
    .cnp-lead-fig img { height: 230px; }
    .atp-main { padding: 22px; }
    .atp-h1 { font-size: 22px; }
}
@media (max-width: 640px) {
    .cnp-wrap, .srp-wrap, .atp-wrap { padding: 0 12px; }
    .cnp-grid { grid-template-columns: repeat(2, 1fr); }
    .cnp-sidebar { grid-template-columns: 1fr; }
    .cnp-pg-title { font-size: 20px; }
    .srp-card > a { grid-template-columns: 1fr; }
    .srp-card-fig img { width: 100%; height: 180px; }
    .srp-card-body { border-left: none; border-top: 2px solid #111; }
    .atp-main { padding: 16px; }
    .atp-h1 { font-size: 19px; }
    .atp-content { font-size: 14.5px; }
    .atp-prevnext { grid-template-columns: 1fr; }
    .atp-rel-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
    .cnp-grid { grid-template-columns: 1fr; }
    .cnp-card-fig img { height: 190px; }
    .atp-h1 { font-size: 17px; }
    .atp-rel-grid { grid-template-columns: 1fr; }
}
/* ================================================
   CONSTRUCTION CHRONICLE — STATIC PAGES CSS
   FILE: assets/css/style.css
   ACTION: Paste at the VERY BOTTOM
   Covers: about.php / advertise.php / contact.php /
   privacy-policy.php / terms-conditions.php / sitemap.php
================================================ */

/* ── Shared static page shell ── */
.stp-page {
    background: #f5f5f5;
    font-family: 'Inter', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 50px;
}
.stp-wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ── Hero ── */
.stp-hero {
    padding: 26px 0 28px;
    border-bottom: 2px solid #111;
    margin-bottom: 8px;
}
.stp-eyebrow {
    display: inline-block;
    background: #111;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    margin-bottom: 14px;
}
.stp-h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: #111;
    line-height: 1.25;
    margin: 0 0 10px;
    letter-spacing: -.3px;
}
.stp-lead {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    max-width: 640px;
}

/* ── Block ── */
.stp-block { padding: 28px 0; }
.stp-block-alt {
    background: #fff;
    margin: 0 -20px;
    padding: 32px 20px;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}
.stp-block-intro {
    font-size: 13.5px;
    color: #555;
    line-height: 1.75;
    max-width: 760px;
    margin-bottom: 22px;
}
.stp-empty-note { font-size: 13px; color: #999; padding: 10px 0; }

/* ── Prose (about intro) ── */
.stp-prose { max-width: 780px; }
.stp-prose p {
    font-size: 14.5px;
    line-height: 1.85;
    color: #333;
    margin-bottom: 18px;
}
.stp-prose strong { color: #111; }

/* ── Cover grid (about / advertise cards) ── */
.stp-cover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #ddd;
}
.stp-cover-card {
    background: #fff;
    padding: 22px 20px;
    transition: box-shadow .2s, transform .2s;
}
.stp-cover-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); transform: translateY(-2px); }
.stp-cover-num {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #ddd;
    margin-bottom: 8px;
}
.stp-cover-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}
.stp-cover-card p {
    font-size: 12.5px;
    color: #666;
    line-height: 1.65;
}

/* ── Mission section ── */
.stp-mission { max-width: 780px; }
.stp-mission-text p {
    font-size: 13.5px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

/* ── Focus grid (editorial focus / audience) ── */
.stp-focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #ddd;
}
.stp-focus-item {
    background: #fff;
    padding: 18px;
    border-top: 3px solid #111;
}
.stp-focus-item h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}
.stp-focus-item p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

/* ── Stats grid (advertise page) ── */
.stp-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #ddd;
}
.stp-stat-card {
    background: #111;
    color: #fff;
    padding: 26px 22px;
    text-align: center;
}
.stp-stat-num {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 800;
    color: #c69b2c;
    margin-bottom: 10px;
}
.stp-stat-card p {
    font-size: 12px;
    color: #ccc;
    line-height: 1.6;
}

/* ── CTA block ── */
.stp-cta {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 44px 24px;
    margin: 28px 0 0;
}
.stp-cta h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}
.stp-cta p { font-size: 13px; color: #aaa; margin-bottom: 20px; }
.stp-cta-btn {
    display: inline-block;
    background: #fff;
    color: #111;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 26px;
    transition: background .2s, color .2s;
}
.stp-cta-btn:hover { background: #c69b2c; color: #111; }

/* ── Legal pages (privacy / terms) ── */
.stp-legal { max-width: 800px; background: #fff; padding: 30px 32px; border-top: 3px solid #111; }
.stp-legal p {
    font-size: 13.5px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}
.stp-legal h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 28px 0 12px;
    padding-top: 16px;
    border-top: 1px solid #ebebeb;
}
.stp-legal h2:first-of-type { border-top: none; padding-top: 0; margin-top: 6px; }
.stp-legal ul { padding-left: 20px; margin-bottom: 16px; }
.stp-legal li { font-size: 13.5px; line-height: 1.75; color: #444; margin-bottom: 8px; }
.stp-legal strong { color: #111; }
.stp-legal a { color: #111; font-weight: 600; border-bottom: 1px solid #ccc; }

/* ════════════════════════════
   CONTACT PAGE
════════════════════════════ */
.ctc-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    align-items: start;
}
.ctc-card {
    background: #fff;
    border-top: 3px solid #111;
    padding: 28px;
}
.ctc-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}
.ctc-success {
    background: #e9f9ee;
    border: 1px solid #b6e8c4;
    color: #1d7a3d;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 16px;
    margin-bottom: 18px;
}
.ctc-form { display: flex; flex-direction: column; gap: 16px; }
.ctc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ctc-field { display: flex; flex-direction: column; gap: 6px; }
.ctc-field-full { width: 100%; }
.ctc-field label { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: #555; }
.ctc-field input, .ctc-field select, .ctc-field textarea {
    height: 42px;
    border: 1px solid #ddd;
    padding: 0 13px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    background: #fafafa;
    color: #111;
    transition: border-color .2s, background .2s;
}
.ctc-field textarea { height: auto; padding: 10px 13px; resize: vertical; }
.ctc-field input:focus, .ctc-field select:focus, .ctc-field textarea:focus { border-color: #111; background: #fff; }
.ctc-submit { align-self: flex-start; border: none; cursor: pointer; font-family: inherit; }

/* Info column */
.ctc-info-col { display: flex; flex-direction: column; gap: 1px; background: #ddd; }
.ctc-info-card { background: #fff; padding: 20px 22px; }
.ctc-info-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14.5px;
    font-weight: 700;
    color: #111;
    margin-bottom: 7px;
}
.ctc-info-card p { font-size: 12px; color: #666; line-height: 1.6; margin-bottom: 8px; }
.ctc-info-card a { font-size: 12.5px; font-weight: 700; color: #111; border-bottom: 1px solid #ccc; }
.ctc-map-placeholder {
    background: #f0f0f0;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ════════════════════════════
   SITEMAP PAGE
════════════════════════════ */
.smp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #ddd;
}
.smp-link {
    background: #fff;
    padding: 14px 16px;
    font-size: 12.5px;
    font-weight: 600;
    color: #333;
    transition: background .15s, color .15s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.smp-link:hover { background: #111; color: #fff; }
.smp-link em { font-style: normal; font-size: 10.5px; color: #aaa; }
.smp-link:hover em { color: #888; }

.smp-art-list { display: flex; flex-direction: column; background: #fff; border-top: 1px solid #ebebeb; }
.smp-art-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 4px;
    border-bottom: 1px solid #ebebeb;
    transition: padding-left .2s, color .2s;
}
.smp-art-row:hover { padding-left: 10px; color: #c0392b; }
.smp-art-title { font-size: 13px; font-weight: 600; color: #111; flex: 1; }
.smp-art-row:hover .smp-art-title { color: #111; }
.smp-art-meta { font-size: 10.5px; color: #999; white-space: nowrap; }

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1000px) {
    .stp-cover-grid, .stp-focus-grid, .stp-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .smp-grid { grid-template-columns: repeat(2, 1fr); }
    .ctc-layout { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .stp-wrap { padding: 0 14px; }
    .stp-h1 { font-size: 24px; }
    .stp-block-alt { margin: 0 -14px; padding: 26px 14px; }
    .stp-cover-grid, .stp-focus-grid, .stp-stats-grid, .smp-grid { grid-template-columns: 1fr; }
    .ctc-row { grid-template-columns: 1fr; }
    .ctc-card { padding: 20px; }
    .stp-legal { padding: 20px; }
    .stp-cta { padding: 32px 18px; }
    .stp-cta h2 { font-size: 19px; }
    .smp-art-row { flex-direction: column; align-items: flex-start; gap: 3px; }
}

/* ================================================
   NEWSLETTER FLASH MESSAGE — FOOTER
   FILE: assets/css/style.css
   ACTION: Paste at the VERY BOTTOM of style.css
================================================ */

.cch-nl-flash {
    font-size: 12px;
    font-weight: 600;
    padding: 10px 14px;
    margin-bottom: 14px;
    border-radius: 2px;
    line-height: 1.5;
}
.cch-nl-flash-ok {
    background: rgba(29,122,61,.15);
    color: #4ade80;
    border-left: 3px solid #4ade80;
}
.cch-nl-flash-err {
    background: rgba(192,57,43,.15);
    color: #ff8a80;
    border-left: 3px solid #ff8a80;
}
/* ================================================
   BAUMA LONG BANNER + EPS SQUARE BANNER STYLES
   Added at bottom of style.css
================================================ */

/* --- BAUMA LONG BANNER (top of homepage) --- */
.cc-banner-long {
    width: 100%;
    padding: 14px 0 8px;
    text-align: center;
}
.cc-banner-long a {
    display: block;
    width: 100%;
}
.cc-banner-long img {
    width: 100%;
    max-width: 1280px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* --- EPS SQUARE BANNER - center (homepage after hero, mobile) --- */
.cc-banner-square-center {
    display: none; /* hidden on desktop - shown only on mobile/tablet */
    text-align: center;
    padding: 14px 0 8px;
}
.cc-banner-square-center a {
    display: inline-block;
}
.cc-banner-square-center img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 300px;
    display: block;
    margin: 0 auto;
}

/* --- EPS SQUARE BANNER - sidebar (article/category/search) --- */
.cc-banner-square-sidebar {
    width: 100%;
    text-align: center;
    margin-top: 4px;
}
.cc-banner-square-sidebar a {
    display: block;
}
.cc-banner-square-sidebar img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* === RESPONSIVE BANNER RULES === */

/* Desktop 1200px+: sidebar banner shows, center banner hidden */
@media (min-width: 901px) {
    .cc-banner-square-center { display: none; }
    .cc-banner-square-sidebar { display: block; }
}

/* Tablet 768px - 900px: sidebar hidden, center banner shows */
@media (max-width: 900px) {
    .cc-banner-square-center { display: block; }
    .cc-banner-square-sidebar { display: none; }
    .cc-banner-long img { max-height: 120px; object-fit: cover; }
}

/* Mobile 540px and below */
@media (max-width: 540px) {
    .cc-banner-long {
        padding: 10px 0 6px;
    }
    .cc-banner-long img {
        max-height: 80px;
        object-fit: cover;
    }
    .cc-banner-square-center {
        padding: 10px 0 6px;
    }
    .cc-banner-square-center img {
        max-height: 200px;
    }
}
/* ==================================================
   CONTACT PAGE — CLEAN UI FIX
================================================== */

.ctc-layout {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 28px;
    align-items: stretch;
}

.ctc-info-col,
.ctc-form-col {
    min-width: 0;
}

.ctc-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-top: 3px solid #111;
    padding: 30px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}

.ctc-card-title {
    margin: 0 0 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e6e6e6;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
    line-height: 1.2;
    color: #111;
}

.ctc-card-text {
    margin: -6px 0 24px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.ctc-detail-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid #ededed;
}

.ctc-detail-item:first-of-type {
    padding-top: 0;
}

.ctc-detail-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.ctc-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: #111;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
}

.ctc-detail-item h3 {
    margin: 0 0 6px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    line-height: 1.25;
    color: #111;
}

.ctc-detail-item p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.65;
}

.ctc-detail-item a {
    display: inline-block;
    max-width: 100%;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    overflow-wrap: anywhere;
    text-decoration: none;
    border-bottom: 1px solid #111;
}

.ctc-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ctc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ctc-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctc-field label {
    margin: 0;
    color: #222;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ctc-field input,
.ctc-field select,
.ctc-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 13px 14px;
    border: 1px solid #d8d8d8;
    border-radius: 0;
    background: #fff;
    color: #111;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ctc-field textarea {
    min-height: 145px;
    resize: vertical;
}

.ctc-field input:focus,
.ctc-field select:focus,
.ctc-field textarea:focus {
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.ctc-submit {
    width: 100%;
    min-height: 50px;
    margin-top: 2px;
    border: 0;
    background: #111;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ctc-submit:hover {
    background: #b21f24;
}

.ctc-success {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-left: 4px solid #18864b;
    background: #edf8f2;
    color: #14613a;
    font-size: 14px;
    line-height: 1.5;
}

.ctc-map {
    overflow: hidden;
    margin-top: 18px;
    border: 1px solid #dedede;
}

.ctc-map iframe {
    display: block;
    width: 100%;
    min-height: 380px;
}

@media (max-width: 900px) {
    .ctc-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ctc-card {
        padding: 22px 18px;
    }

    .ctc-card-title {
        font-size: 24px;
    }

    .ctc-row {
        grid-template-columns: 1fr;
    }

    .ctc-detail-item {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 13px;
    }

    .ctc-detail-icon {
        width: 42px;
        height: 42px;
    }
}