:root {
    --ast-global-color-0: #1d4ed8; /* primary blue */
    --ast-global-color-1: #3b82f6; /* lighter blue */
    --ast-global-color-2: #60a5fa; /* even lighter blue */
    --ast-global-color-3: #1e3a8a; /* deep blue for headings */
}

/* ========================= */
/* HERO SECTION */
/* ========================= */

.customizer-hero-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 20px;
    text-align: center;
    color: #fff;
}

.hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.hero-button {
    display: inline-block;
    background: #1e88e5;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.2s ease;
}

.hero-button:hover {
    background: #1565c0;
}


/* ========================= */
/* THIS WEEK'S MATCHES */
/* ========================= */

.week-matches-list {
    list-style: none;
    padding: 0;
}

.week-match-item {
    margin-bottom: 10px;
}

.week-match-date {
    opacity: 0.7;
    margin-left: 6px;
}


/* ========================= */
/* PEG HISTORY UPDATES */
/* ========================= */

.peg-updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.peg-update-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 8px;
}

.peg-update-title {
    margin-bottom: 8px;
}

.peg-update-meta {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.peg-update-match {
    font-size: 0.9rem;
    color: #1e88e5;
}


/* ========================= */
/* FISHERY SPOTLIGHT */
/* ========================= */

.fishery-spotlight-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 25px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.fishery-spotlight-title {
    margin-bottom: 10px;
}


/* ========================= */
/* LATEST MATCHES GRID */
/* ========================= */

.match-feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.match-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    transition: 0.2s ease;
}

.match-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.match-card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.match-card-meta {
    font-size: 0.95rem;
    color: #555;
}

.match-card-date {
    font-weight: 600;
}

.match-card-fishery {
    opacity: 0.8;
}
/* ============================================================
   MATCHANGLER UK — GLOBAL BRAND STYLING
   ============================================================ */

/* ---------------------------
   COLOUR SYSTEM
   --------------------------- */
:root {
    --ma-blue: #0a1a2a;          /* Deep Water Blue */
    --ma-blue-light: #1e88e5;
    --ma-blue-dark: #1565c0;
    --ma-grey: #e2e8f0;
    --ma-grey-dark: #555;
    --ma-white: #ffffff;
}

/* ---------------------------
   TYPOGRAPHY
   --------------------------- */
body {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    color: var(--ma-blue);
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--ma-blue);
    text-align: left;
}

/* ============================================================
   LAYOUT & CONTAINERS
   ============================================================ */

.homepage,
.match-single,
.peg-single,
.lake-single,
.fishery-single {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.homepage section {
    margin-bottom: 4rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */

a.hero-button,
button,
input[type="submit"],
.wp-block-button__link {
    background: var(--ma-blue-light);
    color: var(--ma-white);
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

a.hero-button:hover,
button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover {
    background: var(--ma-blue-dark);
    transform: translateY(-2px);
}

/* ============================================================
   CARDS (Matches, Peg Updates, Spotlight)
   ============================================================ */

.match-card,
.peg-update-card,
.fishery-spotlight-card {
    background: var(--ma-white);
    border: 1px solid var(--ma-grey);
    border-radius: 10px;
    padding: 20px;
    transition: 0.2s ease;
}

.match-card:hover,
.peg-update-card:hover,
.fishery-spotlight-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

/* ============================================================
   HERO SECTION (Customizer Background)
   ============================================================ */

.customizer-hero-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 20px;
    text-align: center;
    color: var(--ma-white);
}

.hero-title {
    font-size: 3.4rem;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 25px;
}

/* ============================================================
   LAKE & FISHERY LISTS
   ============================================================ */

.fishery-lakes-list,
.lake-pegs-list,
.lake-matches-list,
.fishery-matches-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fishery-lake-item,
.lake-peg-item,
.lake-match-item,
.fishery-match-item {
    background: var(--ma-white);
    border: 1px solid var(--ma-grey);
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: 0.2s ease;
}

.fishery-lake-item:hover,
.lake-peg-item:hover,
.lake-match-item:hover,
.fishery-match-item:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.fishery-lake-item a,
.lake-peg-item a,
.lake-match-item a,
.fishery-match-item a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ma-blue);
    text-decoration: none;
}

/* ============================================================
   RESPONSIVE MOBILE LAYOUT
   ============================================================ */

@media (max-width: 768px) {

    .homepage,
    .match-single,
    .peg-single,
    .lake-single,
    .fishery-single {
        padding: 1.2rem 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .match-feed-grid,
    .peg-updates-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .fishery-lake-item,
    .lake-peg-item,
    .lake-match-item,
    .fishery-match-item {
        padding: 12px 14px;
    }
}
/* ============================================================
   MATCHANGLER UK — GLOBAL BRAND STYLING
   ============================================================ */

/* ---------------------------
   COLOUR SYSTEM
   --------------------------- */
:root {
    --ma-blue: #0a1a2a;          /* Deep Water Blue */
    --ma-blue-light: #1e88e5;
    --ma-blue-dark: #1565c0;
    --ma-grey: #e2e8f0;
    --ma-grey-dark: #555;
    --ma-white: #ffffff;
}

/* ---------------------------
   TYPOGRAPHY
   --------------------------- */
body {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    color: var(--ma-blue);
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--ma-blue);
    text-align: left;
}

