/*
 Theme Name: MotiveAlpha
 Theme URI: https://motivealpha.com
 Author: Your Name
 Author URI: https://motivealpha.com
 Description: Custom MotiveAlpha theme for men's self-improvement blog.
 Version: 1.0
 License: GNU General Public License v2 or later
 License URI: https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: motivealpha
*/

/* =========
   MOTIVEALPHA – HERO ONLY
   ========= */

/* MOTIVEALPHA BRAND IDENTITY 2026 */

/* LOCAL FONTS */
@font-face {
    font-family: 'MontserratBlack';
    src: url('fonts/Montserrat-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'InterRegular';
    src: url('fonts/Inter-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* DESIGN TOKENS */
:root {
    --ma-dark: #111111;
    --ma-red-main: #E62929;
    --ma-red-deep: #B21F1F;
    --ma-gray-mid: #949494;
    --ma-gray-light: #F5F5F5;
    --ma-white: #FFFFFF;
    --ma-blue-muted: #2B6CB0;
}

/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* GLOBAL BODY */
body {
    font-family: 'InterRegular', Arial, sans-serif;
    background-color: var(--ma-gray-light);
    color: var(--ma-dark);
    line-height: 1.6;
}

/* HEADINGS */
h1, h2, h3, h4 {
    font-family: 'MontserratBlack', Arial, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

/* Global container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER / NAVBAR */
.navbar {
    background-color: var(--ma-white);
    border-bottom: 1px solid var(--ma-gray-mid);
    height: 80px;
    position: sticky;   
    top: 0;
    z-index: 1000;
}

/* This container is the ONLY flex row for the header */
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;  /* logo far left, nav far right */
    height: 100%;
}

/* LOGO (left) */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;   /* adjust size here */
    width: auto;
    display: block;
}

/* NAV LINKS (right) */
.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    color: var(--ma-dark);
    font-family: 'MontserratBlack', Arial, sans-serif; /* brand nav font */
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: var(--ma-red-main);
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--ma-white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-top: 3px solid var(--ma-red-main);
    z-index: 50;
}

.dropdown-content a {
    color: var(--ma-dark);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-family: 'InterRegular', Arial, sans-serif;
    font-size: 0.85rem;
}

.dropdown-content a:hover {
    background-color: var(--ma-gray-light);
    color: var(--ma-red-main);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* HERO / MAIN */
.hero-section {
    position: relative;
    min-height: 80vh;
    padding: 190px 20px 120px;  /* was 160px top — add 30px */
    background-image: url('images/HeroBackGround.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}


/* Fade overlay at the bottom */
.hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 200px;
    background: linear-gradient(
        to bottom,
        rgba(240,240,240,0) 0%,   /* transparent over image */
        #f0f0f0 100%              /* same as body background */
    );
    pointer-events: none;
}

/* Big 2-line headline */
.hero-content {
    max-width: 700px;
    text-align: left;           /* all text left-aligned [web:117] */
}

.hero-title {
    font-size: 3.4rem;
    line-height: 1.05;
    margin-bottom: 24px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08); /* soft clarity boost [web:103] */
}

.hero-title span {
    color: var(--ma-red-deep); /* red “START BUILDING.” */
}

.hero-text {
    font-family: 'InterRegular', Arial, sans-serif;
    font-size: 0.98rem;
    max-width: 520px;   /* was ~640px; tighter for easier reading [web:113] */
    margin: 0 0 32px 0;
    text-align: left;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08); /* soft clarity boost [web:103] */
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;/* buttons start from left */
    gap: 16px;
}

/* Base button style */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 999px;
    font-family: 'MontserratBlack', Arial, sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

/* Red filled button */
.btn-primary {
    background-color: var(--ma-red-main);
    color: var(--ma-white);
    border: 2px solid var(--ma-red-main);
}

.btn-primary:hover {
    background-color: var(--ma-red-deep);
    border-color: var(--ma-red-deep);
    transform: translateY(-1px);
}

/* White outline button */
.btn-outline {
    background-color: transparent;
    color: var(--ma-dark);
    border: 2px solid var(--ma-dark);
}

.btn-outline:hover {
    background-color: var(--ma-dark);
    color: var(--ma-white);
    transform: translateY(-1px);
}
/* RED CATEGORY SECTION */
.self-section {
    background-color: #E62929;
    padding: 80px 0;
    color: var(--ma-white);
}

/* Flex grid for ALL 5 cards */
.self-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;              /* center whole group */
    gap: 24px;
}

