/*
Theme Name: Drivly
Theme URI: https://drivly.blog
Author: Drivly Team
Author URI: https://drivly.blog
Description: A modern WordPress theme for UK approved driving instructors. Drivly serves as a comprehensive hub of resources, tools, and information for driving instructors across the UK.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: drivly
Tags: blog, education, driving-instructors, resources, modern, clean
*/

/* ============================================
   Satoshi Font Face Declarations
   ============================================ */

@font-face {
    font-family: 'Satoshi';
    src: url('fonts/Satoshi-Light.otf') format('otf'),
         url('fonts/Satoshi-Light.otf') format('otf');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('fonts/Satoshi-Regular.otf') format('otf'),
         url('fonts/Satoshi-Regular.otf') format('otf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('fonts/Satoshi-Medium.otf') format('otf'),
         url('fonts/Satoshi-Medium.otf') format('otf');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('fonts/Satoshi-Bold.otf') format('otf'),
         url('fonts/Satoshi-Bold.otf') format('otf');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('fonts/Satoshi-Black.otf') format('otf'),
         url('fonts/Satoshi-Black.otf') format('otf');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   Reset & Base Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #192649;
    --primary-teal: #4EC3B2;
    --primary-blue: #0000FF;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-teal);
}

/* ============================================
   Layout
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
    padding: 2rem 0;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    background-image: url('images/driving-drivly.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 3rem;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 38, 73, 0.85) 0%, rgba(0, 0, 255, 0.6) 100%);
    border-radius: 30px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-hero {
    background-color: var(--primary-teal);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 195, 178, 0.4);
}

.btn-hero:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 255, 0.5);
    color: var(--white);
}

/* ============================================
   Featured Articles Section
   ============================================ */

.featured-articles {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-dark);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.featured-article {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.featured-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-article:hover .featured-image img {
    transform: scale(1.05);
}

.featured-content {
    padding: 1.5rem;
}

.featured-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.featured-title a {
    color: var(--primary-dark);
    transition: color 0.3s ease;
}

.featured-title a:hover {
    color: var(--primary-blue);
}

.featured-meta {
    font-size: 0.9rem;
    color: var(--text-light);
}

.featured-meta time {
    color: var(--text-light);
}

/* ============================================
   Header Styles
   ============================================ */

.site-header {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.site-title a {
    color: var(--white);
    text-decoration: none;
}

.site-title a:hover {
    color: var(--primary-teal);
}

.site-description {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
    margin-top: 0.25rem;
}

/* ============================================
   Navigation
   ============================================ */

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--primary-teal);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
}

/* ============================================
   Content Area
   ============================================ */

.content-area {
    width: 100%;
}

.post {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.post:last-child {
    border-bottom: none;
}

.entry-header {
    margin-bottom: 1.5rem;
}

.entry-title {
    margin-bottom: 0.5rem;
}

.entry-title a {
    color: var(--primary-dark);
}

.entry-title a:hover {
    color: var(--primary-blue);
}

.entry-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.entry-meta span {
    margin-right: 1rem;
}

.entry-content {
    margin-bottom: 1rem;
}

.entry-content p {
    margin-bottom: 1rem;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    display: block;
}

.entry-content iframe,
.entry-content video,
.entry-content embed {
    max-width: 100%;
    height: auto;
}

.read-more {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 600;
    margin-top: 1rem;
}

.read-more:hover {
    color: var(--primary-teal);
}

/* ============================================
   Single Post Styles
   ============================================ */

.single-post .entry-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.single-post .entry-content {
    max-width: 800px;
    margin: 0 auto;
}

.single-post .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* ============================================
   Sidebar
   ============================================ */

.sidebar {
    width: 100%;
    margin-top: 2rem;
}

.widget {
    background: var(--bg-light);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    border-bottom: 2px solid var(--primary-teal);
    padding-bottom: 0.5rem;
}

.widget ul {
    list-style: none;
}

.widget li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.widget li:last-child {
    border-bottom: none;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    text-align: center;
}

.site-footer a {
    color: var(--primary-teal);
}

.site-footer a:hover {
    color: var(--white);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background-color: var(--primary-teal);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--primary-teal);
}

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

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet and below (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .site-content {
        padding: 1.5rem 0;
    }
    
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }
    h3 { font-size: 1.625rem; }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .featured-grid {
        gap: 1.5rem;
    }
}

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation ul {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
        gap: 0;
    }
    
    .main-navigation ul.active {
        display: flex;
    }
    
    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-navigation a {
        display: block;
        padding: 1rem 0;
    }
    
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    
    .post {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .entry-content img {
        max-width: 100%;
        height: auto;
    }
    
    .widget {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .hero-section {
        min-height: 400px;
        border-radius: 20px;
        margin-bottom: 2rem;
    }
    
    .hero-section::before {
        border-radius: 20px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .btn-hero {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .featured-image {
        height: 200px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .site-header {
        padding: 0.75rem 0;
    }
    
    .site-title {
        font-size: 1.25rem;
    }
    
    .site-description {
        font-size: 0.85rem;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.125rem; }
    h5 { font-size: 1rem; }
    
    .site-content {
        padding: 1rem 0;
    }
    
    .post {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .entry-header {
        margin-bottom: 1rem;
    }
    
    .entry-meta {
        font-size: 0.85rem;
        display: flex;
        flex-wrap: wrap;
    }
    
    .entry-meta span {
        margin-right: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .post-thumbnail {
        margin-bottom: 1rem;
    }
    
    .widget {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .widget-title {
        font-size: 1.125rem;
    }
    
    .site-footer {
        padding: 1.5rem 0;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    .hero-section {
        min-height: 350px;
        border-radius: 15px;
        margin-bottom: 1.5rem;
    }
    
    .hero-section::before {
        border-radius: 15px;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-hero {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: auto;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-image {
        height: 200px;
    }
    
    .featured-content {
        padding: 1.25rem;
    }
    
    .featured-title {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .single-post .entry-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .page-header {
        margin-bottom: 1.5rem;
    }
}

/* Small Mobile (max-width: 320px) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1.125rem; }
    
    .site-title {
        font-size: 1.125rem;
    }
    
    body {
        font-size: 15px;
    }
    
    .hero-section {
        min-height: 300px;
        border-radius: 12px;
    }
    
    .hero-section::before {
        border-radius: 12px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn-hero {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Desktop Large (min-width: 1400px) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
}

/* ============================================
   Utilities
   ============================================ */

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ================================
   Front Page Sections – Drivly
   ================================ */

/* General section spacing */
.intro-section,
.what-you-find,
.email-signup,
.featured-articles,
.content-area {
    padding-block: 3rem;
}

/* Keep section titles consistent with hero heading style */
.section-title {
    font-size: clamp(1.6rem, 1.1rem + 1vw, 2rem);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

/* ---------- INTRO SECTION ---------- */

.intro-section {
    background: #65dac8; /* dark, hero-like feel – change if your hero is light */
    color: #e5e7eb;
	border-radius: 15px 15px 0px 0px;
}

.intro-inner {
    max-width: 800px;
    margin: 0 auto;
    padding-inline: 1.5rem;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000000;
    margin: 0;
}

/* ---------- WHAT YOU'LL FIND SECTION ---------- */

.what-you-find {
    background: #192649;
    color: #e5e7eb;
	padding: 11rem;
}

.what-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding-inline: 1.5rem;
}

/* Remove default UL styles */
.features-list {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* On larger screens, show as 3 cards */
@media (min-width: 768px) {
    .features-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.feature-item {
    background: radial-gradient(circle at top left, rgba(101, 218, 200, 0.2), transparent 55%);
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 1.25rem;
    padding: 1.6rem 1.4rem;
    font-size: 0.95rem;
    line-height: 1.6;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.65);
}

.feature-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* ---------- EMAIL SIGNUP SECTION ---------- */

.email-signup {
    background: antiquewhite;
    color: #e5e7eb;
	padding: 11rem;
}

.signup-inner {
    max-width: 700px;
    margin: 0 auto;
    padding-inline: 1.5rem;
    text-align: center;
}

.signup-subtitle {
    margin-top: 0.5rem;
    margin-bottom: 1.75rem;
    font-size: 0.97rem;
    color: #505050;
}

/* Form layout */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
}

.signup-input {
    padding: 0.85rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    background-color: rgba(15, 23, 42, 0.95);
    color: #e5e7eb;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.signup-input::placeholder {
    color: #64748b;
}

.signup-input:focus {
    border-color: #65dac8;
    box-shadow: 0 0 0 1px #65dac8;
    background-color: #020617;
}

.signup-button {
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, #65dac8, #38bdf8);
    color: #020617;
    box-shadow: 0 16px 35px rgba(8, 47, 73, 0.7);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.2s ease;
}

.signup-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 45px rgba(8, 47, 73, 0.9);
    filter: brightness(1.05);
}

.signup-button:active {
    transform: translateY(0);
    box-shadow: 0 10px 25px rgba(8, 47, 73, 0.7);
}

/* On wider screens, align input + button inline */
@media (min-width: 640px) {
    .signup-form {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .signup-input {
        flex: 1 1 auto;
    }

    .signup-button {
        flex: 0 0 auto;
        margin-left: 0.75rem;
        white-space: nowrap;
    }
}

/* ---------- Featured Articles & Latest Articles tweaks ---------- */

.featured-articles {
    background: #020617;
}

.featured-articles .section-title,
.content-area .section-title {
    margin-bottom: 2rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

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


.home .content-area {
    display: none !important;
}
.featured-article {
    background: #020617;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(30, 64, 175, 0.4);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.featured-image img {
    display: block;
    width: 100%;
    height: auto;
}

.featured-content {
    padding: 1.3rem 1.3rem 1.5rem;
}

.featured-title a {
    color: #e5e7eb;
    text-decoration: none;
}

.featured-title a:hover {
    text-decoration: underline;
}

.featured-meta time {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3af;
}

/* Latest posts area – give it some breathing room and a card feel */
.content-area {
    max-width: 900px;
    margin: 0 auto;
    padding-inline: 1.5rem;
}

.post {
    background: #020617;
    border-radius: 1.25rem;
    padding: 1.5rem 1.4rem 1.8rem;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(30, 64, 175, 0.4);
}

.entry-title {
    margin-bottom: 0.5rem;
    color: #f1f1f1;
}
.entry-title a {
    color: #e5e7eb;
    text-decoration: none;
}

.entry-title a:hover {
    text-decoration: underline;
}

.entry-meta {
    margin-top: 0.4rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

.entry-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #d1d5db;
}

.read-more {
    display: inline-flex;
    align-items: center;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #65dac8;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}
/* Newsletter Signup Form Styling */
.drivly-newsletter-signup,
.newsletter-signup,
.mc4wp-form {
    background: #f7f9fc;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    border-left: 4px solid #2563EB;
}

.newsletter-signup h3,
.mc4wp-form h3 {
    margin-top: 0;
    color: #1e293b;
    font-size: 24px;
}

.newsletter-signup p {
    color: cadetblue;
}

.mc4wp-form input[type="email"],
.mc4wp-form input[type="text"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 16px;
}

.mc4wp-form input[type="submit"],
.mc4wp-form button[type="submit"] {
    background: #2563EB;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.mc4wp-form input[type="submit"]:hover,
.mc4wp-form button[type="submit"]:hover {
    background: #1d4ed8;
}

.privacy-note {
    font-size: 14px;
    color: #64748b;
    margin-top: 15px;
}

h3.wp-block-heading {
    color: #e6e6e6;
}
\


.quiz_section.mlw_qmn_new_question {
	color: black;
	}
/* Mobile responsive */
@media (max-width: 768px) {
    .drivly-newsletter-signup,
    .newsletter-signup,
    .mc4wp-form {
        padding: 20px;
        margin: 30px 0;
    }
}

.entry-content p {
    color: #333;
	font-size: 1.1rem;
}
.post {
    background: #fff;
}

.entry-title {
    color: #000;
}

h3.wp-block-heading {
    color: #4d4d4d;
}

ul.wp-block-list {
    color: black;
}

form#quizForm1 {
    color: black;
}

.qsm-results-page {
    color: black;
}

article.featured-article.post-31.post.type-post.status-publish.format-standard.hentry.category-uncategorized {
    background: blue;
}

section.quiz-section {
    padding: 2rem;
    background: antiquewhite;
}

/* Tablet and smaller (max-width 1024px) */
@media (max-width: 1024px) {
    .email-signup {
        padding: 1rem;
    }
	.what-you-find {
    padding: 1rem;
	}
	
	.signup-inner {
    padding: 0rem;
	}

}

.what-inner h2 {
    color: white;
	margin-bottom: 4rem;
}