/* ============================================================
   LAYOUT & CONTAINERS
   ============================================================ */

.homepage,
.match-single,
.peg-single,
.lake-single,
.fishery-single {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.homepage section {
    margin-bottom: 4rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */

a.hero-button,
button,
input[type="submit"],
.wp-block-button__link {
    background: var(--ma-blue-light);
    color: var(--ma-white);
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

a.hero-button:hover,
button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover {
    background: var(--ma-blue-dark);
    transform: translateY(-2px);
}

/* ============================================================
   CARDS (Matches, Peg Updates, Spotlight)
   ============================================================ */

.match-card,
.peg-update-card,
.fishery-spotlight-card {
    background: var(--ma-white);
    border: 1px solid var(--ma-grey);
    border-radius: 10px;
    padding: 20px;
    transition: 0.2s ease;
}

.match-card:hover,
.peg-update-card:hover,
.fishery-spotlight-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

/* ============================================================
   HERO SECTION (Customizer Background)
   ============================================================ */

.customizer-hero-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 20px;
    text-align: center;
    color: var(--ma-white);
}

.hero-title {
    font-size: 3.4rem;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 25px;
}

/* ============================================================
   LAKE & FISHERY LISTS
   ============================================================ */

.fishery-lakes-list,
.lake-pegs-list,
.lake-matches-list,
.fishery-matches-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fishery-lake-item,
.lake-peg-item,
.lake-match-item,
.fishery-match-item {
    background: var(--ma-white);
    border: 1px solid var(--ma-grey);
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: 0.2s ease;
}

.fishery-lake-item:hover,
.lake-peg-item:hover,
.lake-match-item:hover,
.fishery-match-item:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.fishery-lake-item a,
.lake-peg-item a,
.lake-match-item a,
.fishery-match-item a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ma-blue);
    text-decoration: none;
}

/* ============================================================
   PEG HISTORY TABLE
   ============================================================ */

.peg-history-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.peg-history-table th,
.peg-history-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--ma-grey);
    text-align: left;
}

.peg-history-table th {
    background: var(--ma-blue);
    color: var(--ma-white);
    font-weight: 600;
}

.peg-history-table tr:hover {
    background: #f8fafc;
}

/* ============================================================
   RESPONSIVE MOBILE LAYOUT
   ============================================================ */

@media (max-width: 768px) {

    .homepage,
    .match-single,
    .peg-single,
    .lake-single,
    .fishery-single {
        padding: 1.2rem 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .match-feed-grid,
    .peg-updates-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .fishery-lake-item,
    .lake-peg-item,
    .lake-match-item,
    .fishery-match-item {
        padding: 12px 14px;
    }

    .peg-history-table th,
    .peg-history-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
}
/* ============================================================
   MATCHANGLER UK — GLOBAL BRAND STYLING
   ============================================================ */

/* ---------------------------
   COLOUR SYSTEM
   --------------------------- */
:root {
    --ma-blue: #0a1a2a;          /* Deep Water Blue */
    --ma-blue-light: #1e88e5;
    --ma-blue-dark: #1565c0;
    --ma-grey: #e2e8f0;
    --ma-grey-dark: #555;
    --ma-white: #ffffff;
    --ma-green: #2e7d32;         /* Winner highlight */
    --ma-gold: #d4af37;          /* 1st place */
    --ma-silver: #c0c0c0;        /* 2nd place */
    --ma-bronze: #cd7f32;        /* 3rd place */
}

/* ---------------------------
   TYPOGRAPHY
   --------------------------- */
body {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    color: var(--ma-blue);
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--ma-blue);
    text-align: left;
}

/* ============================================================
   LAYOUT & CONTAINERS
   ============================================================ */