/* Each card gets a fixed flex-basis so rows align */
.self-image-card {
    position: relative;
    flex: 0 1 calc(20% - 24px);           /* aim for 5 equal columns on wide screens [web:153] */
    max-width: 210px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

/* Let them wrap nicely on tablet/mobile */
@media (max-width: 1024px) {
    .self-image-card {
        flex: 0 1 calc(33.333% - 24px);   /* 3 per row [web:155] */
        max-width: 260px;
    }
}

@media (max-width: 768px) {
    .self-image-card {
        flex: 0 1 calc(50% - 24px);       /* 2 per row */
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .self-image-card {
        flex: 0 1 100%;                   /* 1 per row */
    }
}

.self-image-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.self-label {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    background-color: var(--ma-white);
    color: var(--ma-dark);
    padding: 10px 22px;
    border-radius: 999px;
    font-family: 'MontserratBlack', Arial, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
    white-space: nowrap;
}
.self-heading {
    font-size: 2rem;
    font-family: 'MontserratBlack', Arial, sans-serif;
    text-transform: uppercase;
    text-align: center;   /* centers the text */
    margin: 0 auto 40px;  /* centers block in container + adds bottom space */
    max-width: 700px;     /* keeps line length nice and tight */
}

/* .self-label is now a link */
.self-label {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    background-color: var(--ma-white);
    color: var(--ma-dark);
    padding: 10px 22px;
    border-radius: 999px;
    font-family: 'MontserratBlack', Arial, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
    white-space: nowrap;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.18s ease;
}

.self-label:hover {
    background-color: var(--ma-dark);                   /* flips to dark pill */
    color: var(--ma-white);                            /* text goes white */
    transform: translateX(-50%) translateY(-3px);      /* small lift */
    box-shadow: 0 14px 30px rgba(0,0,0,0.45);          /* deeper shadow for 3D feel [web:185][web:188] */
}
.self-subtext {
    max-width: 720px;
    margin: 4px auto 24px;
    text-align: center;
    font-family: 'InterRegular', Arial, sans-serif;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--ma-dark);
}
/* ABOUT SLICE SECTION */
.about-slice {
    background: linear-gradient(
        135deg,
        var(--ma-red-main) 0%,
        var(--ma-gray-light) 50%,
        var(--ma-white) 100%
    );
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

/* Text side */
.about-copy {
    font-family: 'InterRegular', Arial, sans-serif;
    color: #111111;
}

.about-kicker {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    margin-bottom: 10px;
    color: #b21f1f;
}

.about-title {
    font-family: 'MontserratBlack', Arial, sans-serif;
    font-size: 2.4rem;
    margin-bottom: 18px;
}

.about-copy p {
    margin-bottom: 14px;
    line-height: 1.8;
    max-width: 640px;
}

/* Logo card side */
.about-media {
    display: flex;
    justify-content: center;
}

.about-logo-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 360px;
    width: 100%;
}

.about-logo-card img {
    max-width: 220px;
    width: 100%;
    height: auto;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 30px;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    background: var(--ma-dark);
    color: var(--ma-white);
    font-family: 'MontserratBlack', Arial, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border: 2px solid var(--ma-red-main);
    transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* subtle inner glow sweep */
.about-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.0) 0%,
        rgba(255,255,255,0.2) 40%,
        rgba(255,255,255,0.0) 100%
    );
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    pointer-events: none;
}

.about-cta span::after {
    content: "➝";
    margin-left: 6px;
    font-size: 0.9rem;
    transition: transform 0.18s ease;
}

.about-cta:hover {
    transform: translateY(-2px);
    border-color: var(--ma-red-deep);
    box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

.about-cta:hover::before {
    transform: translateX(100%);
}

.about-cta:hover span::after {
    transform: translateX(3px);
}


/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-media {
        order: -1;  /* logo above text on mobile if you like */
        margin-bottom: 24px;
    }

    .about-slice {
        padding: 60px 0;
    }
}
/* FEATURED / LATEST CONTENT SECTION */
.featured-section {
    padding: 80px 0;
    background-color: var(--ma-gray-light);
}

