/**
 * CareerPlan Theme Styles
 * CareerIndia-inspired layout for CareerPlan.in
 */

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    --primary: #005689;
    --primary-dark: #004060;
    --primary-light: #E8F4FA;
    --accent: #E53935;
    --accent-dark: #C62828;
    --text-primary: #222222;
    --text-secondary: #555555;
    --text-muted: #888888;
    --bg: #F4F4F4;
    --surface: #FFFFFF;
    --border: #DDDDDD;
    --border-light: #EEEEEE;
    --header-bg: #005689;
    --block-header-bg: #ECECEC;
    --shadow-card: 0 1px 4px rgba(0, 0, 0, 0.08);
    --radius-sm: 3px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-full: 999px;
    --header-topbar-h: 50px;
    --header-exambar-h: 0px;
    /* exam bar removed — header is just the top bar */
    --header-sticky-offset: calc(var(--header-topbar-h) + var(--header-exambar-h) + 12px);
    --touch-min: 44px;
    --container-pad: 15px;
    --bp-sm: 480px;
    --bp-md: 768px;
    --bp-lg: 992px;
    --bp-xl: 1200px;
}

@media (min-width: 768px) {
    :root {
        --header-exambar-h: 0px;
        --header-sticky-offset: calc(50px + 12px);
    }
}

/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: clip;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.5;
    font-size: 14px;
    min-height: 100vh;
    overflow-x: clip;
    overflow-wrap: break-word;
    word-wrap: break-word;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

@supports not (overflow-x: clip) {

    html,
    body {
        overflow-x: hidden;
    }
}

main {
    flex: 1 0 auto;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

img,
video,
picture {
    max-width: 100%;
    height: auto;
    display: block;
}

input,
button,
select,
textarea {
    font-family: inherit;
}

button {
    -webkit-tap-highlight-color: transparent;
}

ul {
    list-style: none;
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 2px;
}

.cp-btn-icon:focus-visible,
.cp-search-tab:focus-visible,
.cp-cta-banner__btn:focus-visible {
    outline-offset: -2px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* WordPress admin bar (logged-in users) */
@media (min-width: 783px) {
    .admin-bar .cp-header {
        top: 32px;
    }
}

@media (max-width: 782px) {
    .admin-bar .cp-header {
        top: 46px;
    }
}

.admin-bar .cp-mobile-menu .panel {
    padding-top: env(safe-area-inset-top, 0);
}

.container {
    max-width: var(--bp-xl);
    margin: 0 auto;
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* ========================================
   HEADER
   ======================================== */
.cp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--header-bg);
    padding-top: env(safe-area-inset-top, 0);
}

.cp-header-spacer {
    height: calc(var(--header-topbar-h) + var(--header-exambar-h));
}

.cp-topbar {
    height: var(--header-topbar-h);
}

.cp-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cp-logo {
    flex-shrink: 0;
}

.cp-logo-text {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cp-main-nav {
    display: none;
    flex: 1;
    justify-content: center;
}

@media (min-width: 768px) {
    .cp-main-nav {
        display: flex;
    }
}

.cp-main-nav-list {
    display: flex;
    align-items: center;
    gap: 0;
}

.cp-main-nav-list a {
    display: block;
    padding: 0.4rem 0.75rem;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
    transition: opacity 0.15s;
}

.cp-main-nav-list a:hover {
    opacity: 0.85;
    text-decoration: underline;
}

/* Dropdown menus (desktop) */
.cp-main-nav-list>li {
    position: relative;
}

.cp-main-nav-list>li>a {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.cp-nav-caret {
    width: 13px;
    height: 13px;
    transition: transform 0.15s ease;
}

.cp-main-nav-list>li.cp-has-children:hover>a .cp-nav-caret,
.cp-main-nav-list>li.cp-has-children:focus-within>a .cp-nav-caret {
    transform: rotate(180deg);
}

.cp-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    list-style: none;
    margin: 0;
    padding: 0.35rem 0;
    background: #fff;
    border: 1px solid var(--border);
    border-top: 2px solid var(--primary);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
    z-index: 210;
}

.cp-main-nav-list>li.cp-has-children:hover>.cp-dropdown,
.cp-main-nav-list>li.cp-has-children:focus-within>.cp-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cp-dropdown a {
    display: block;
    padding: 0.55rem 1rem;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 1;
}

.cp-dropdown a:hover {
    background: var(--primary-light);
    color: var(--primary);
    text-decoration: none;
    opacity: 1;
}

/* Dropdowns inside the mobile menu: render statically (expanded, indented) */
.cp-mobile-menu .cp-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    min-width: 0;
    padding: 0;
    background: var(--surface);
}

.cp-mobile-menu .cp-dropdown a {
    padding-left: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cp-mobile-menu .cp-nav-caret {
    display: none;
}

.cp-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.cp-btn-icon {
    width: var(--touch-min);
    height: var(--touch-min);
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    -webkit-tap-highlight-color: transparent;
}

.cp-btn-icon:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cp-btn-icon svg {
    width: 20px;
    height: 20px;
}

.cp-btn-icon--account {
    display: none;
}

@media (min-width: 768px) {
    .cp-btn-icon--account {
        display: flex;
    }

    .cp-btn-icon {
        width: 36px;
        height: 36px;
    }

    .cp-btn-icon svg {
        width: 18px;
        height: 18px;
    }
}

.cp-menu-toggle {
    display: flex;
}

@media (min-width: 768px) {
    .cp-menu-toggle {
        display: none;
    }
}

/* Exam pills bar — horizontal scroll on all viewports */
.cp-exam-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    height: var(--header-exambar-h);
}

@media (min-width: 768px) {
    .cp-exam-bar {
        height: 46px;
    }

    .cp-header-spacer {
        height: 50px;
    }
}

.cp-exam-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 12px;
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 12px;
}