.homepage,
.match-single,
.peg-single,
.lake-single,
.fishery-single {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.homepage section {
    margin-bottom: 4rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */

a.hero-button,
button,
input[type="submit"],
.wp-block-button__link {
    background: var(--ma-blue-light);
    color: var(--ma-white);
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

a.hero-button:hover,
button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover {
    background: var(--ma-blue-dark);
    transform: translateY(-2px);
}

/* ============================================================
   CARDS (Matches, Peg Updates, Spotlight)
   ============================================================ */

.match-card,
.peg-update-card,
.fishery-spotlight-card {
    background: var(--ma-white);
    border: 1px solid var(--ma-grey);
    border-radius: 10px;
    padding: 20px;
    transition: 0.2s ease;
}

.match-card:hover,
.peg-update-card:hover,
.fishery-spotlight-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

/* ============================================================
   HERO SECTION (Customizer Background)
   ============================================================ */

.customizer-hero-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 20px;
    text-align: center;
    color: var(--ma-white);
}

.hero-title {
    font-size: 3.4rem;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 25px;
}

/* ============================================================
   LAKE & FISHERY LISTS
   ============================================================ */

.fishery-lakes-list,
.lake-pegs-list,
.lake-matches-list,
.fishery-matches-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fishery-lake-item,
.lake-peg-item,
.lake-match-item,
.fishery-match-item {
    background: var(--ma-white);
    border: 1px solid var(--ma-grey);
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: 0.2s ease;
}

.fishery-lake-item:hover,
.lake-peg-item:hover,
.lake-match-item:hover,
.fishery-match-item:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.fishery-lake-item a,
.lake-peg-item a,
.lake-match-item a,
.fishery-match-item a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ma-blue);
    text-decoration: none;
}

/* ============================================================
   MATCH RESULTS TABLE (with winner highlighting)
   ============================================================ */

.match-results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.match-results-table th,
.match-results-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--ma-grey);
    text-align: left;
}

.match-results-table th {
    background: var(--ma-blue);
    color: var(--ma-white);
    font-weight: 600;
}

.match-results-table tr:hover {
    background: #f8fafc;
}

/* Winner highlighting */
.match-results-table tr.position-1 {
    background: var(--ma-gold) !important;
    color: #000;
    font-weight: 700;
}

.match-results-table tr.position-2 {
    background: var(--ma-silver) !important;
    color: #000;
}

.match-results-table tr.position-3 {
    background: var(--ma-bronze) !important;
    color: #000;
}

/* ============================================================
   PEG HISTORY TABLE
   ============================================================ */

.peg-history-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.peg-history-table th,
.peg-history-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--ma-grey);
    text-align: left;
}

.peg-history-table th {
    background: var(--ma-blue);
    color: var(--ma-white);
    font-weight: 600;
}

.peg-history-table tr:hover {
    background: #f8fafc;
}

/* ============================================================
   RESPONSIVE MOBILE LAYOUT
   ============================================================ */

@media (max-width: 768px) {

    .homepage,
    .match-single,
    .peg-single,
    .lake-single,
    .fishery-single {
        padding: 1.2rem 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .match-feed-grid,
    .peg-updates-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .fishery-lake-item,
    .lake-peg-item,
    .lake-match-item,
    .fishery-match-item {
        padding: 12px 14px;
    }

    .peg-history-table th,
    .peg-history-table td,
    .match-results-table th,
    .match-results-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
}
.match-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
}

.match-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
}

.match-title {
    font-size: 2rem;
    margin: 0 0 0.5rem;
}

.match-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    font-size: 0.95rem;
    color: #4a5568;
}

.match-meta-item strong {
    margin-right: 0.25rem;
}

.match-overall-winner {
    margin-bottom: 2rem;
}

.match-overall-winner h2,
.match-section-winners h2,
.match-results h2,
.match-gallery h2 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.match-overall-card {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 1.5rem;
    background: linear-gradient(135deg, #0b3a5c, #145a8d);
    color: #fff;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
}

.match-overall-main {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.match-overall-name .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
}

.match-overall-name strong {
    font-size: 1.4rem;
}

.match-overall-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.match-overall-weight {
    font-weight: 600;
}

.match-overall-photo img {
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    max-height: 220px;
    width: auto;
}

.match-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 2rem;
}

.match-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.match-table thead {
    background: #0b3a5c;
    color: #fff;
}

.match-table thead th {
    text-align: left;
    padding: 0.6rem 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.match-table tbody tr:nth-child(even) {
    background: #f7fafc;
}

.match-table tbody tr:nth-child(odd) {
    background: #ffffff;
}

.match-table tbody td {
    padding: 0.55rem 0.75rem;
    vertical-align: middle;
    border-bottom: 1px solid #e2e8f0;
}

.match-row-winner {
    background: #ebf8ff !important;
    box-shadow: inset 3px 0 0 #2b6cb0;
    font-weight: 600;
}

.match-row-winner td {
    border-bottom-color: #cbd5e0;
}

.match-thumb {
    border-radius: 4px;
}

.match-gallery {
    margin-top: 1rem;
}

.match-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.match-gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .match-overall-card {
        flex-direction: column;
    }

    .match-meta {
        flex-direction: column;
    }
}
/* Layout base */
.ma-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

/* Sticky nav */
.ma-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0b3a5c;
}

.ma-nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1.5rem;
}

.ma-logo img {
    max-height: 40px;
    width: auto;
}

.ma-logo-text a {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
}

.ma-nav-right {
    display: flex;
    gap: 1rem;
}

.ma-nav-right a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.95rem;
}

.ma-nav-right a:hover {
    color: #ffffff;
}

/* Hero */
.ma-hero {
    padding: 2.5rem 1.5rem 2rem;
}