.featured-heading {
    font-family: 'MontserratBlack', Arial, sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.featured-subtext {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
    font-family: 'InterRegular', Arial, sans-serif;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--ma-dark);
}

/* 3 responsive horizontal cards */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* 1–3 cols responsively [web:161][web:248] */
    gap: 24px;
}

.featured-card {
    background-color: var(--ma-white);
    border-radius: 16px;
    padding: 22px 24px 24px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.04);
}

.featured-category {
    font-family: 'MontserratBlack', Arial, sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ma-red-main);
    margin-bottom: 8px;
}

.featured-title {
    font-family: 'MontserratBlack', Arial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.featured-title a {
    color: var(--ma-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.featured-title a:hover {
    color: var(--ma-red-main);
}

.featured-hook {
    font-family: 'InterRegular', Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--ma-dark);
}
/* NEWSLETTER / FINAL CTA SECTION */
.newsletter-section {
    background-color: var(--ma-red-main);
    padding: 80px 0 90px;
    color: var(--ma-white);
}

.newsletter-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

/* Left copy */
.newsletter-copy p {
    font-family: 'InterRegular', Arial, sans-serif;
    font-size: 0.98rem;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 18px;
}

.newsletter-heading {
    font-family: 'MontserratBlack', Arial, sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.newsletter-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-family: 'InterRegular', Arial, sans-serif;
    font-size: 0.95rem;
}

.newsletter-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}

.newsletter-list li::before {
    content: "➤";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.8rem;
}

/* Right card (gradient box) */
.newsletter-card {
    background: radial-gradient(circle at top left, #ffffff 0%, #5a0000 55%, #000000 100%);
    border-radius: 22px;
    padding: 26px 26px 22px;
    box-shadow: 0 28px 70px rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 999px;
    border: none;
    font-family: 'InterRegular', Arial, sans-serif;
    font-size: 0.95rem;
    margin-bottom: 14px;
    outline: none;
}

.newsletter-btn {
    width: 100%;
    padding: 12px 16px;
    border-radius: 999px;
    border: none;
    background-color: var(--ma-red-main);
    color: var(--ma-white);
    font-family: 'MontserratBlack', Arial, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(0,0,0,0.5);
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.newsletter-btn:hover {
    background-color: var(--ma-red-deep);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.7);
}

.newsletter-note {
    margin-top: 10px;
    font-size: 0.8rem;
    opacity: 0.85;
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .newsletter-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
/* FOOTER */
.site-footer {
    background-color: var(--ma-dark);
    color: var(--ma-white);
    padding: 30px 0;
    font-size: 0.85rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-logo-text {
    font-family: 'MontserratBlack', Arial, sans-serif;
    font-size: 1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-tagline {
    font-family: 'InterRegular', Arial, sans-serif;
    max-width: 380px;
    line-height: 1.6;
}

.footer-right {
    text-align: right;
    font-family: 'InterRegular', Arial, sans-serif;
}

.footer-links {
    margin-bottom: 6px;
}

.footer-links a {
    color: var(--ma-white);
    text-decoration: none;
    margin-left: 16px;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--ma-red-main);
}

.footer-copy {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-right {
        text-align: left;
    }

    .footer-links a {
        margin-left: 0;
        margin-right: 16px;
    }
}
.footer-social {
    margin-bottom: 8px;
}

.footer-social a {
    display: inline-block;
    margin-left: 8px;
    position: relative;
}

.footer-social .social-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.25s ease;
    border-radius: 50%; /* helps the glow look clean */
}

/* Glow hover */
.footer-social a:hover .social-icon {
    transform: translateY(-1px) scale(1.08);
    opacity: 0.95;
    box-shadow:
        0 0 6px rgba(255, 255, 255, 0.9),
        0 0 14px rgba(255, 0, 0, 0.7),
        0 0 26px rgba(255, 0, 0, 0.55);
}

/* Mobile spacing fix */
@media (max-width: 768px) {
    .footer-social a {
        margin-left: 0;
        margin-right: 8px;
    }
}
/* ===========================
   BLOG POST / SINGLE ARTICLE
   =========================== */

/* Post title area - light, editorial style */
.single-hero {
  padding: 70px 0 30px;
  background-color: var(--ma-gray-light);
  color: var(--ma-dark);
  text-align: center;
}

.single-hero .container {
  max-width: 760px;
}

/* breadcrumb / category */
.single-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--ma-red-main);
  margin-bottom: 14px;
}

/* main title */
.single-title {
  font-family: 'MontserratBlack', Arial, sans-serif;
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

/* small line between title and subtitle */
.single-title-divider {
  width: 48px;
  height: 2px;
  margin: 10px auto 14px;
  background-color: var(--ma-dark);
}

/* subtitle under the line */
.single-subtitle {
  font-family: 'InterRegular', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 18px;
  color: var(--ma-dark);
  opacity: 0.9;
}

/* date + author */
.single-meta {
  font-family: 'InterRegular', Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--ma-gray-mid);
  opacity: 0.9;
}

.single-dot {
  margin: 0 6px;
}

/* Content area */
.single-content-section {
  padding: 24px 0 60px;
  margin-top: -10px; /* gently overlap toward the hero */
}

/* Layout: article (left) + sidebar (right) */
.single-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(260px, 1fr);
  gap: 40px;
}

