/* Clockwise Insurance — Inner pages */

.pg-full {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* ===== PAGE HERO ===== */
.pg-hero {
    background: linear-gradient(135deg, #0a1628 0%, #0f2440 40%, #1a3a5c 70%, #1d4ed8 100%);
    color: #fff;
    padding: 3.25rem 0 3.75rem;
    position: relative;
    overflow: hidden;
}
.pg-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 85% 20%, rgba(59, 130, 246, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 10% 90%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.pg-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.pg-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.55);
}
.pg-breadcrumb a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-weight: 600;
}
.pg-breadcrumb a:hover { color: #fff; text-decoration: none; }
.pg-breadcrumb-sep { opacity: 0.45; font-size: 0.65rem; }
.pg-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.85rem;
}
.pg-hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
}
.pg-hero h1 {
    font-family: var(--cw-display);
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 0 0 0.85rem;
    max-width: 720px;
}
.pg-hero-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    max-width: 580px;
    margin: 0;
}

/* ===== PAGE BODY ===== */
.pg-body {
    padding: 3rem 0 4rem;
}
.pg-body-narrow {
    max-width: 800px;
    margin: 0 auto;
}
.pg-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}
.pg-section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cw-blue);
    margin-bottom: 0.55rem;
}
.pg-section-title {
    font-family: var(--cw-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--cw-navy);
    margin: 0 0 0.65rem;
    letter-spacing: -0.02em;
}
.pg-section-sub {
    font-size: 1rem;
    color: var(--cw-muted);
    margin: 0;
    line-height: 1.6;
}

/* ===== CARDS & PROSE ===== */
.pg-card {
    background: #fff;
    border: 1px solid var(--cw-border);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 1px 4px rgba(15, 36, 64, 0.04);
}
.pg-prose {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--cw-text);
}
.pg-prose h2, .pg-prose h3, .pg-prose h4 {
    font-family: var(--cw-display);
    color: var(--cw-navy);
    margin: 2rem 0 0.75rem;
    letter-spacing: -0.02em;
}
.pg-prose h2 { font-size: 1.45rem; }
.pg-prose h3 { font-size: 1.2rem; }
.pg-prose p { margin: 0 0 1.1rem; }
.pg-prose ul, .pg-prose ol { margin: 0 0 1.1rem; padding-left: 1.4rem; }
.pg-prose li { margin-bottom: 0.35rem; }
.pg-prose a { color: var(--cw-blue); font-weight: 600; }
.pg-prose img { max-width: 100%; border-radius: 12px; }

.pg-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cw-blue);
    text-decoration: none;
    margin-bottom: 1.25rem;
}
.pg-back-link:hover { text-decoration: none; gap: 0.55rem; }

/* ===== SERVICES GRID ===== */
.pg-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 992px) { .pg-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .pg-services-grid { grid-template-columns: 1fr; } }

.pg-service-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.75rem;
    border: 1px solid var(--cw-border);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}
.pg-service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent, #2563eb);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.pg-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(15, 36, 64, 0.1);
    border-color: transparent;
    text-decoration: none;
    color: inherit;
}
.pg-service-card:hover::after { transform: scaleX(1); }
.pg-service-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.15rem;
    background: var(--icon-bg, #dbeafe);
    color: var(--accent, #2563eb);
}
.pg-service-card h3 {
    margin: 0 0 0.55rem;
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--cw-navy);
}
.pg-service-card p {
    margin: 0 0 1.1rem;
    font-size: 0.88rem;
    color: var(--cw-muted);
    line-height: 1.55;
}
.pg-service-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent, #2563eb);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* ===== SERVICE DETAIL ===== */
.pg-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 900px) {
    .pg-detail-layout { grid-template-columns: 1fr; }
}
.pg-sidebar-card {
    background: linear-gradient(135deg, #0f2440, #2563eb);
    color: #fff;
    border-radius: 20px;
    padding: 2rem 1.75rem;
    position: sticky;
    top: 96px;
}
.pg-sidebar-card h3 {
    margin: 0 0 0.65rem;
    font-size: 1.15rem;
    font-weight: 800;
}
.pg-sidebar-card p {
    margin: 0 0 1.25rem;
    font-size: 0.88rem;
    opacity: 0.82;
    line-height: 1.55;
}
.pg-sidebar-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}
.pg-sidebar-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 0.55rem;
    opacity: 0.9;
}
.pg-sidebar-list i { color: #93c5fd; }

/* ===== CONTACT / QUOTE LAYOUT ===== */
.pg-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (max-width: 900px) {
    .pg-split { grid-template-columns: 1fr; }
}
.pg-info-stack { display: flex; flex-direction: column; gap: 1rem; }
.pg-info-card {
    background: #fff;
    border: 1px solid var(--cw-border);
    border-radius: 16px;
    padding: 1.35rem 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: box-shadow 0.2s;
}
.pg-info-card:hover { box-shadow: 0 8px 24px rgba(15, 36, 64, 0.07); }
.pg-info-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: #dbeafe;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.pg-info-icon.green { background: #dcfce7; color: #16a34a; }
.pg-info-icon.purple { background: #ede9fe; color: #7c3aed; }
.pg-info-card strong {
    display: block;
    font-size: 0.92rem;
    color: var(--cw-navy);
    margin-bottom: 0.2rem;
}
.pg-info-card p { margin: 0; font-size: 0.88rem; color: var(--cw-muted); }
.pg-info-card a { color: var(--cw-blue); font-weight: 600; text-decoration: none; }
.pg-info-card a:hover { text-decoration: underline; }

.pg-form-card {
    background: #fff;
    border: 1px solid var(--cw-border);
    border-radius: 20px;
    padding: 2rem 2rem 2.25rem;
    box-shadow: 0 12px 40px rgba(15, 36, 64, 0.06);
}
.pg-form-card h2 {
    font-family: var(--cw-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--cw-navy);
    margin: 0 0 0.35rem;
}
.pg-form-card .pg-form-sub {
    font-size: 0.88rem;
    color: var(--cw-muted);
    margin: 0 0 1.5rem;
}
.pg-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 576px) { .pg-form-row { grid-template-columns: 1fr; } }

.pg-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--cw-border);
}
.pg-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cw-muted);
    background: #f8fafc;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}