.ma-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.ma-hero-text h1 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.ma-hero-text p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
}

.ma-hero-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Buttons */
.ma-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.ma-btn-primary {
    background: #0b3a5c;
    color: #fff;
    border: 1px solid #0b3a5c;
}

.ma-btn-primary:hover {
    background: #145a8d;
    border-color: #145a8d;
}

.ma-btn-outline {
    background: transparent;
    color: #0b3a5c;
    border: 1px solid #0b3a5c;
}

.ma-btn-outline:hover {
    background: #0b3a5c;
    color: #fff;
}

.ma-btn-light {
    background: #fff;
    color: #0b3a5c;
    border: 1px solid #fff;
}

.ma-btn-light:hover {
    background: #e2e8f0;
    border-color: #e2e8f0;
}

/* Hero image */
.ma-hero-image {
    position: relative;
    min-height: 220px;
}

.ma-hero-image-bg {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 260px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.ma-hero-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 260px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0b3a5c, #145a8d);
    color: #e2e8f0;
    font-size: 0.9rem;
}

/* Sections */
.ma-section-header {
    margin: 2rem 0 1rem;
}

.ma-section-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.ma-section-header p {
    color: #4a5568;
    font-size: 0.95rem;
}

/* Search fishery */
.ma-search-fishery {
    margin-top: 1rem;
}

.ma-search-form {
    display: flex;
    gap: 0.5rem;
    max-width: 600px;
}

.ma-search-form input[type="text"] {
    flex: 1;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    border: 1px solid #cbd5e0;
    font-size: 0.95rem;
}

.ma-search-form button {
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: none;
    background: #0b3a5c;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.ma-search-form button:hover {
    background: #145a8d;
}

/* Cards */
.ma-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}

.ma-card {
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding: 1rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ma-card-title {
    font-size: 1.05rem;
    margin: 0 0 0.25rem;
}

.ma-card-title a {
    text-decoration: none;
    color: #1a202c;
}

.ma-card-title a:hover {
    color: #0b3a5c;
}

.ma-card-meta {
    font-size: 0.9rem;
    color: #4a5568;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.ma-card-winner {
    margin-top: 0.35rem;
    font-size: 0.9rem;
    display: flex;
    gap: 0.4rem;
    align-items: baseline;
}

.ma-card-weight {
    font-weight: 600;
    color: #0b3a5c;
}

.ma-card-button {
    margin-top: 0.6rem;
    align-self: flex-start;
    display: inline-flex;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: #0b3a5c;
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
}

.ma-card-button:hover {
    background: #145a8d;
}

/* Features */
.ma-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}

.ma-feature-item {
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding: 1rem;
    background: #f7fafc;
}

.ma-feature-item h3 {
    margin-top: 0;
    margin-bottom: 0.35rem;
}

/* CTA strip */
.ma-cta-strip {
    margin-top: 2.5rem;
    background: #0b3a5c;
    color: #fff;
}

.ma-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ma-cta-text h2 {
    margin: 0 0 0.25rem;
}

.ma-cta-text p {
    margin: 0;
    font-size: 0.95rem;
}

/* Search page */
.ma-search-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
}

.ma-search-results-header h1 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.ma-empty {
    color: #4a5568;
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .ma-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .ma-nav-right {
        flex-wrap: wrap;
    }

    .ma-hero-inner {
        grid-template-columns: 1fr;
    }

    .ma-hero-image {
        order: -1;
    }

    .ma-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* Force Astra menu to horizontal */
.ast-header-break-point .ast-mobile-menu-buttons {
    display: none !important;
}

.ast-desktop .main-header-bar-navigation {
    display: flex !important;
    flex-direction: row !important;
}

.ast-desktop .main-header-menu {
    display: flex !important;
    flex-direction: row !important;
}
/* Remove Astra sidebar completely */
#secondary,
.ast-left-sidebar,
.ast-right-sidebar {
    display: none !important;
}

/* Force content full width */
#primary {
    width: 100% !important;
    max-width: 100% !important;
}

/* Force Astra menu to horizontal */
.ast-header-break-point .ast-mobile-menu-buttons {
    display: none !important;
}

.ast-desktop .main-header-bar-navigation {
    display: flex !important;
    flex-direction: row !important;
}

.ast-desktop .main-header-menu {
    display: flex !important;
    flex-direction: row !important;
}
/* === Match Angler UK Hero + Ad Layout === */

.ma-hero {
    background: #0b2b4a; /* Deep water blue */
    padding: 2rem 1.5rem;
    color: #ffffff;
}

.ma-hero-inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.ma-hero-left {
    position: relative;
    background: #0b2b4a;
    overflow: hidden;
    border-radius: 8px;
}

/* Hero image area */
.ma-hero-image {
    width: 100%;
    height: 260px;
    background-image: url('http://match-angler-uk.local/wp-content/uploads/2026/03/Match-angler-at-lake-cover-8.png');
    background-size: cover;
    background-position: center;
}