.single-main {
  /* holds .single-content */
}

/* sidebar should just sit in the grid, not stick */
.single-sidebar {
  position: static;   /* ensure no sticky/fixed */
  align-self: flex-start;
}


/* Article typography */
.single-content {
  max-width: 65ch;           /* 65 characters per line (ideal for reading) */
  margin: 0 auto;
  font-family: 'InterRegular', Arial, sans-serif;
  font-size: 1.05rem;        /* slightly bigger than 1rem */
  line-height: 1.8;          /* keep this or use 1.7–1.8 for Inter */
}

.single-content p {
  margin-bottom: 16px;
}

/* in-article headings + underline */
.single-content h2,
.single-content h3,
.single-content h4 {
  margin-top: 26px;
  margin-bottom: 14px;
  padding-bottom: 6px;
  position: relative;
}

.single-content h2::after,
.single-content h3::after,
.single-content h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--ma-red-main),
    rgba(230, 41, 41, 0)
  );
}

/* Tags row (under article) */
.single-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: 'InterRegular', Arial, sans-serif;
}

.single-tags-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* individual tag pill */
.single-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
  text-transform: lowercase;
  background-color: var(--ma-dark);
  color: var(--ma-white);
  border: 1px solid rgba(0,0,0,0.3);
  transition: background-color 0.18s ease,
              color 0.18s ease,
              transform 0.15s ease,
              box-shadow 0.18s ease;
}

.single-tag:hover {
  background-color: var(--ma-red-main);
  color: var(--ma-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}

@media (max-width: 480px) {
  .single-tags {
    gap: 6px;
  }

  .single-tag {
    padding: 5px 10px;
    font-size: 0.8rem;
  }
}

/* MOTIVEALPHA LIST STYLE */
.ma-list {
  list-style: none;
  margin: 16px 0 20px;
  padding-left: 0;
}

.ma-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-family: 'InterRegular', Arial, sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* custom bullet: small red bar/diamond instead of circle */
.ma-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 2px;
  background-color: #E62929;  /* ma-red-main */
  transform: skewX(-25deg);
}

/* About card styling */
.about-card {
  position: relative; /* not sticky */
  border-radius: 24px;
  background-color: #ffffff;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  padding: 22px 22px 24px;
}

.about-card-photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
}