.cp-exam-bar-link {
    display: flex;
    align-items: center;
    padding: 0 0.875rem;
    min-height: var(--header-exambar-h);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    flex-shrink: 0;
    scroll-snap-align: start;
    border-right: 1px solid var(--border-light);
    transition: color 0.15s, background 0.15s;
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 768px) {
    .cp-exam-bar-link {
        min-height: 46px;
        font-weight: 500;
    }
}

.cp-exam-bar-link:first-child {
    border-left: 1px solid var(--border-light);
}

.cp-exam-bar-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}

/* ========================================
   SEARCH HERO
   ======================================== */
.cp-search-hero {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .cp-search-hero {
        min-height: 240px;
        padding: 2.5rem 0;
    }
}

.cp-search-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.cp-search-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 40, 70, 0.55);
}

.cp-search-box {
    position: relative;
    z-index: 1;
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.cp-search-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
}

.cp-search-tab {
    flex: 1;
    padding: 0.625rem 1rem;
    background: #f9f9f9;
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    transition: all 0.15s;
}

.cp-search-tab.is-active {
    background: var(--primary);
    color: #fff;
}

.cp-search-tab:not(.is-active):hover {
    background: var(--primary-light);
    color: var(--primary);
}

.cp-search-form {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.cp-search-field {
    position: relative;
    border-right: 1px solid var(--border);
}

.cp-search-field--grow {
    flex: 1;
    min-width: 180px;
}

.cp-search-field--select {
    min-width: 160px;
    flex: 0 0 auto;
}

.cp-search-field input,
.cp-search-field select {
    width: 100%;
    height: 48px;
    padding: 0 1rem;
    border: none;
    background: #fff;
    color: var(--text-primary);
    font-size: 0.875rem;
    outline: none;
    appearance: none;
}

.cp-search-field select {
    padding-right: 2rem;
    cursor: pointer;
}

.cp-select-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    pointer-events: none;
}

.cp-search-submit {
    width: 56px;
    height: 48px;
    border: none;
    cursor: pointer;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s;
}

.cp-search-submit:hover {
    background: var(--accent-dark);
}

.cp-search-submit svg {
    width: 20px;
    height: 20px;
}

.cp-search-dropdowns {
    display: contents;
}

/* Career tools strip (Careers360-inspired) */
.cp-career-tools {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-bottom: 0.5rem;
    overflow-x: auto;
}

.cp-career-tool {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.15s;
}

.cp-career-tool:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-1px);
}

.cp-career-tool svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ========================================
   BLOCK HEADERS (CareerIndia style)
   ======================================== */
.cp-block-header {
    background: var(--block-header-bg);
    padding: 0.5rem 0.75rem;
    border-bottom: 2px solid var(--accent);
    margin-bottom: 0;
}

.cp-block-header h2 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cp-block-header h2 a:hover {
    color: var(--primary);
}

.cp-block-header--flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border-bottom: 2px solid var(--primary);
    padding: 0 0 0.5rem;
    margin-bottom: 1.25rem;
}

.cp-block-header--flex h2 {
    font-size: 1.25rem;
}

.cp-view-all {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

.cp-view-all:hover {
    text-decoration: underline;
}

.cp-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* ========================================
   NEWS SECTION
   ======================================== */
.cp-news-section {
    background: var(--surface);
    padding: 1.25rem 0 0;
}

.cp-featured-row {
    margin-bottom: 1rem;
}

.cp-featured-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

@media (min-width: 640px) {
    .cp-featured-card {
        flex-direction: row;
    }
}

.cp-featured-card:hover {
    box-shadow: var(--shadow-card);
}

.cp-featured-card__img {
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .cp-featured-card__img {
        width: 280px;
    }
}

.cp-featured-card__img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

@media (min-width: 640px) {
    .cp-featured-card__img img {
        height: 160px;
    }
}

.cp-featured-card__body {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cp-featured-card__body h2 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 0.375rem;
    color: var(--text-primary);
    transition: color 0.15s;
}

.cp-featured-card:hover h2 {
    color: var(--primary);
}

.cp-news-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cp-news-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cp-news-mini {
    display: block;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.cp-news-mini:hover {
    box-shadow: var(--shadow-card);
}

.cp-news-mini__img img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}

.cp-news-mini__body {
    padding: 0.625rem 0.75rem;
}

.cp-news-mini__body h3 {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 0.25rem;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cp-news-mini:hover h3 {
    color: var(--primary);
}

/* Color tiles */
.cp-tile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .cp-tile-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .cp-tile-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.cp-tile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 90px;
    padding: 0.75rem;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.35;
    transition: opacity 0.15s, transform 0.15s;
}

.cp-tile:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.cp-tile svg {
    width: 14px;
    height: 14px;
    align-self: flex-end;
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* Headline list */
.cp-headline-list {
    border-top: 1px solid var(--border);
    padding: 0.5rem 0 1.25rem;
}

.cp-headline-item {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px dotted var(--border);
    transition: color 0.15s;
}

.cp-headline-item:last-child {
    border-bottom: none;
}

.cp-headline-item:hover {
    color: var(--primary);
}

/* ========================================
   EXPLORE CAREER PATHS
   ======================================== */
.cp-career-paths {
    padding: 1.5rem 0;
    background: var(--surface);
    margin-top: 1px;
}

.cp-cat-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .cp-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cp-cat-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cp-cat-card {
    display: block;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: all 0.2s;
}

.cp-cat-card:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: var(--shadow-card);
}

.cp-cat-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.cp-cat-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.cp-cat-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.cp-cat-card p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.cp-cat-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 600;
}

.cp-cat-link svg {
    width: 14px;
    height: 14px;
}

.cp-cat-card:hover .cp-cat-link {
    gap: 0.5rem;
}

.cp-stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    background: var(--primary);
    border-radius: var(--radius-md);
    padding: 1rem;
}

