/*
Theme Name: 穗江劳动律师模板
Theme URI: https://www.51wqw.com/
Description: 基于李现益律师网站设计的专业劳动法律师WordPress主题，支持完整后台配置
Version: 1.0.0
Author: 穗江律所
Author URI: https://www.51wqw.com/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: suijiang-lawyer
Tags: lawyer, attorney, business, one-column, custom-menu, custom-logo, featured-images, translation-ready
*/

/* ============================================
   CSS Variables & Tailwind Integration
   ============================================ */
:root {
    --primary: #0F4C81;
    --secondary: #2A70B9;
    --accent: #F5A623;
    --neutral: #F5F7FA;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --success: #10B981;
}

/* ============================================
   Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #F9FAFB;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ============================================
   Color Utilities
   ============================================ */
.text-primary { color: var(--primary); }
.bg-primary { background-color: var(--primary); }
.text-secondary { color: var(--secondary); }
.bg-secondary { background-color: var(--secondary); }
.text-accent { color: var(--accent); }
.bg-accent { background-color: var(--accent); }
.text-white { color: #fff; }
.bg-white { background-color: #fff; }
.bg-neutral { background-color: var(--neutral); }
.bg-gray-50 { background-color: #F9FAFB; }
.bg-gray-900 { background-color: #111827; }
.text-gray-400 { color: #9CA3AF; }
.text-gray-500 { color: #6B7280; }
.text-gray-600 { color: #4B5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1F2937; }
.bg-green-50 { background-color: #ECFDF5; }
.bg-green-500 { background-color: #10B981; }
.bg-blue-50 { background-color: #EFF6FF; }

/* ============================================
   Typography
   ============================================ */
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }

.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-mono { font-family: ui-monospace, monospace; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.leading-relaxed { line-height: 1.625; }
.underline { text-decoration: underline; }
.uppercase { text-transform: uppercase; }

/* ============================================
   Spacing Utilities
   ============================================ */
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pt-6 { padding-top: 1.5rem; }
.p-6 { padding: 1.5rem; }
.p-5 { padding: 1.25rem; }
.p-4 { padding: 1rem; }
.p-3 { padding: 0.75rem; }
.p-8 { padding: 2rem; }
.pr-4 { padding-right: 1rem; }
.pl-6 { padding-left: 1.5rem; }
.pl-4 { padding-left: 1rem; }
.pr-8 { padding-right: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-auto { margin-left: auto; }
.mr-2 { margin-right: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }

/* ============================================
   Flexbox & Grid
   ============================================ */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }

.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ============================================
   Sizing
   ============================================ */
.w-full { width: 100%; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-48 { width: 12rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.min-h-screen { min-height: 100vh; }

/* ============================================
   Border & Shadow
   ============================================ */
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.border { border-width: 1px; }
.border-4 { border-width: 4px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-white { border-color: #fff; }
.border-gray-200 { border-color: #E5E7EB; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

.overflow-hidden { overflow: hidden; }

/* ============================================
   Position & Z-Index
   ============================================ */
.relative { position: relative; }
.fixed { position: fixed; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.bottom-8 { bottom: 2rem; }
.left-8 { left: 2rem; }
.right-8 { right: 2rem; }
.z-50 { z-index: 50; }

/* ============================================
   Interactive States
   ============================================ */
.opacity-0 { opacity: 0; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.invisible { visibility: hidden; }
.pointer-events-none { pointer-events: none; }

.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:text-white:hover { color: #fff; }
.hover\:text-primary:hover { color: var(--primary); }
.hover\:bg-blue-100:hover { background-color: #DBEAFE; }
.hover\:bg-gray-50:hover { background-color: #F9FAFB; }
.hover\:bg-secondary:hover { background-color: var(--secondary); }
.hover\:bg-opacity-90:hover { opacity: 0.9; }

.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }
.transition-opacity { transition: opacity 0.3s ease; }

/* ============================================
   Custom Utilities
   ============================================ */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ============================================
   Gradient Backgrounds
   ============================================ */
.bg-gradient-to-r {
    background: linear-gradient(to right, var(--from), var(--to));
}
.from-primary { --from: var(--primary); }
.to-secondary { --to: var(--secondary); }

/* ============================================
   Archive Header (分类页头部)
   ============================================ */
.archive-header {
    background: linear-gradient(135deg, #0D1B2A 0%, #1B3A5C 50%, #0F4C81 100%);
    position: relative;
    overflow: hidden;
}

.archive-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.archive-header .text-3xl,
.archive-header .md\:text-4xl {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}

/* ============================================
   Responsive Breakpoints
   ============================================ */
@media (min-width: 768px) {
    .md\:w-1\/3 { width: 33.333333%; }
    .md\:w-2\/3 { width: 66.666667%; }
    .md\:flex-row { flex-direction: row; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:text-2xl { font-size: 1.5rem; }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-xl { font-size: 1.25rem; }
    .md\:mb-0 { margin-bottom: 0; }
    .md\:space-x-6 > * + * { margin-left: 1.5rem; }
    .md\:hidden { display: none; }
    .md\:flex { display: flex; }
    .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
    .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
}

@media (max-width: 767px) {
    .md\:flex { display: none; }
    .hidden\.md\:flex { display: flex; }
}

/* ============================================
   Component: Header
   ============================================ */
.site-header {
    background: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 50;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.site-header nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.site-header nav a {
    color: var(--text-gray);
    font-size: 1rem;
}

.site-header nav a:hover {
    color: var(--primary);
}

/* ============================================
   Component: Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--secondary);
    color: #fff;
}

.btn-accent {
    background: var(--accent);
    color: #fff;
}

.btn-accent:hover {
    opacity: 0.9;
}

.btn-white {
    background: #fff;
    color: var(--primary);
}

.btn-white:hover {
    opacity: 0.9;
}

/* ============================================
   Component: Section
   ============================================ */
.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }

/* ============================================
   Component: Service Card
   ============================================ */
.service-card {
    background: var(--neutral);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.service-card li i {
    color: var(--primary);
    margin-top: 0.25rem;
}

/* ============================================
   Component: Case Card
   ============================================ */
.case-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.case-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: #ECFDF5;
    border-bottom: 1px solid #E5E7EB;
}

.case-card-header .badge-success {
    background: var(--success);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-weight: 700;
}

.case-card-header .case-date {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.case-card-header .case-amount {
    margin-left: auto;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--success);
}

.case-card-body {
    padding: 1.5rem;
}

.case-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.case-card p {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.625;
}

.case-card-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}

.case-card-stats .stat-item {
    background: #F9FAFB;
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.case-card-stats .stat-label {
    color: var(--text-gray);
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.case-card-stats .stat-value {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.875rem;
}

/* ============================================
   Component: FAQ
   ============================================ */
.faq-item {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: none;
    background: transparent;
}

.faq-toggle:hover {
    background: #F9FAFB;
}

.faq-toggle h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    padding-right: 1rem;
}

.faq-toggle i {
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-answer.show {
    display: block;
}

/* ============================================
   Component: Contact Card
   ============================================ */
.contact-card {
    background: #fff;
    color: var(--text-dark);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(15, 76, 129, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.875rem;
    color: var(--primary);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-card p {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.contact-info {
    background: #F3F4F6;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    font-family: ui-monospace, monospace;
    font-size: 1.125rem;
    font-weight: 500;
}

/* ============================================
   Component: Stats Grid
   ============================================ */
.stats-card {
    background: var(--neutral);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(15, 76, 129, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stats-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.stats-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stats-label {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* ============================================
   Component: Footer
   ============================================ */
.site-footer {
    background: #111827;
    color: #fff;
    padding: 2.5rem 0;
}

.site-footer h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.site-footer p {
    color: #9CA3AF;
    margin-bottom: 0.25rem;
}

.site-footer a {
    color: #9CA3AF;
}

.site-footer a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.footer-social a {
    color: #9CA3AF;
    font-size: 1.25rem;
}

.footer-social a:hover {
    color: #fff;
}

.footer-copyright {
    color: #6B7280;
    font-size: 0.875rem;
}

/* ============================================
   Component: Back to Top
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary);
    color: #fff;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary);
}

/* ============================================
   Component: Floating CTA
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: var(--accent);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
}

.floating-cta:hover {
    opacity: 0.9;
}

.floating-cta .cta-text {
    font-size: 0.875rem;
    font-weight: 500;
}

/* ============================================
   Component: Share Section (文章分享)
   ============================================ */
.share-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.share-btn {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-weibo {
    background: linear-gradient(135deg, #E6162D 0%, #FF6600 100%);
}

.share-weibo:hover {
    background: linear-gradient(135deg, #FF3344 0%, #FF8844 100%);
}

.share-weixin {
    background: linear-gradient(135deg, #07C160 0%, #06AD56 100%);
}

.share-weixin:hover {
    background: linear-gradient(135deg, #0FD470 0%, #0FBF65 100%);
}

.share-qq {
    background: linear-gradient(135deg, #1296DB 0%, #0D7ED3 100%);
}

.share-qq:hover {
    background: linear-gradient(135deg, #20A8ED 0%, #1D8FE5 100%);
}

.share-link {
    background: linear-gradient(135deg, #6B7280 0%, #4B5563 100%);
}

.share-link:hover {
    background: linear-gradient(135deg, #9CA3AF 0%, #6B7280 100%);
}

/* ============================================
   Component: Image Placeholder
   ============================================ */
.profile-image {
    width: 12rem;
    height: 12rem;
    border-radius: 9999px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Accessibility
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .site-header,
    .back-to-top,
    .floating-cta {
        display: none !important;
    }
}