.about-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card-title {
  font-family: 'MontserratBlack', Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.about-card-text {
  font-family: 'InterRegular', Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.about-card-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background-color: var(--ma-red-main);
  color: var(--ma-white);
  font-family: 'MontserratBlack', Arial, sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background-color 0.18s ease,
              transform 0.15s ease,
              box-shadow 0.18s ease;
}

.about-card-btn:hover {
  background-color: var(--ma-red-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .single-hero {
    padding: 50px 0 30px;
  }

  .single-title {
    font-size: 2rem;
  }
}

@media (max-width: 900px) {
  .single-layout {
    grid-template-columns: 1fr;
  }

  .single-sidebar {
    position: static;
  }

  .about-card {
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .single-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .single-subtitle {
    font-size: 0.95rem;
  }
}
/* AMAZON AFFILIATE BLOCK */
.ma-affiliate {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 22px;
  align-items: center;
  margin: 26px 0 30px;
  padding: 18px 20px 20px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(230,41,41,0.12),
    rgba(17,17,17,0.03)
  );
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
  position: relative;
  overflow: hidden;
}

/* subtle inner line effect */
.ma-affiliate::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.5);
  opacity: 0.4;
  pointer-events: none;
}

/* angled glow line in the background */
.ma-affiliate::after {
  content: "";
  position: absolute;
  width: 220%;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(230,41,41,0),
    rgba(230,41,41,0.8),
    rgba(230,41,41,0)
  );
  top: 18%;
  left: -60%;
  transform: rotate(6deg);
  opacity: 0.5;
  pointer-events: none;
}

.ma-affiliate-media {
  background-color: var(--ma-dark);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.ma-affiliate-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.ma-affiliate-body {
  font-family: 'InterRegular', Arial, sans-serif;
  color: var(--ma-dark);
}

/* small label */
.ma-affiliate-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: var(--ma-red-main);
  margin-bottom: 6px;
}

/* product title */
.ma-affiliate-title {
  font-family: 'MontserratBlack', Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* description */
.ma-affiliate-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* CTA button */
.ma-affiliate-btn {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 999px;
  background-color: var(--ma-dark);
  color: var(--ma-white);
  font-family: 'MontserratBlack', Arial, sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background-color 0.18s ease,
              transform 0.18s ease,
              box-shadow 0.2s ease;
}

.ma-affiliate-btn:hover {
  background-color: var(--ma-red-main);
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
  transform: translateY(-1px);
}

/* disclaimer */
.ma-affiliate-disclaimer {
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--ma-gray-mid);
}

/* hover effect on image */
.ma-affiliate:hover .ma-affiliate-media img {
  transform: scale(1.04);
  opacity: 0.95;
}

/* mobile tweaks */
@media (max-width: 768px) {
  .ma-affiliate {
    grid-template-columns: 1fr;
  }

  .ma-affiliate-media {
    max-width: 280px;
    margin: 0 auto;
  }

  .ma-affiliate-body {
    text-align: left;
  }
}
/* FEATURED IMAGE OUTLINE */
.ma-featured-image {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 45px rgba(0,0,0,0.36);
}

.ma-featured-image img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.02);
  transition: transform 0.25s ease;
}

/* soft outline + angled line */
.ma-featured-image::before,
.ma-featured-image::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  pointer-events: none;
}

.ma-featured-image::before {
  border: 1px solid rgba(255,255,255,0.6);
  opacity: 0.8;
}

.ma-featured-image::after {
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(230,41,41,0.18),
    transparent 55%
  );
  mix-blend-mode: screen;
  opacity: 0.6;
}

/* hover – slight zoom */
.ma-featured-image:hover img {
  transform: scale(1.05);
}

/* BODY IMAGE OUTLINE (lighter) */
.ma-body-image {
  position: relative;
  display: inline-block;
  border-radius: 16px;
  overflow: hidden;
}

.ma-body-image img {
  display: block;
  border-radius: 16px;
  transition: transform 0.22s ease;
}

.ma-body-image::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 14px;
  border: 1px solid rgba(230,41,41,0.7);
  opacity: 0.7;
  pointer-events: none;
}

.ma-body-image:hover img {
  transform: scale(1.03);
}
/* MOTIVEALPHA TOC BLOCK */
.ma-toc-block {
  position: relative;
  margin: 24px 0 36px;
  padding: 18px 20px 20px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(230,41,41,0.06),
    rgba(17,17,17,0.02)
  );
  box-shadow: 0 16px 32px rgba(0,0,0,0.16);
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.ma-toc-block:hover {
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  transform: translateY(-1px);
}

/* inner outline */
.ma-toc-block::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.6);
  opacity: 0.5;
  pointer-events: none;
}