/* Text over/under hero image (adjust as you like) */
.ma-hero-text {
    padding: 1.5rem;
}

.ma-hero-text h1 {
    margin: 0 0 0.5rem;
    font-size: 2rem;
}

.ma-hero-text p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* Right-hand ad box */
.ma-hero-right {
    background: #0b2b4a;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

/* Rotating ad container */
.ma-ad-rotator {
    width: 100%;
    background: #14508a; /* Slightly lighter blue */
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    min-height: 180px; /* Height of the blue box */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Individual ad slides */
.ma-ad-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    color: #ffffff;
    padding: 1rem;
    text-align: center;
    font-size: 0.95rem;
}

/* Visible slide */
.ma-ad-slide.active {
    opacity: 1;
}

/* Mobile: stack hero + ad */
@media (max-width: 768px) {
    .ma-hero-inner {
        grid-template-columns: 1fr;
    }

    .ma-hero-image {
        height: 200px;
    }
}
/* === Match Angler UK Hero + Ad Layout === */

.ma-hero {
    background: #0b2b4a;
    padding: 2rem 1.5rem;
    color: #ffffff;
}

.ma-hero-inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.ma-hero-left {
    background: #0b2b4a;
    border-radius: 8px;
    overflow: hidden;
}

/* HERO IMAGE */
.ma-hero-image {
    width: 100%;
    height: 260px;
    background-image: url('PASTE-YOUR-HERO-IMAGE-URL-HERE');
    background-size: cover;
    background-position: center;
}

/* HERO TEXT */
.ma-hero-text {
    padding: 1.5rem;
}

.ma-hero-text h1 {
    margin: 0 0 0.5rem;
    font-size: 2rem;
}

.ma-hero-text p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* RIGHT-HAND AD BOX */
.ma-hero-right {
    background: #0b2b4a;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

/* ROTATING AD CONTAINER */
.ma-ad-rotator {
    width: 100%;
    background: #14508a;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* INDIVIDUAL AD SLIDES */
.ma-ad-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    color: #ffffff;
    padding: 1rem;
    text-align: center;
    font-size: 0.95rem;
}

/* VISIBLE SLIDE */
.ma-ad-slide.active {
    opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {
    .ma-hero-inner {
        grid-template-columns: 1fr;
    }

    .ma-hero-image {
        height: 200px;
    }
}
/* ========================= */
/* HERO BANNER */
/* ========================= */
.ma-hero-banner {
    background-image: url('http://match-angler-uk.local/wp-content/uploads/2026/03/Match-angler-at-lake-cover-8.png');
    background-size: cover;
    background-position: center;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.ma-hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.ma-hero-content {
    position: relative;
    z-index: 2;
}

.ma-hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.ma-hero-content p {
    font-size: 20px;
    margin-bottom: 20px;
}

.ma-hero-buttons .ma-btn {
    margin: 0 10px;
}

/* ========================= */
/* BUTTONS */
/* ========================= */
.ma-btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.ma-btn-primary {
    background: #1e3a8a;
    color: #fff;
}

.ma-btn-secondary {
    background: #fff;
    color: #1e3a8a;
}

/* ========================= */
/* LIVE MATCH FEED */
/* ========================= */
.ma-live-feed {
    background: #1e3a8a;
    color: #fff;
    padding: 10px 0;
}

.ma-live-feed-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.ma-feed-title {
    font-weight: bold;
}

.ma-feed-items {
    display: flex;
    gap: 40px;
    animation: slideFeed 20s linear infinite;
}

@keyframes slideFeed {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================= */
/* ROTATING AD PANEL */
/* ========================= */
.ma-ad-section {
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

.ma-ad-rotator {
    max-width: 1000px;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.ma-ad-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.ma-ad-slide.active {
    opacity: 1;
}

.ma-ad-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================= */
/* QUICK ACTION BUTTONS */
/* ========================= */
.ma-quick-actions {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 30px auto;
}

.ma-action-btn {
    background: #1e3a8a;
    color: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

/* ========================= */
/* SECTIONS */
/* ========================= */
.ma-section {
    max-width: 1200px;
    margin: 40px auto;
}

.ma-section h2 {
    margin-bottom: 20px;
}

/* ========================= */
/* CTA STRIP */
/* ========================= */
.ma-cta-strip {
    background: #1e3a8a;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.ma-cta-strip h2 {
    margin-bottom: 10px;
}
/* === Angler Dashboard – Page Layout === */

.page-id-675 .entry-title {
  display: none;
}

/* Main wrapper */
.page-id-675 .entry-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Hero section */
.page-id-675 .ma-angler-hero {
  background: #062b4f; /* deep water blue */
  color: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  margin-bottom: 40px;
}

.page-id-675 .ma-angler-hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.page-id-675 .ma-angler-hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0 0 24px;
}

/* Hero buttons */
.page-id-675 .ma-angler-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-id-675 .ma-angler-hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #0b3c73; /* dark blue buttons */
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.1s ease;
}

.page-id-675 .ma-angler-hero-actions a:hover {
  background: #0f4c90;
  transform: translateY(-1px);
}

/* Card grid */
.page-id-675 .ma-angler-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 28px;
  margin-bottom: 28px;
}

.page-id-675 .ma-angler-grid-secondary {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.5fr);
  gap: 28px;
}

/* Card base */
.page-id-675 .ma-angler-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(6, 43, 79, 0.06);
}

.page-id-675 .ma-angler-card h2 {
  font-size: 1.2rem;
  margin: 0 0 14px;
  font-weight: 700;
  color: #062b4f;
}

/* Stats list */
.page-id-675 .ma-angler-stats-list p {
  margin: 5px 0;
  font-size: 0.95rem;
}

/* Tables */
.page-id-675 .ma-angler-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.page-id-675 .ma-angler-table th,
.page-id-675 .ma-angler-table td {
  padding: 8px 6px;
  text-align: left;
}

.page-id-675 .ma-angler-table th {
  font-weight: 600;
  color: #062b4f;
}

.page-id-675 .ma-angler-table tr:nth-child(even) {
  background: #f7f9fc;
}

/* Recent sessions */
.page-id-675 .ma-angler-session {
  border-bottom: 1px solid #e3e7f0;
  padding: 12px 0;
  font-size: 0.9rem;
}

.page-id-675 .ma-angler-session:last-child {
  border-bottom: none;
}

/* Gallery */
.page-id-675 .ma-angler-gallery-empty {
  font-size: 0.9rem;
  color: #555;
}

/* Add new session card */
.page-id-675 .ma-angler-add-card {
  text-align: center;
}

.page-id-675 .ma-angler-add-card p {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.page-id-675 .ma-angler-add-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: #0b3c73;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, transform 0.1s ease;
}

.page-id-675 .ma-angler-add-card a:hover {
  background: #0f4c90;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 900px) {
  .page-id-675 .ma-angler-grid,
  .page-id-675 .ma-angler-grid-secondary {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-id-675 .ma-angler-hero {
    padding: 28px 20px;
  }
}
/* FORCE dashboard stats into a horizontal grid */
.angler-dashboard.angler-stats .angler-dashboard-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin-top: 20px !important;
}

/* Individual Stat Card */
.angler-stat-item {
    background: #ffffff !important;
    padding: 20px !important;
    border-radius: 10px !important;
    text-align: center !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
}

.angler-stat-label {
    display: block !important;
    font-size: 14px !important;
    color: #666 !important;
    margin-bottom: 8px !important;
}

.angler-stat-value {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #0a3d62 !important;
}

/* Responsive layout */
@media (max-width: 768px) {
    .angler-dashboard.angler-stats .angler-dashboard-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
/* --- 3 CARDS PER ROW --- */
.ma-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

/* Tablet */
@media (max-width: 1024px) {
    .ma-dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 700px) {
    .ma-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* --- CARD STYLE (ALL SECTIONS) --- */
.ma-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e5;
    width: 100%;
    box-sizing: border-box;
}

/* --- FIX ANGLER STATS (ONE CLEAN CARD) --- */
.angler-dashboard.angler-stats .angler-dashboard-grid {
    display: block;
}

.angler-stat-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    background: none;
    box-shadow: none;
}

.angler-stat-item:last-child {
    border-bottom: none;
}

.angler-stat-label {
    font-size: 15px;
    color: #6c7a89;
    text-transform: uppercase;
}

.angler-stat-value {
    font-size: 26px;
    font-weight: 700;
    color: #0a3d62;
}
/* Card header styling */
.ma-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #00436e; /* Deep Water Blue */
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e5e5;
}
/* Premium card styling */
.ma-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #d9e2ec;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
}

/* Hover effect */
.ma-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}
.ma-card p,
.ma-card div,
.ma-card span {
    line-height: 1.5;
    font-size: 16px;
    color: #2d3a45;
}
/* Stats rows */
.angler-stat-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
}