.pg-trust-pill i { color: var(--cw-blue); }

/* ===== FAQ ===== */
.pg-faq-category {
    margin-bottom: 2.5rem;
}
.pg-faq-category h2 {
    font-family: var(--cw-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--cw-navy);
    margin: 0 0 1rem;
    text-transform: capitalize;
}
.pg-faq-list { display: flex; flex-direction: column; gap: 0.65rem; }
.pg-faq-item {
    background: #fff;
    border: 1px solid var(--cw-border);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.pg-faq-item[open] {
    box-shadow: 0 8px 24px rgba(15, 36, 64, 0.06);
    border-color: rgba(37, 99, 235, 0.2);
}
.pg-faq-item summary {
    padding: 1.15rem 1.35rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--cw-navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.pg-faq-item summary::-webkit-details-marker { display: none; }
.pg-faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--cw-blue);
    transition: transform 0.2s;
    flex-shrink: 0;
}
.pg-faq-item[open] summary::after { transform: rotate(180deg); }
.pg-faq-answer {
    padding: 0 1.35rem 1.15rem;
    font-size: 0.9rem;
    color: var(--cw-muted);
    line-height: 1.65;
}

/* ===== TEAM ===== */
.pg-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 992px) { .pg-team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .pg-team-grid { grid-template-columns: 1fr; } }

.pg-team-card {
    background: #fff;
    border: 1px solid var(--cw-border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
}
.pg-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 36, 64, 0.08);
    border-color: transparent;
}
.pg-team-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.15rem;
    border: 4px solid #f1f5f9;
}
.pg-team-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 1.15rem;
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--cw-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--cw-blue);
    border: 4px solid #f1f5f9;
}
.pg-team-card h3 {
    margin: 0 0 0.25rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--cw-navy);
}
.pg-team-role {
    color: var(--cw-blue);
    font-weight: 700;
    font-size: 0.82rem;
    margin: 0 0 0.65rem;
}
.pg-team-bio {
    font-size: 0.85rem;
    color: var(--cw-muted);
    line-height: 1.55;
    margin: 0;
}

/* ===== BLOG ===== */
.pg-blog-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 2rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid var(--cw-border);
    border-radius: 14px;
}
.pg-blog-toolbar input,
.pg-blog-toolbar select {
    border: 1.5px solid var(--cw-border);
    border-radius: 10px;
    padding: 0.55rem 0.85rem;
    font: inherit;
    font-size: 0.88rem;
    flex: 1;
    min-width: 160px;
}
.pg-blog-toolbar input:focus,
.pg-blog-toolbar select:focus {
    outline: none;
    border-color: var(--cw-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.pg-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 992px) { .pg-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .pg-blog-grid { grid-template-columns: 1fr; } }

.pg-blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--cw-border);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.pg-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 36, 64, 0.1);
    text-decoration: none;
    color: inherit;
}
.pg-blog-thumb {
    height: 160px;
    background: linear-gradient(135deg, #dbeafe 0%, #ede9fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: #2563eb;
    opacity: 0.45;
}
.pg-blog-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 1; }
.pg-blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.pg-blog-meta {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--cw-blue);
    margin-bottom: 0.45rem;
}
.pg-blog-card h2 {
    margin: 0 0 0.55rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--cw-navy);
    line-height: 1.35;
}
.pg-blog-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--cw-muted);
    line-height: 1.55;
    flex: 1;
}
.pg-blog-read {
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--cw-blue);
}