/* angled accent line */
.ma-toc-block::after {
  content: "";
  position: absolute;
  width: 180%;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(230,41,41,0),
    rgba(230,41,41,0.85),
    rgba(230,41,41,0)
  );
  top: 22%;
  left: -40%;
  transform: rotate(5deg);
  opacity: 0.6;
  pointer-events: none;
}

/* label: ON THIS PAGE */
.ma-toc-block-label {
  font-family: 'MontserratBlack', Arial, sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ma-dark);
  margin-bottom: 12px;
}

/* list + links */
.ma-toc-block-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.ma-toc-block-list li {
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.ma-toc-block-list a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: var(--ma-dark);
  padding-left: 12px;
  transition: color 0.18s ease, transform 0.18s ease;
}

/* small vertical bar */
.ma-toc-block-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 0;
  border-radius: 999px;
  background-color: var(--ma-red-main);
  transform: translateY(-50%);
  transition: height 0.18s ease;
}

/* hover */
.ma-toc-block-list a:hover {
  color: var(--ma-red-main);
  transform: translateX(2px);
}

.ma-toc-block-list a:hover::before {
  height: 14px;
}

/* custom focus (kills blue/purple outline but stays accessible) */
.ma-toc-block-list a:focus-visible {
  outline: none;
  color: var(--ma-red-main);
  text-decoration: underline;
}

.ma-toc-block-list a:focus-visible::before {
  height: 16px;
}
/* NEXT / PREVIOUS POST NAV */
.ma-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin: 40px 0 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.ma-post-nav-link {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-decoration: none;
  color: var(--ma-dark);
  font-family: 'InterRegular', Arial, sans-serif;
}

/* stack label + title inside each side */
.ma-post-nav-prev,
.ma-post-nav-next {
  flex-direction: row;
}

.ma-post-nav-prev {
  justify-content: flex-start;
}

.ma-post-nav-next {
  justify-content: flex-end;
  text-align: right;
}

.ma-post-nav-arrow {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.7;
  margin-top: 2px;
}

.ma-post-nav-label {
  font-family: 'MontserratBlack', Arial, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.8;
}

.ma-post-nav-title {
  display: block;
  font-size: 0.95rem;
  margin-top: 2px;
}

/* hover effect */
.ma-post-nav-link:hover .ma-post-nav-title {
  color: var(--ma-red-main);
}

/* custom focus (no blue/purple) */
.ma-post-nav-link:focus-visible {
  outline: none;
}

.ma-post-nav-link:focus-visible .ma-post-nav-title {
  color: var(--ma-red-main);
  text-decoration: underline;
}

/* mobile stack */
@media (max-width: 768px) {
  .ma-post-nav {
    flex-direction: column;
    gap: 18px;
  }

  .ma-post-nav-prev,
  .ma-post-nav-next {
    justify-content: flex-start;
    text-align: left;
  }
}
/* AUTHOR BIO BLOCK */
.ma-author {
  margin: 50px 0 40px;
}

.ma-author-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 26px 26px 28px;
  text-align: center;
  border-radius: 20px;
  background: radial-gradient(circle at top,
    #2b2b2b 0%,
    #111111 55%,
    #000000 100%
  );
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}

/* subtle fade bands */
.ma-author-inner::before,
.ma-author-inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #949494,
    transparent
  );
  opacity: 0.35;
}

.ma-author-inner::before {
  top: 18px;
}

.ma-author-inner::after {
  bottom: 18px;
}

/* avatar */
.ma-author-avatar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.ma-author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: #f5f5f5;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'MontserratBlack', Arial, sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(0,0,0,0.45);
}

/* name + tagline */
.ma-author-name {
  font-family: 'MontserratBlack', Arial, sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffffff;
  margin-bottom: 4px;
}

.ma-author-tagline {
  font-size: 0.9rem;
  color: #949494;
  margin-bottom: 12px;
}

/* description text */
.ma-author-text {
  font-size: 0.94rem;
  line-height: 1.8;
  color: #f5f5f5;
  max-width: 640px;
  margin: 0 auto 16px;
}

/* links row */
.ma-author-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ma-author-link {
  font-family: 'MontserratBlack', Arial, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #f5f5f5;
  color: #f5f5f5;
  background-color: transparent;
  transition: background-color 0.18s ease,
              color 0.18s ease,
              transform 0.18s ease;
}