@media (min-width: 640px) {
    .cp-stats-bar {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cp-stats-bar__item {
    text-align: center;
    color: #fff;
}

.cp-stats-bar__item strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
}

.cp-stats-bar__item span {
    font-size: 0.6875rem;
    opacity: 0.85;
}

/* ========================================
   JOBS + GK ROW
   ======================================== */
.cp-jobs-gk-section {
    padding: 1.25rem 0;
}

.cp-jobs-gk-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 992px) {
    .cp-jobs-gk-grid {
        grid-template-columns: 1.6fr 1fr;
    }
}

.cp-jobs-block,
.cp-gk-block {
    background: var(--surface);
    border: 1px solid var(--border);
}

.cp-jobs-featured {
    display: block;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.4;
    border-bottom: 1px dotted var(--border);
    transition: color 0.15s;
}

.cp-jobs-featured:hover {
    color: var(--accent-dark);
}

.cp-jobs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px dotted var(--border);
}

.cp-jobs-tag {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--accent);
}

.cp-jobs-tag:hover {
    text-decoration: underline;
}

.cp-jobs-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.5rem 0.75rem 0.75rem;
}

@media (min-width: 640px) {
    .cp-jobs-columns {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

.cp-jobs-list li {
    padding: 0.3rem 0;
}

.cp-jobs-list a {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-primary);
    line-height: 1.4;
    transition: color 0.15s;
}

.cp-jobs-list a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 1px;
    flex-shrink: 0;
    margin-top: 0.4rem;
}

.cp-jobs-list a:hover {
    color: var(--primary);
}

/* Thumb list (shared) */
.cp-thumb-list li {
    border-bottom: 1px dotted var(--border);
}

.cp-thumb-list li:last-child {
    border-bottom: none;
}

.cp-thumb-list__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    transition: background 0.15s;
}

.cp-thumb-list__item:hover {
    background: var(--primary-light);
}

.cp-thumb-list__item img {
    width: 80px;
    height: 55px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.cp-thumb-list__item span {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--text-primary);
    transition: color 0.15s;
}

.cp-thumb-list__item:hover span {
    color: var(--primary);
}

.cp-thumb-list--2col {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .cp-thumb-list--2col {
        grid-template-columns: 1fr 1fr;
    }
}

.cp-thumb-list--2col li {
    border-bottom: 1px dotted var(--border);
}

/* ========================================
   COLUMN SECTIONS
   ======================================== */
.cp-columns-section {
    padding: 0 0 1.25rem;
}

.cp-columns-section--alt {
    background: var(--surface);
    padding: 1.25rem 0;
    margin-top: 1px;
}

.cp-columns-grid {
    display: grid;
    gap: 1.25rem;
}

.cp-columns-grid--2 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .cp-columns-grid--2 {
        grid-template-columns: 1.5fr 1fr;
    }
}

.cp-columns-grid--3 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .cp-columns-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .cp-columns-grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cp-column-block {
    background: var(--surface);
    border: 1px solid var(--border);
}

/* Social block */
.cp-social-block {
    padding-bottom: 0.75rem;
}

.cp-social-cards {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
}

.cp-social-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    transition: opacity 0.15s;
}

.cp-social-card:hover {
    opacity: 0.9;
}

.cp-social-card svg {
    width: 24px;
    height: 24px;
}

.cp-social-card--fb {
    background: #3B5998;
}

.cp-social-card--tw {
    background: #1DA1F2;
}

.cp-social-note {
    padding: 0 0.75rem 0.75rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cp-cta-banner {
    padding: 0 0 1.5rem;
}

.cp-cta-banner__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    color: #fff;
}

@media (min-width: 768px) {
    .cp-cta-banner__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cp-cta-banner__inner h2 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.375rem;
}

.cp-cta-banner__inner p {
    font-size: 0.875rem;
    opacity: 0.9;
    max-width: 540px;
}

.cp-cta-banner__btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.15s;
}

.cp-cta-banner__btn:hover {
    background: var(--accent-dark);
}

/* ========================================
   NEWSLETTER
   ======================================== */
.cp-newsletter {
    background: var(--surface);
    border-top: 3px solid var(--primary);
    padding: 1.25rem 0;
}

.cp-newsletter-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .cp-newsletter-inner {
        flex-direction: row;
        text-align: left;
        justify-content: center;
        gap: 2rem;
    }
}

.cp-newsletter-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cp-newsletter-label svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    flex-shrink: 0;
}

.cp-newsletter-label h3 {
    font-size: 1rem;
    font-weight: 700;
}

.cp-newsletter-form {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    max-width: 420px;
}

.cp-newsletter-form input {
    flex: 1;
    height: 40px;
    padding: 0 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    outline: none;
}

.cp-newsletter-form input:focus {
    border-color: var(--primary);
}

.cp-newsletter-form button {
    height: 40px;
    padding: 0 1.25rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    flex-shrink: 0;
}

.cp-newsletter-form button:hover {
    background: var(--accent-dark);
}

/* ========================================
   FOOTER
   ======================================== */
.cp-footer {
    background: #E8E8E8;
    margin-top: 0;
}

.cp-footer-links-bar {
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.cp-footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.375rem 0.5rem;
}

.cp-footer-nav a {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    transition: color 0.15s;
}

.cp-footer-nav a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.cp-footer-nav span {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.cp-footer-bottom {
    padding: 0.75rem 0 1.25rem;
    text-align: center;
}

.cp-footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cp-footer-bottom .cp-footer-disclaimer {
    margin-top: 0.25rem;
    font-size: 0.6875rem;
}

/* ========================================
   MOBILE MENU
   ======================================== */
.cp-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 400;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.cp-mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.cp-mobile-menu .backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cp-mobile-menu .panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.cp-mobile-menu.active .panel {
    transform: translateX(0);
}

.cp-mobile-menu .panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--primary);
    color: #fff;
}

.cp-mobile-menu .panel-header span {
    font-weight: 700;
}

.cp-mobile-menu .close-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
}

.cp-mobile-menu .panel-links a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
}

.cp-mobile-menu .panel-links a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.cp-mobile-menu .panel-exams {
    padding: 1rem;
}