.pg-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 0.85rem;
    color: var(--cw-muted);
    margin-bottom: 0.5rem;
}
.pg-article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.pg-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.25rem;
}
@media (max-width: 768px) { .pg-related-grid { grid-template-columns: 1fr; } }
.pg-related-card {
    background: #fff;
    border: 1px solid var(--cw-border);
    border-radius: 14px;
    padding: 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}
.pg-related-card:hover {
    border-color: var(--cw-blue);
    box-shadow: 0 8px 20px rgba(15, 36, 64, 0.06);
    text-decoration: none;
    color: inherit;
}
.pg-related-card strong {
    display: block;
    font-size: 0.92rem;
    color: var(--cw-navy);
    line-height: 1.35;
}

/* ===== THANK YOU ===== */
.pg-success {
    text-align: center;
    padding: 4rem 0 5rem;
}
.pg-success-card {
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--cw-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 48px rgba(15, 36, 64, 0.08);
}
.pg-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}
.pg-success-card h1 {
    font-family: var(--cw-display);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--cw-navy);
    margin: 0 0 0.65rem;
}
.pg-success-card p {
    color: var(--cw-muted);
    margin: 0 0 1.75rem;
    line-height: 1.6;
}
.pg-success-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CTA BANNER ===== */
.pg-cta {
    background: linear-gradient(135deg, #0f2440 0%, #2563eb 100%);
    color: #fff;
    padding: 3.5rem 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pg-cta::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 60%; height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.pg-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 580px;
    margin: 0 auto;
}
.pg-cta h2 {
    font-family: var(--cw-display);
    font-size: clamp(1.5rem, 3.5vw, 2.15rem);
    font-weight: 800;
    margin: 0 0 0.85rem;
    letter-spacing: -0.02em;
}
.pg-cta p {
    font-size: 1rem;
    opacity: 0.82;
    margin: 0 0 1.75rem;
    line-height: 1.6;
}
.pg-cta-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.pg-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.8rem 1.4rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.pg-btn-primary {
    background: #fff;
    color: var(--cw-navy);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.pg-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    color: var(--cw-navy);
}
.pg-btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.pg-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    text-decoration: none;
    color: #fff;
}

/* ===== PAGINATION ===== */
.pg-pagination {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}
.pg-pagination nav { display: flex; gap: 0.35rem; flex-wrap: wrap; justify-content: center; }
.pg-pagination .pagination {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.pg-pagination .pagination a,
.pg-pagination .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 0.65rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--cw-border);
    background: #fff;
    color: var(--cw-muted);
}
.pg-pagination .pagination a:hover {
    border-color: var(--cw-blue);
    color: var(--cw-blue);
    text-decoration: none;
}
.pg-pagination .pagination li.active span {
    background: var(--cw-blue);
    border-color: var(--cw-blue);
    color: #fff;
}

/* ===== FOOTER ===== */
.cw-footer {
    background: linear-gradient(180deg, #0a1628 0%, #0f2440 100%);
    color: rgba(255, 255, 255, 0.72);
    padding: 3.5rem 0 0;
    margin-top: 0;
}
.cw-footer-brand .cw-footer-logo-img {
    height: 56px;
    width: auto;
    display: block;
    margin-bottom: 0.75rem;
}
.cw-footer-tagline {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
}
.cw-footer-heading {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 1rem;
}
.cw-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.cw-footer-links li { margin-bottom: 0.55rem; }
.cw-footer-links a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.15s;
}
.cw-footer-links a:hover { color: #fff; text-decoration: none; }
.cw-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
    font-size: 0.88rem;
}
.cw-footer-contact-item i {
    color: #60a5fa;
    margin-top: 0.15rem;
    width: 16px;
    text-align: center;
}
.cw-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
@media (max-width: 992px) { .cw-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .cw-footer-grid { grid-template-columns: 1fr; } }
.cw-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
    font-size: 0.82rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.45);
}
.cw-footer-bottom a { color: rgba(255, 255, 255, 0.55); text-decoration: none; }
.cw-footer-bottom a:hover { color: #fff; }

.pg-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--cw-muted);
}
.pg-empty i {
    font-size: 2.5rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    display: block;
}