/* hover + custom focus (no blue/purple) */
.ma-author-link:hover {
  background-color: #f5f5f5;
  color: #111111;
  transform: translateY(-1px);
}

.ma-author-link:focus-visible {
  outline: none;
  background-color: #f5f5f5;
  color: #111111;
}

/* social row */
.ma-author-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.ma-author-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background-color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: transform 0.18s ease,
              box-shadow 0.18s ease,
              background-color 0.18s ease;
}

.ma-author-social-btn img {
  display: block;
  width: 22px;
  height: 22px;
}

/* hover + custom focus (no blue/purple) */
.ma-author-social-btn:hover {
  background-color: #949494;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.ma-author-social-btn:focus-visible {
  outline: none;
  background-color: #949494;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #111111;
}
/* PULLQUOTE WITH EFFECT */
/* COMPACT PULLQUOTE BLOCK */
.ma-pullquote {
  position: relative;
  margin: 22px 0;
  padding: 14px 16px 16px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(230,41,41,0.04),
    rgba(17,17,17,0.02)
  );
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
  overflow: hidden;
}

/* subtle inner outline */
.ma-pullquote::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.5);
  opacity: 0.5;
  pointer-events: none;
}

/* thin accent line on the left */
.ma-pullquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    rgba(230,41,41,0.1),
    rgba(230,41,41,0.9),
    rgba(230,41,41,0.1)
  );
}

/* text: italic + slightly larger */
.ma-pullquote p {
  position: relative;
  font-family: 'InterRegular', Arial, sans-serif;
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

/* CALLOUT BOX WITH EFFECT */
.ma-callout {
  position: relative;
  margin: 24px 0;
  padding: 16px 18px 18px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    #ffffff,
    #f5f5f5
  );
  border-left: 3px solid #949494;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

/* soft diagonal highlight */
.ma-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(230,41,41,0.06),
    transparent 55%
  );
  opacity: 0.6;
  pointer-events: none;
}

.ma-callout:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.16);
}

.ma-callout-label {
  position: relative;
  font-family: 'MontserratBlack', Arial, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #949494;
  margin-bottom: 6px;
}

.ma-callout-text {
  position: relative;
  font-size: 0.9rem;
  line-height: 1.75;
  color: #111111;
  margin: 0;
}

/* =======================================
   SECTION: CATEGORY ARCHIVE PAGES
   - Heroes for each category
   - Post card grid layout
======================================= */

/* HERO WRAPPER (shared styles) */
.ma-cat-hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
  text-align: center;
  color: #ffffff;
}

.ma-cat-hero .container {
  max-width: 860px;
  margin: 0 auto;
}