.angler-stat-item:last-child {
    border-bottom: none;
}

.angler-stat-label {
    font-size: 14px;
    color: #6c7a89;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.angler-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #00436e;
}
.ma-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}
/* Card background + border */
.ma-card {
    background: #f8fbff; /* very light blue tint */
    border: 1px solid #c9d9e8;
}

/* Header bar */
.ma-card h3 {
    background: #00436e;
    color: #ffffff;
    padding: 12px 16px;
    margin: -30px -30px 20px -30px;
    border-radius: 14px 14px 0 0;
    font-size: 18px;
}

/* Hover effect */
.ma-card:hover {
    background: #eef6ff;
    border-color: #00436e;
}
/* Hide default shortcode titles so only our card headers show */
.angler-dashboard h2,
.angler-dashboard h3,
.angler-dashboard-title {
    display: none !important;
}
/* Make the "Angler Dashboard" heading white */
.angler-dashboard-title,
.angler-dashboard h1,
.angler-dashboard h2 {
    color: #ffffff !important;
}
/* Make the "Angler Dashboard" page title white */
.page .entry-title {
    color: #ffffff !important;
}
/* GRID LAYOUT */
.ma-match-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

/* MATCH CARD */
.ma-match-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e5;
    transition: 0.25s ease;
}

.ma-match-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* CARD TITLE */
.ma-match-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    color: #003a63;
}

