/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=Montserrat:wght@400;700;800&display=swap');

/* --- 1. THE CANVAS --- */
.wsfr-wrapper {
    background-color: #f3f4f6; /* A slightly cooler gray for a modern feel */
    padding: 4rem 1rem;
    min-height: 100vh;
}

/* --- 2. THE CARD (Your "Digital Paper") --- */
.wp-block-group.wsfr-card {
    background-color: #ffffff;
    max-width: 52rem; /* Slightly narrower for better readability */
    margin: 0 auto;
    padding: 3.5rem; 
    border-radius: 12px; /* Softer corners */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

/* --- 3. TYPOGRAPHY (The "Human" Touch) --- */
.wsfr-card h1, .wsfr-card h2, .wsfr-card h3 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.025em; /* Tighter tracking looks more pro */
}

.wsfr-card p, .wsfr-card li {
    font-family: 'Lora', serif;
    color: #374151; /* Charcoal gray, not black */
    line-height: 1.8;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

/* The First Paragraph (Lead) */
.wsfr-lead {
    font-size: 1.35rem;
    color: #1f2937;
    font-style: italic;
    border-left: none;
    margin-bottom: 2.5rem;
}

/* --- 4. HEADERS --- */
.wsfr-header {
    text-align: center;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 2.5rem;
    margin-bottom: 3.5rem;
}

.wsfr-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 1rem;
}

h2.wsfr-red-heading {
    color: #8B252C;
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

/* --- 5. LISTS (Fixed!) --- */
ul.wsfr-list {
    padding-left: 1rem;
    margin-bottom: 2rem;
}

ul.wsfr-list li {
    list-style: none;
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

ul.wsfr-list li::before {
    content: "•";
    color: #8B252C; /* Red Bullet */
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.2rem;
}

/* --- 6. THE RED BUTTON (Forcing the Style) --- */
/* We target the link specifically to override theme defaults */
.wp-block-group.wsfr-cta-box .wp-block-button__link,
a.wsfr-button {
    background-color: #8B252C !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
    
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 0.9rem !important;
    letter-spacing: 1px;
    
    padding: 1rem 2.5rem !important;
    border-radius: 50px !important; /* Pill shape */
    transition: all 0.3s ease;
    display: inline-block;
}

.wp-block-group.wsfr-cta-box .wp-block-button__link:hover {
    background-color: #6b1c21 !important;
    transform: translateY(-2px); /* Subtle lift effect */
}

/* CTA Box Container */
.wp-block-group.wsfr-cta-box {
    background-color: #fafaf9;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 4rem;
    border: 1px solid #e7e5e4;
}