/* BASE HERO BACKGROUND (fallback) */
.ma-cat-hero--default {
  background: radial-gradient(circle at top, #ffffff 0%, #f5f5f5 55%, #e5e5e5 100%);
  color: #111111;
}

/* FITNESS HERO – DARK, STRONG */
.ma-cat-hero--fitness {
  background: radial-gradient(circle at top, #1c1c1c 0%, #111111 55%, #000000 100%);
}

/* DATING HERO – DEEP, WARM */
.ma-cat-hero--dating {
  background: radial-gradient(circle at top, #1b1b1b 0%, #111111 50%, #1a0505 100%);
}

/* SELF-IMPROVEMENT HERO – LIGHT */
.ma-cat-hero--self-improvement {
  background: radial-gradient(circle at top, #ffffff 0%, #f5f5f5 60%, #ececec 100%);
  color: #111111;
}

/* GROOMING HERO – CLEAN, SOFT */
.ma-cat-hero--grooming {
  background: radial-gradient(circle at top, #ffffff 0%, #f5f5f5 50%, #e0e0e0 100%);
  color: #111111;
}

/* STYLE HERO – HIGH-CONTRAST */
.ma-cat-hero--style {
  background: radial-gradient(circle at top, #111111 0%, #151515 55%, #000000 100%);
}

/* BREADCRUMB */
.ma-breadcrumb {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.7;
  margin-bottom: 1.2rem;
}

.ma-breadcrumb a {
  color: #f5f5f5;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.ma-cat-hero--self-improvement .ma-breadcrumb,
.ma-cat-hero--grooming .ma-breadcrumb {
  color: #555555;
}

.ma-cat-hero--self-improvement .ma-breadcrumb a,
.ma-cat-hero--grooming .ma-breadcrumb a {
  color: #555555;
}

.ma-breadcrumb a:hover {
  border-bottom-color: rgba(245,245,245,0.7);
}

/* CATEGORY H1 TITLE */
.ma-cat-title {
  font-family: 'MontserratBlack', Arial, sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 0.4rem;
  color: #B21F1F; /* category name pops */
}

/* SUBTITLE UNDER H1 */
.ma-cat-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #e1e1e1;
}

.ma-cat-hero--self-improvement .ma-cat-subtitle,
.ma-cat-hero--grooming .ma-cat-subtitle {
  color: #555555;
}

/* MAIN CATEGORY CONTENT AREA */
.ma-cat-main {
  padding: 3rem 0 4rem;
}

/* CARD GRID */
.ma-grid--cat-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

@media (max-width: 960px) {
  .ma-grid--cat-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ma-grid--cat-cards {
    grid-template-columns: 1fr;
  }

  .ma-cat-title {
    font-size: 2rem;
  }
}

/* CATEGORY CARDS */
.ma-card--cat {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

/* link resets so titles aren’t blue/purple */
.ma-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.ma-card-link:link,
.ma-card-link:visited {
  color: inherit;
}

.ma-card-link:hover .ma-card-title {
  color: #B21F1F;
}

.ma-card-thumb {
  overflow: hidden;
}

.ma-card-thumb img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.25s ease;
}

.ma-card--cat:hover .ma-card-thumb img {
  transform: scale(1.04);
}

.ma-card--cat:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.22);
}

/* CARD TEXT */
.ma-card-title {
  font-family: 'MontserratBlack', Arial, sans-serif;
  font-size: 1rem;
  margin: 14px 16px 6px;
}

.ma-card-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #949494;
  margin: 0 16px 6px;
}

.ma-card-excerpt {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #444444;
  margin: 0 16px 18px 16px;
}
/* =======================================
   SECTION: STATIC PAGES (ABOUT, CONTACT, PRIVACY, TERMS)
======================================= */

.ma-page-main {
  padding: 4rem 0 4rem;
}

.ma-page-main .container {
  max-width: 860px;
  margin: 0 auto;
}

/* breadcrumb at top of each page */
.ma-page-hero .ma-breadcrumb {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.7;
  margin-bottom: 1.2rem;
}

.ma-page-hero .ma-breadcrumb a {
  color: #555555;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.ma-page-hero .ma-breadcrumb a:hover {
  border-bottom-color: #555555;
}

/* main H1 for the page (About, Contact, etc.) */
.ma-page-title {
  font-family: 'MontserratBlack', Arial, sans-serif;
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 1.6rem;
  text-align: center;
  color: #111111;
}

/* white content card */
.ma-page {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  padding: 2rem 2.2rem;
}

/* inner content (what you edit in WP editor) */
.ma-page-content {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #333333;
}

/* headings inside the page content */
.ma-page-content h2,
.ma-page-content h3 {
  font-family: 'MontserratBlack', Arial, sans-serif;
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
}

.ma-page-content p {
  margin-bottom: 1rem;
}

/* lists for your About goals, etc. */
.ma-page-content ul,
.ma-page-content ol {
  margin: 0 0 1.2rem 1.4rem;
  padding: 0;
}

.ma-page-content li {
  margin-bottom: 0.4rem;
}

/* links (for Contact social links, legal links) */
.ma-page-content a {
  color: #B21F1F;
  text-decoration: none;
  border-bottom: 1px solid rgba(178,31,31,0.3);
}

.ma-page-content a:hover {
  border-bottom-color: rgba(178,31,31,0.9);
}

/* make forms or blocks on Contact look neat */
.ma-page-content form {
  margin-top: 1.5rem;
}

@media (max-width: 640px) {
  .ma-page-main {
    padding: 3rem 0 3rem;
  }

  .ma-page {
    padding: 1.6rem 1.4rem;
  }

  .ma-page-title {
    font-size: 1.8rem;
  }
}