/* META INFO */
.ma-match-meta p,
.ma-match-winner p {
    margin: 4px 0;
    font-size: 14px;
    color: #333;
}

/* WINNER BOX */
.ma-match-winner {
    background: #f1f8ff;
    border-left: 3px solid #0074c7;
    padding: 10px 12px;
    margin: 12px 0;
    border-radius: 6px;
}

/* BUTTON */
.ma-match-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 16px;
    background: #00436e;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.25s ease;
}

.ma-match-btn:hover {
    background: #0060a3;
}
/* GRID LAYOUT */
.ma-match-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

/* CARD BASE */
.ma-match-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
}

.ma-match-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* TITLE */
.ma-match-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
}

/* META SECTION */
.ma-match-meta p {
    margin: 4px 0;
    font-size: 14px;
    color: #4b5563;
}

.ma-match-meta strong {
    color: #111827;
}

/* TOP 3 SECTION */
.ma-top-three {
    margin-top: 15px;
    padding: 12px 15px;
    background: #f0f6ff; /* soft blue tint */
    border-radius: 8px;
    border: 1px solid #dbeafe; /* light blue border */
}

.ma-top-three h4 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1e3a8a; /* deep blue */
}

.ma-top-three ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ma-top-three li {
    font-size: 14px;
    padding: 4px 0;
    display: flex;
    gap: 6px;
    align-items: center;
}

/* BLUE BRANDING FOR POSITIONS */
.ma-top-three li:nth-child(1) strong {
    color: #1d4ed8; /* primary blue */
}

.ma-top-three li:nth-child(2) strong {
    color: #3b82f6; /* lighter blue */
}

.ma-top-three li:nth-child(3) strong {
    color: #60a5fa; /* even lighter blue */
}

/* BUTTON */
.ma-match-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 16px;
    background: #2563eb;
    color: #fff !important;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.ma-match-btn:hover {
    background: #1e40af;
}
/* GRID LAYOUT */
.ma-match-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

/* CARD BASE */
.ma-match-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
}

.ma-match-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* TITLE */
.ma-match-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
}

/* META SECTION */
.ma-match-meta p {
    margin: 4px 0;
    font-size: 14px;
    color: #4b5563;
}

.ma-match-meta strong {
    color: #111827;
}

/* TOP 3 SECTION */
.ma-top-three {
    margin-top: 15px;
    padding: 12px 15px;
    background: #f0f6ff; /* soft blue tint */
    border-radius: 8px;
    border: 1px solid #dbeafe; /* light blue border */
}

.ma-top-three h4 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1e3a8a; /* deep blue */
}

.ma-top-three ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ma-top-three li {
    font-size: 14px;
    padding: 4px 0;
    display: flex;
    gap: 6px;
    align-items: center;
}

/* BLUE BRANDING FOR POSITIONS */
.ma-top-three li:nth-child(1) strong {
    color: #1d4ed8; /* primary blue */
}

.ma-top-three li:nth-child(2) strong {
    color: #3b82f6; /* lighter blue */
}

.ma-top-three li:nth-child(3) strong {
    color: #60a5fa; /* even lighter blue */
}

/* BUTTON */
.ma-match-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 16px;
    background: #2563eb;
    color: #fff !important;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.ma-match-btn:hover {
    background: #1e40af;
}
/* FORCE BLUE BRANDING */
.ma-top-three {
    background: #f0f6ff !important;
    border: 1px solid #dbeafe !important;
}

.ma-top-three h4 {
    color: #1e3a8a !important;
}

.ma-top-three li:nth-child(1) strong {
    color: #1d4ed8 !important;
}

.ma-top-three li:nth-child(2) strong {
    color: #3b82f6 !important;
}

.ma-top-three li:nth-child(3) strong {
    color: #60a5fa !important;
}

.ma-match-btn {
    background: #2563eb !important;
}

.ma-match-btn:hover {
    background: #1e40af !important;
}
/* FORCE OUR STYLING TO OVERRIDE ASTRA */
.ma-match-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 20px !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
}

.ma-top-three {
    background: #f0f6ff !important;
    border: 1px solid #dbeafe !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
}

.ma-top-three h4 {
    color: #1e3a8a !important;
}

.ma-top-three li:nth-child(1) strong {
    color: #1d4ed8 !important;
}

.ma-top-three li:nth-child(2) strong {
    color: #3b82f6 !important;
}