.cp-mobile-menu .panel-exams p {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.cp-panel-exam-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cp-panel-exam-pills a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--touch-min);
    padding: 0.375rem 0.875rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    -webkit-tap-highlight-color: transparent;
}

.cp-panel-exam-pills a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* Mobile Search */
.cp-mobile-search {
    position: fixed;
    inset: 0;
    z-index: 400;
    background: #fff;
    transform: translateY(-100%);
    transition: transform 0.3s;
}

.cp-mobile-search.active {
    transform: translateY(0);
}

.cp-mobile-search-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.cp-mobile-search-inner .search-wrap {
    position: relative;
    flex: 1;
}

.cp-mobile-search-inner input {
    width: 100%;
    height: 48px;
    padding: 0 1rem 0 2.5rem;
    background: var(--bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    font-size: 1rem;
    outline: none;
}

.cp-mobile-search-inner .search-wrap svg {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.cp-mobile-search-inner .search-close {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

/* ========================================
   ACCESSIBILITY & WP DEFAULTS
   ======================================== */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.cp-empty-notice {
    padding: 1rem 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.cp-empty-notice a {
    color: var(--primary);
    font-weight: 600;
}

.wp-caption {
    max-width: 100%;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   ARCHIVE & SINGLE (SEO pages)
   ======================================== */
.cp-archive {
    padding: 1.5rem 0 3rem;
}

.cp-archive-header {
    margin-bottom: 1.5rem;
}

.cp-archive-header__title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.cp-archive-header__intro {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    max-width: 720px;
    line-height: 1.6;
}

.cp-archive-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.cp-archive-tags__link {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.cp-archive-tags__link:hover {
    background: var(--primary);
    color: #fff;
}

.cp-breadcrumbs {
    margin-bottom: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.cp-breadcrumbs::-webkit-scrollbar {
    display: none;
}

.cp-breadcrumbs__list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.8125rem;
    color: var(--text-muted);
    white-space: nowrap;
    min-width: min-content;
}

@media (min-width: 768px) {
    .cp-breadcrumbs__list {
        flex-wrap: wrap;
        white-space: normal;
    }
}

.cp-breadcrumbs__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cp-breadcrumbs__item:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
    background-color: var(--text-muted);
    opacity: 0.55;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.cp-breadcrumbs__item a {
    display: inline-flex;
    align-items: center;
    color: var(--text-secondary);
    font-weight: 500;
}

.cp-breadcrumbs__item a:hover {
    color: var(--primary);
    text-decoration: none;
}

.cp-breadcrumbs__item span[aria-current="page"] {
    color: var(--text-primary);
    font-weight: 600;
}

.cp-breadcrumbs__home-icon {
    display: block;
    stroke: currentColor;
}

.cp-archive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cp-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .cp-archive-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cp-archive-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.15s;
}

.cp-archive-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cp-archive-card__media {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.cp-archive-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cp-archive-card__body {
    padding: 0.875rem 1rem 1rem;
}

.cp-archive-card__date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cp-archive-card__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0.35rem 0 0.5rem;
}

.cp-archive-card__title a {
    color: var(--text-primary);
}

.cp-archive-card__title a:hover {
    color: var(--primary);
}

.cp-archive-card__excerpt {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cp-archive-pagination {
    margin-top: 2rem;
}

.cp-archive-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.cp-archive-pagination a,
.cp-archive-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: var(--touch-min);
    min-height: var(--touch-min);
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    background: var(--surface);
}

.cp-archive-pagination a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.cp-archive-pagination .current {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.cp-archive-empty {
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
    background: var(--surface);
    border-radius: var(--radius-md);
}

.cp-single {
    padding: 1.5rem 0 3rem;
}

.cp-single-layout {
    display: grid;
    gap: 1.25rem;
    align-items: start;
    grid-template-columns: 1fr;
    grid-template-areas:
        "main"
        "left"
        "right";
}

.cp-single-main {
    grid-area: main;
    min-width: 0;
}

.cp-sidebar--left {
    grid-area: left;
}

.cp-sidebar--right {
    grid-area: right;
}

.cp-sidebar {
    position: static;
}

.cp-sidebar-widget {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-card);
}

.cp-sidebar-widget__title {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.cp-sidebar-widget__hub-link,
.cp-sidebar-widget__more {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 0.25rem;
}

.cp-sidebar-widget__hub-link:hover,
.cp-sidebar-widget__more:hover {
    text-decoration: underline;
}

.cp-sidebar-list {
    margin: 0;
    padding: 0;
}

.cp-sidebar-list li {
    margin-bottom: 0.5rem;
}

.cp-sidebar-list a {
    font-size: 0.8125rem;
    line-height: 1.4;
    color: var(--text-secondary);
    display: block;
}

.cp-sidebar-list a:hover {
    color: var(--primary);
}

.cp-sidebar-list--compact a {
    font-size: 0.75rem;
}

.cp-sidebar-list--thumb li {
    margin-bottom: 0.75rem;
}

.cp-sidebar-thumb-item {
    display: flex;
    gap: 0.625rem;
    align-items: flex-start;
}

.cp-sidebar-thumb-item__img {
    flex-shrink: 0;
    width: 64px;
    height: 36px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg);
}

.cp-sidebar-thumb-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cp-sidebar-thumb-item__text {
    font-size: 0.75rem;
    line-height: 1.35;
    color: var(--text-primary);
    font-weight: 500;
}

.cp-sidebar-thumb-item:hover .cp-sidebar-thumb-item__text {
    color: var(--primary);
}

.cp-sidebar-tools {
    margin: 0;
    padding: 0;
}

.cp-sidebar-tools li {
    margin-bottom: 0.35rem;
}

.cp-sidebar-tools a {
    display: block;
    padding: 0.4rem 0.625rem;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

.cp-sidebar-tools a:hover {
    background: var(--primary);
    color: #fff;
}

.cp-sidebar-widget--newsletter p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.cp-sidebar-newsletter {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cp-sidebar-newsletter input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
}

.cp-sidebar-newsletter button {
    padding: 0.5rem 0.75rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
}

.cp-sidebar-newsletter button:hover {
    background: var(--primary-dark);
}

.cp-single-article__header {
    margin-bottom: 1.25rem;
}

.cp-single-article__cat {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.cp-single-article__title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.cp-single-article__date {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.cp-single-article__featured {
    margin: 1.25rem 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.cp-single-article__content {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-primary);
}

.cp-single-article__content h2 {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 1.75rem 0 0.75rem;
}

.cp-single-article__content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 1.25rem 0 0.5rem;
}

.cp-single-article__content p {
    margin-bottom: 1rem;
}

.cp-single-article__content ul,
.cp-single-article__content ol {
    margin: 0 0 1rem 1.25rem;
}

.cp-single-article__content li {
    margin-bottom: 0.35rem;
    list-style: disc;
}

.cp-single-article__content a {
    color: var(--primary);
    text-decoration: underline;
}

.cp-single-article__content img,
.cp-single-article__content video,
.cp-single-article__content iframe,
.cp-single-article__content embed,
.cp-single-article__content object,
.cp-single-article__content figure {
    max-width: 100%;
    height: auto;
}

.cp-single-article__content iframe {
    width: 100%;
    border: 0;
}

.cp-single-article__content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1.25rem;
}

.cp-single-article__content th,
.cp-single-article__content td {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.cp-single-article__content th {
    background: var(--block-header-bg);
    font-weight: 700;
}

.cp-single-article__content pre,
.cp-single-article__content code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.875rem;
}

.cp-single-article__content pre {
    padding: 1rem;
    background: var(--bg);
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin-bottom: 1.25rem;
}

.cp-single-article__content blockquote {
    margin: 1.25rem 0;
    padding: 0.875rem 1rem;
    border-left: 4px solid var(--primary);
    background: var(--primary-light);
    color: var(--text-secondary);
}

.cp-single-article__content .alignleft,
.cp-single-article__content .alignright,
.cp-single-article__content .aligncenter {
    float: none;
    display: block;
    margin: 1rem auto;
    max-width: 100%;
}

.cp-single-article__content::after {
    content: '';
    display: table;
    clear: both;
}

.cp-single-article__content .wp-block-image,
.cp-single-article__content .wp-block-embed,
.cp-single-article__content .wp-block-table {
    margin-bottom: 1.25rem;
    max-width: 100%;
}

.cp-single-article__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.cp-single-article__tags a {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
}

/* ========================================
   RESPONSIVE — TABLET (768px – 991px)
   ======================================== */
@media (min-width: 768px) and (max-width: 991px) {
    body {
        font-size: 15px;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cp-main-nav-list a {
        padding: 0.4rem 0.5rem;
        font-size: 0.75rem;
    }

    .cp-search-hero {
        padding: 2rem 0;
    }

    .cp-search-form {
        flex-wrap: wrap;
    }

    .cp-search-field--grow {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .cp-search-dropdowns {
        display: flex;
        flex: 1 1 100%;
    }

    .cp-search-field--select {
        flex: 1;
        min-width: 0;
    }

    .cp-search-submit {
        width: 56px;
        height: 48px;
    }

    .cp-career-tools {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cp-archive-header__title {
        font-size: 1.5rem;
    }

    .cp-single-article__title {
        font-size: 1.75rem;
    }

    .cp-single-layout {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "main main"
            "left right";
        gap: 1.5rem;
    }

    .cp-single-article__content .alignleft {
        float: left;
        margin: 0.25rem 1.25rem 1rem 0;
        max-width: 45%;
    }

    .cp-single-article__content .alignright {
        float: right;
        margin: 0.25rem 0 1rem 1.25rem;
        max-width: 45%;
    }

    .cp-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cp-block-header--flex h2 {
        font-size: 1.125rem;
    }
}

/* ========================================
   RESPONSIVE — DESKTOP (992px+)
   ======================================== */
@media (min-width: 992px) {
    .cp-single-layout {
        grid-template-columns: 300px minmax(0, 1fr) 240px;
        grid-template-areas: "left main right";
        gap: 1.5rem;
    }

    .cp-sidebar {
        position: sticky;
        top: var(--header-sticky-offset);
        max-height: calc(100vh - var(--header-sticky-offset) - 16px);
        overflow-y: auto;
        scrollbar-width: thin;
    }

    .cp-single-article__content .alignleft {
        float: left;
        margin: 0.25rem 1.5rem 1rem 0;
        max-width: 50%;
    }

    .cp-single-article__content .alignright {
        float: right;
        margin: 0.25rem 0 1rem 1.5rem;
        max-width: 50%;
    }

    .cp-archive-header__title {
        font-size: 1.875rem;
    }
}

@media (max-width: 767px) {
    .cp-archive-header__title {
        font-size: 1.375rem;
    }

    .cp-single-article__title {
        font-size: 1.5rem;
    }

    .cp-single-article__content {
        font-size: 1rem;
    }

    .cp-single-article__content h2 {
        font-size: 1.25rem;
    }

    .cp-single-article__content h3 {
        font-size: 1.0625rem;
    }
}

/* ========================================
   MOBILE-FIRST RESPONSIVE (≤767px)
   Primary audience: mobile users in India
   ======================================== */
@media (max-width: 767px) {
    body {
        font-size: 16px;
        line-height: 1.55;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .cp-logo-text {
        font-size: 1rem;
        letter-spacing: 0.03em;
    }

    .cp-topbar-inner {
        padding: 0 12px;
        gap: 0.5rem;
    }

    /* Search hero — stacked, thumb-friendly */
    .cp-search-hero {
        min-height: auto;
        padding: 1.25rem 0 1rem;
    }

    .cp-search-box {
        border-radius: var(--radius-lg);
    }

    .cp-search-tabs {
        flex-wrap: nowrap;
    }

    .cp-search-tab {
        flex: 1;
        min-height: var(--touch-min);
        padding: 0.75rem 0.5rem;
        font-size: 0.6875rem;
        letter-spacing: 0.04em;
    }

    .cp-search-form {
        flex-direction: column;
        align-items: stretch;
    }

    .cp-search-dropdowns {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .cp-search-field,
    .cp-search-field--grow,
    .cp-search-field--select {
        flex: none;
        width: 100%;
        min-width: 0;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .cp-search-field input,
    .cp-search-field select {
        height: var(--touch-min);
        font-size: 16px;
    }

    .cp-search-submit {
        width: 100%;
        height: var(--touch-min);
        border-radius: 0;
    }

    .cp-career-tools {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
        margin-top: 0.875rem;
        overflow: visible;
        padding-bottom: 0;
    }

    .cp-career-tool {
        justify-content: flex-start;
        min-height: var(--touch-min);
        padding: 0.625rem 0.75rem;
        border-radius: var(--radius-md);
        font-size: 0.75rem;
        white-space: normal;
        line-height: 1.3;
    }

    .cp-career-tool svg {
        width: 18px;
        height: 18px;
    }

    /* News & tiles — single column on narrow phones */
    .cp-news-row {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .cp-featured-card__body h2 {
        font-size: 1.0625rem;
    }

    .cp-news-mini__body h3 {
        font-size: 0.875rem;
    }

    .cp-tile-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .cp-tile {
        min-height: 72px;
        padding: 1rem;
        font-size: 0.875rem;
        border-radius: var(--radius-md);
    }

    /* Career paths */
    .cp-career-paths {
        padding: 1.25rem 0;
    }

    .cp-block-header h2 {
        font-size: 1.0625rem;
    }

    .cp-cat-card {
        padding: 1rem 1.125rem;
    }

    .cp-cat-card h3 {
        font-size: 1rem;
    }

    .cp-cat-card p {
        font-size: 0.8125rem;
    }

    .cp-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 1rem 0.75rem;
    }

    .cp-stats-bar__item strong {
        font-size: 1.125rem;
    }

    .cp-stats-bar__item span {
        font-size: 0.75rem;
    }

    /* Jobs / lists — larger tap targets */
    .cp-jobs-featured {
        font-size: 0.9375rem;
        padding: 0.875rem;
    }

    .cp-jobs-list a {
        font-size: 0.875rem;
        padding: 0.25rem 0;
        min-height: var(--touch-min);
        align-items: center;
    }

    .cp-thumb-list__item {
        padding: 0.75rem;
        min-height: var(--touch-min);
    }

    .cp-thumb-list__item span {
        font-size: 0.875rem;
    }

    .cp-headline-item {
        font-size: 0.9375rem;
        padding: 0.625rem 0;
        min-height: var(--touch-min);
        display: flex;
        align-items: center;
    }

    /* CTA & newsletter */
    .cp-cta-banner__inner {
        padding: 1.25rem 1rem;
        border-radius: var(--radius-md);
    }

    .cp-cta-banner__inner h2 {
        font-size: 1.125rem;
    }

    .cp-cta-banner__btn {
        width: 100%;
        text-align: center;
        min-height: var(--touch-min);
        line-height: 1.2;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .cp-newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    .cp-newsletter-form input,
    .cp-newsletter-form button {
        width: 100%;
        height: var(--touch-min);
        font-size: 16px;
    }

    /* Mobile menu — full-width drawer on small phones */
    .cp-mobile-menu .panel {
        width: min(100%, 320px);
        max-width: 100vw;
        padding-bottom: env(safe-area-inset-bottom, 0);
    }

    .cp-mobile-menu .panel-links a {
        min-height: var(--touch-min);
        display: flex;
        align-items: center;
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }

    .cp-mobile-search-inner {
        padding: 0.75rem 1rem;
        padding-top: calc(0.75rem + env(safe-area-inset-top, 0));
    }

    .cp-mobile-search-inner input {
        font-size: 16px;
    }

    /* Footer */
    .cp-footer-nav {
        gap: 0.5rem 0.75rem;
    }

    .cp-footer-nav a {
        font-size: 0.875rem;
        padding: 0.25rem 0;
        min-height: var(--touch-min);
        display: inline-flex;
        align-items: center;
    }

    /* Archive / article pages */
    .cp-breadcrumbs__list {
        font-size: 0.8125rem;
    }

    .cp-archive {
        padding: 1rem 0 2rem;
    }

    .cp-single {
        padding: 1rem 0 2rem;
    }

    .cp-archive-header {
        margin-bottom: 1.25rem;
    }

    .cp-archive-header__intro {
        font-size: 0.9375rem;
    }

    .cp-archive-tags__link {
        min-height: var(--touch-min);
        display: inline-flex;
        align-items: center;
        padding: 0.5rem 0.875rem;
    }

    .cp-archive-card__title {
        font-size: 0.9375rem;
    }

    .cp-archive-card__body {
        padding: 0.875rem;
    }

    .cp-archive-empty {
        padding: 1.5rem 1rem;
    }

    .cp-single-article__header {
        margin-bottom: 1rem;
    }

    .cp-single-article__cat {
        min-height: var(--touch-min);
        display: inline-flex;
        align-items: center;
    }

    .cp-single-article__featured {
        margin: 1rem 0;
        border-radius: var(--radius-sm);
    }

    .cp-single-article__tags a {
        min-height: var(--touch-min);
        display: inline-flex;
        align-items: center;
        padding: 0.375rem 0.75rem;
    }

    .cp-sidebar {
        border-top: 3px solid var(--primary);
        padding-top: 0.25rem;
    }

    .cp-sidebar--left {
        margin-top: 0.5rem;
    }

    .cp-sidebar-widget {
        padding: 0.875rem;
        margin-bottom: 0.875rem;
    }

    .cp-sidebar-list a,
    .cp-sidebar-tools a {
        min-height: var(--touch-min);
        display: flex;
        align-items: center;
    }

    .cp-sidebar-tools a {
        padding: 0.625rem 0.75rem;
    }

    .cp-sidebar-newsletter input,
    .cp-sidebar-newsletter button {
        min-height: var(--touch-min);
        font-size: 16px;
    }

    .cp-sidebar-thumb-item__img {
        width: 72px;
        height: 48px;
    }

    .cp-sidebar-thumb-item__text {
        font-size: 0.8125rem;
    }

    .cp-block-header--flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .cp-view-all {
        min-height: var(--touch-min);
        display: inline-flex;
        align-items: center;
    }

    .cp-footer-bottom {
        padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0));
    }
}

.cp-archive--search .cp-archive-header__title span {
    color: var(--primary);
    word-break: break-word;
}

/* Tablet + desktop shared archive tweaks */
@media (min-width: 768px) {
    .cp-archive {
        padding: 1.75rem 0 3rem;
    }

    .cp-single {
        padding: 1.75rem 0 3rem;
    }
}

@media (min-width: 992px) {
    .cp-archive-grid {
        gap: 1.25rem;
    }

    .cp-archive-card__title {
        font-size: 1.0625rem;
    }
}

@media (max-width: 479px) {
    .cp-career-tools {
        grid-template-columns: 1fr;
    }

    .cp-exam-bar-link {
        padding: 0 0.75rem;
        font-size: 0.75rem;
    }

    .cp-archive-card__title {
        font-size: 0.9375rem;
    }
}

/* ========================================
   GUTENBERG / WORDPRESS BLOCK ALIGNMENTS
   ======================================== */
.cp-single-article__content .alignwide,
.cp-single-article__content .alignfull,
.cp-single-article__content .wp-block-cover,
.cp-single-article__content .wp-block-gallery,
.cp-single-article__content .wp-block-columns {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

@media (min-width: 992px) {
    .cp-single-article__content .alignwide {
        margin-left: calc(-1 * (100vw - 100%) / 8);
        margin-right: calc(-1 * (100vw - 100%) / 8);
        width: auto;
    }
}

.cp-single-article__content .wp-block-columns {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .cp-single-article__content .wp-block-columns {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

.cp-single-article__content .wp-block-gallery {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .cp-single-article__content .wp-block-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cp-single-article__content .wp-block-embed iframe,
.cp-single-article__content .wp-block-video video {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
}

.cp-single-article__content .wp-block-table table {
    display: table;
    min-width: 600px;
}

.cp-single-article__content .wp-block-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ========================================
   COMMENTS (responsive defaults)
   ======================================== */
.comments-area {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.comments-title,
.comment-reply-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.comment-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.comment-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.comment-form {
    display: grid;
    gap: 0.75rem;
    max-width: 100%;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    min-height: var(--touch-min);
    padding: 0.625rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 16px;
    background: #fff;
}

.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.comment-form .submit {
    min-height: var(--touch-min);
    padding: 0.5rem 1.25rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    justify-self: start;
}

.comment-form .submit:hover {
    background: var(--primary-dark);
}

@media (min-width: 768px) {

    .comment-form-author,
    .comment-form-email,
    .comment-form-url {
        display: inline-block;
        width: calc(50% - 0.375rem);
    }

    .comment-form-url {
        width: 100%;
    }
}

/* ========================================
   LINE CLAMP HELPERS (cards / lists)
   ======================================== */
.cp-line-clamp-2,
.cp-archive-card__title,
.cp-archive-card__excerpt,
.cp-news-mini__body h3,
.cp-thumb-list__item span,
.cp-sidebar-list a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cp-archive-card__title {
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.cp-archive-card__excerpt {
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.cp-news-mini__body h3 {
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.cp-thumb-list__item span {
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.cp-sidebar-list a {
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

/* Equal-height archive cards */
.cp-archive-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cp-archive-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cp-archive-card__excerpt {
    margin-top: auto;
}

.cp-archive-grid {
    align-items: stretch;
}

/* Min-width 0 on flex/grid children to prevent overflow */
.cp-single-main,
.cp-sidebar,
.cp-jobs-block,
.cp-gk-block,
.cp-column-block,
.cp-featured-card__body {
    min-width: 0;
}

/* Readable measure on article body */
.cp-single-article__content {
    max-width: 70ch;
}

@media (min-width: 992px) {
    .cp-single-article__content {
        max-width: none;
    }
}

/* Hover effects only on real pointer devices (avoid sticky hover on touch) */
@media (hover: none) {
    .cp-featured-card:hover {
        box-shadow: none;
    }

    .cp-news-mini:hover {
        box-shadow: none;
    }

    .cp-archive-card:hover {
        box-shadow: var(--shadow-card);
    }

    .cp-cat-card:hover {
        background: var(--bg);
        border-color: var(--border);
    }

    .cp-tile:hover {
        opacity: 1;
        transform: none;
    }

    .cp-career-tool:hover {
        transform: none;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {

    .cp-header,
    .cp-header-spacer,
    .cp-exam-bar,
    .cp-mobile-menu,
    .cp-mobile-search,
    .cp-sidebar,
    .cp-footer,
    .cp-cta-banner,
    .cp-newsletter,
    .cp-search-hero,
    .cp-breadcrumbs {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
        font-size: 12pt;
    }

    .cp-single-layout {
        grid-template-columns: 1fr;
        grid-template-areas: "main";
    }

    .cp-single-article__title {
        font-size: 20pt;
    }

    .cp-single-article__content {
        font-size: 11pt;
        line-height: 1.5;
    }

    .cp-single-article__content a {
        color: #000;
        text-decoration: underline;
    }

    .cp-single-article__content a[href]::after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #555;
    }

    img {
        max-width: 100%;
        page-break-inside: avoid;
    }

    h1,
    h2,
    h3 {
        page-break-after: avoid;
    }

    p,
    blockquote,
    table {
        page-break-inside: avoid;
    }
}

/* ===================================================================== */
/* Byline ("news by") row under the H1                                   */
/* ===================================================================== */
.cp-newsby {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .5rem 1rem;
    margin: .5rem 0 0;
}

.cp-newsby__meta {
    margin: 0;
    font-size: .9rem;
    color: #475569;
    line-height: 1.5;
}

.cp-newsby__author {
    font-weight: 600;
    color: #0965FE;
    text-decoration: none;
}

.cp-newsby__author:hover {
    text-decoration: underline;
}

.cp-newsby__sep {
    color: #94A3B8;
}

.cp-newsby__icons {
    display: flex;
    align-items: center;
    gap: .4rem;
}

.cp-newsby__share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #2A2A2A;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.cp-newsby__share svg {
    fill: #fff;
}

.cp-newsby__share:hover {
    opacity: .85;
}

/* ===================================================================== */
/* Sidebar: "Just In" + "Related News"                                   */
/* ===================================================================== */
.cp-justin__title {
    display: flex;
    align-items: center;
    gap: .4rem;
}

.cp-justin__title svg {
    fill: #0965FE;
}

.cp-sidebar--left .cp-justin-list {
    list-style-type: decimal;
    margin: 0;
    padding-left: 1.15rem;
}

.cp-sidebar--left .cp-justin-item {
    display: list-item;
    padding: .15rem 0;
}

.cp-sidebar--left .cp-justin-item__title {
    font-size: .78rem;
    line-height: 1.3;
    font-weight: 500;
    color: #035689;
    text-decoration: none;
}

.cp-sidebar--left .cp-justin-item__title:hover {
    color: #0965FE;
}

/* Related News — pure-CSS tabs (radio + :nth-of-type, no dynamic ids) */
.cp-related__radio {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

.cp-related__tabs {
    display: flex;
    gap: .4rem;
    margin-bottom: .6rem;
}

.cp-related__tab {
    flex: 1;
    text-align: center;
    padding: .45rem .5rem;
    font-size: .82rem;
    font-weight: 600;
    color: #475569;
    background: #F1F5F9;
    border-radius: 6px;
    cursor: pointer;
}

.cp-related__radio:first-of-type:checked~.cp-related__tabs .cp-related__tab--cat,
.cp-related__radio:nth-of-type(2):checked~.cp-related__tabs .cp-related__tab--all {
    background: #0965FE;
    color: #fff;
}

.cp-related__panel {
    display: none;
}

.cp-related__radio:first-of-type:checked~.cp-related__panel--cat,
.cp-related__radio:nth-of-type(2):checked~.cp-related__panel--all {
    display: block;
}

.cp-related__empty {
    font-size: .85rem;
    color: #64748B;
    margin: .5rem 0;
}

/* ===================================================================== */
/* Category archive — dated post table (no featured images)              */
/* ===================================================================== */
.cp-archive-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin-top: 1rem;
}

.cp-archive-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    border: 1px solid #e2e8f0;
}

.cp-archive-table thead th {
    background: #0965FE;
    color: #fff;
    font-weight: 400;
    text-align: left;
    padding: 0.7rem 0.85rem;
    white-space: nowrap;
}

.cp-archive-table tbody td {
    padding: 0.7rem 0.85rem;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}

.cp-archive-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.cp-archive-table tbody tr:hover {
    background: #eef4ff;
}

.cp-archive-table a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 400;
    line-height: 1.45;
}

.cp-archive-table a:hover {
    color: #0965FE;
    text-decoration: underline;
}

.cp-archive-table__num {
    width: 3rem;
    color: #94a3b8;
    text-align: center;
}

.cp-archive-table__date {
    white-space: nowrap;
    color: #475569;
    font-size: 0.85rem;
}

.cp-archive-table__post {
    min-width: 14rem;
}

.cp-archive-table__overview {
    color: #475569;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 600px) {

    .cp-archive-table__num,
    .cp-archive-table__overview {
        display: none;
    }

    .cp-archive-table {
        font-size: 0.875rem;
    }

    .cp-archive-table thead th,
    .cp-archive-table tbody td {
        padding: 0.55rem 0.6rem;
    }
}

/* Category archive layout: main table + right sidebar only (no left sidebar). */
.cp-single-layout--no-left {
    grid-template-areas: "main" "right";
}

@media (min-width: 992px) {
    .cp-single-layout--no-left {
        grid-template-columns: minmax(0, 1fr) 300px;
        grid-template-areas: "main right";
    }
}

/* ===================================================================== */
/* Homepage: top categories block grid                                   */
/* ===================================================================== */
.cp-topcats {
    padding: 1.75rem 0;
}

.cp-topcats__heading {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 1.1rem;
    color: #0f172a;
}

.cp-topcats__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .cp-topcats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .cp-topcats__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cp-topcat {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cp-topcat__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.7rem 1rem;
    background: #f1f5f9;
    border-bottom: 3px solid #0965FE;
}

.cp-topcat__title a {
    color: #0f172a;
    text-decoration: none;
}

.cp-topcat__title a:hover {
    color: #0965FE;
}

.cp-topcat__list {
    list-style: none;
    margin: 0;
    padding: 0.4rem 1rem;
    flex: 1;
}

.cp-topcat__list li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.4rem;
    border-bottom: 1px solid #f1f5f9;
}

.cp-topcat__list li:last-child {
    border-bottom: 0;
}

/* Beautiful bullet: a small brand-blue dot with a soft ring, animates on hover. */
.cp-topcat__list li::before {
    content: "";
    position: absolute;
    left: 0.15rem;
    top: 0.85rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0965FE;
    box-shadow: 0 0 0 3px rgba(9, 101, 254, 0.15);
    transition: transform 0.15s ease, background 0.15s ease;
}

.cp-topcat__list li:hover::before {
    transform: scale(1.25);
    background: #0a4fc0;
}

.cp-topcat__list a {
    display: block;
    color: #334155;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: color 0.15s ease, transform 0.15s ease;
}

.cp-topcat__list li:hover a {
    color: #0965FE;
    transform: translateX(2px);
}

.cp-topcat__more {
    display: block;
    padding: 0.6rem 1rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #0965FE;
    text-decoration: none;
}

.cp-topcat__more:hover {
    text-decoration: underline;
}