.ma-top-three li:nth-child(3) strong {
    color: #60a5fa !important;
}

.ma-match-btn {
    background: #2563eb !important;
    color: #fff !important;
}

.ma-match-btn:hover {
    background: #1e40af !important;
}
/* FORCE OUR CARD STYLING */
.ma-match-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 20px !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
}

/* FORCE TOP 3 BOX */
.ma-top-three {
    background: #f0f6ff !important;
    border: 1px solid #dbeafe !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
}

.ma-top-three h4 {
    color: #1e3a8a !important;
}

.ma-top-three li:nth-child(1) strong {
    color: #1d4ed8 !important;
}

.ma-top-three li:nth-child(2) strong {
    color: #3b82f6 !important;
}

.ma-top-three li:nth-child(3) strong {
    color: #60a5fa !important;
}

/* FORCE BUTTON */
.ma-match-btn {
    background: #2563eb !important;
    color: #fff !important;
}

.ma-match-btn:hover {
    background: #1e40af !important;
}
/* ----------------------------------------------------------
   MATCH RESULTS GRID LAYOUT
----------------------------------------------------------- */

.ma-match-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

/* ----------------------------------------------------------
   MATCH CARD STYLING
----------------------------------------------------------- */

.ma-match-card {
    background: #ffffff;
    border: 1px solid #d9e2ec;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
}

.ma-match-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* ----------------------------------------------------------
   MATCH TITLE + DATE
----------------------------------------------------------- */

.ma-match-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    color: #0a3d62;
}

.ma-match-card .ma-date {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 12px;
}

/* ----------------------------------------------------------
   FISHERY NAME
----------------------------------------------------------- */

.ma-fishery {
    font-size: 16px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 18px;
}

/* ----------------------------------------------------------
   TOP 3 BOX
----------------------------------------------------------- */

.ma-top-three {
    background: #e8f1ff;
    border-left: 4px solid #1e3a8a;
    padding: 15px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.ma-top-three h4 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1e3a8a;
}

.ma-top-three ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ma-top-three li {
    font-size: 15px;
    padding: 4px 0;
    color: #2d3748;
}

/* ----------------------------------------------------------
   VIEW RESULTS BUTTON
----------------------------------------------------------- */

.ma-match-btn {
    display: inline-block;
    background: #1e3a8a;
    color: #ffffff !important;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease;
}

.ma-match-btn:hover {
    background: #16306d;
}

/* ----------------------------------------------------------
   RESPONSIVE TWEAKS
----------------------------------------------------------- */

@media (max-width: 480px) {
    .ma-match-card {
        padding: 18px;
    }

    .ma-match-card h3 {
        font-size: 20px;
    }
}
body.home .main-header-bar,
body.home .ast-desktop-header-content,
body.home .ast-mobile-header-wrap {
    display: none !important;
}
/* REMOVE ASTRA HEADER & FOOTER */
.site-header,
.main-header-bar,
.ast-header-break-point,
header.ast-primary-header,
.site-footer {
    display: none !important;
}

/* REMOVE ASTRA SIDEBAR */
#secondary,
.sidebar-main,
.ast-left-sidebar,
.ast-right-sidebar {
    display: none !important;
}

/* FORCE FULL WIDTH */
.ast-container,
.site-content .ast-container,
#primary,
.content-area {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* GLOBAL DASHBOARD BACKGROUND */
body,
.site-content {
    background: radial-gradient(circle at top, #e6f2ff 0, #f1f5f9 40%, #e5e7eb 100%) !important;
    font-family: system-ui, sans-serif;
    color: #0f172a;
}

/* DASHBOARD HEADER BAR */
.mauk-dashboard-bar {
    width: 100%;
    background: linear-gradient(135deg, #1a4f8a 0%, #0f3a6a 100%);
    padding: 26px 0;
    text-align: center;
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

/* BACK BUTTON */
.mauk-back-btn {
    display: inline-block;
    margin: 25px 0 0 25px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #ffffff;
    color: #0f172a !important;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(0,0,0,0.18);
}
.mauk-back-btn:hover {
    background: #f3f4f6;
}

/* CARD WRAPPER */
.mauk-card {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* ACF FIELD CLEANUP */
.acf-field {
    padding: 20px !important;
    border-bottom: 1px solid #e5e7eb !important;
}
.acf-label label {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}
.acf-input input,
.acf-input select,
.acf-input textarea {
    border-radius: 8px !important;
    padding: 10px !important;
    border: 1px solid #cbd5e1 !important;
    font-size: 16px !important;
}

/* SUBMIT BUTTON */
.acf-form-submit input[type="submit"] {
    background: #1a4f8a !important;
    color: #ffffff !important;
    padding: 14px 28px !important;
    border-radius: 999px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer;
    margin: 20px auto !important;
    display: block !important;
}
.acf-form-submit input[type="submit"]:hover {
    background: #0f3a6a !important;
}