/*
Theme Name: Between Couples
Theme URI: https://thefreewebsiteguys.com
Author: The Free Website Guys
Author URI: https://thefreewebsiteguys.com
Description: A beautiful, elegant wedding ministry theme for Between Couples. Features a classic palette of Navy, Pink, White, and Gold with full Customizer support for all content, colors, and media.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: between-couples
Tags: one-page, custom-colors, custom-logo, customizer, wedding, ministry

Between Couples WordPress Theme
(C) 2025 The Free Website Guys
*/

/* ==========================================================================
   CSS Custom Properties (Theme Colors - Customizer Controlled)
   ========================================================================== */
:root {
    /* Brand Colors - Defaults from React project */
    --bc-navy: hsl(220, 50%, 15%);
    --bc-navy-light: hsl(220, 40%, 25%);
    --bc-pink: hsl(350, 60%, 95%);
    --bc-pink-dark: hsl(350, 50%, 90%);
    --bc-gold: hsl(40, 70%, 50%);
    --bc-gold-light: hsl(40, 70%, 60%);
    --bc-gold-dark: hsl(40, 70%, 40%);
    --bc-champagne: hsl(37, 62%, 88%);
    --bc-champagne-dark: hsl(37, 50%, 75%);
    --bc-background: hsl(0, 0%, 100%);
    --bc-foreground: hsl(222.2, 84%, 4.9%);
    --bc-muted: hsl(215.4, 16.3%, 46.9%);
    --bc-border: hsl(214.3, 31.8%, 91.4%);
    
    /* Spacing */
    --bc-radius: 0.5rem;
}

/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--bc-foreground);
    background-color: var(--bc-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 768px;
}

.gold-border {
    border: 2px solid var(--bc-gold);
    transition: all 0.3s ease;
}

.gold-border:hover {
    box-shadow: 0 0 20px hsla(40, 70%, 50%, 0.3);
}

.gold-glow {
    box-shadow: 0 0 30px hsla(40, 70%, 50%, 0.2);
}

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

/* ==========================================================================
   Typography
   ========================================================================== */
.font-serif {
    font-family: 'Playfair Display', Georgia, serif;
}

.font-sans {
    font-family: 'Inter', system-ui, sans-serif;
}

.text-navy {
    color: var(--bc-navy);
}

.text-gold {
    color: var(--bc-gold);
}

.text-gold-light {
    color: var(--bc-gold-light);
}

.text-muted {
    color: var(--bc-muted);
}

.text-white {
    color: #fff;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

.animate-fade-up-delay {
    animation: fadeUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-fade-up-delay-2 {
    animation: fadeUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: hsla(37, 62%, 88%, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: hsla(220, 50%, 15%, 0.1);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 768px) {
    .navbar-container {
        height: 5rem;
    }
}

.navbar-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    transition: color 0.3s ease;
    color: #fff;
}

@media (min-width: 768px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
}

.navbar.scrolled .navbar-brand {
    color: var(--bc-gold);
}

.navbar-nav {
    display: none;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

@media (min-width: 768px) {
    .navbar-nav {
        display: flex;
    }
}

.navbar-nav a,
.navbar-nav button {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    transition: color 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
    background: none;
    border: none;
    cursor: pointer;
}

.navbar-nav a:hover,
.navbar-nav button:hover {
    color: #fff;
}

.navbar.scrolled .navbar-nav a,
.navbar.scrolled .navbar-nav button {
    color: hsla(220, 50%, 15%, 0.8);
}

.navbar.scrolled .navbar-nav a:hover,
.navbar.scrolled .navbar-nav button:hover {
    color: var(--bc-gold);
}

.navbar-toggle {
    display: flex;
    padding: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .navbar-toggle {
        display: none;
    }
}

.navbar.scrolled .navbar-toggle {
    color: hsla(220, 50%, 15%, 0.8);
}

.navbar-toggle:hover {
    color: #fff;
}

.navbar.scrolled .navbar-toggle:hover {
    color: var(--bc-gold);
}

.navbar-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu.open {
    display: block;
}

.navbar.scrolled .mobile-menu {
    border-top-color: hsla(220, 50%, 15%, 0.1);
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu a,
.mobile-menu button {
    display: block;
    padding: 0.5rem 0;
    font-family: 'Inter', system-ui, sans-serif;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
}

.mobile-menu a:hover,
.mobile-menu button:hover {
    color: #fff;
}

.navbar.scrolled .mobile-menu a,
.navbar.scrolled .mobile-menu button {
    color: hsla(220, 50%, 15%, 0.8);
}

.navbar.scrolled .mobile-menu a:hover,
.navbar.scrolled .mobile-menu button:hover {
    color: var(--bc-gold);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.025em;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

.hero-subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--bc-gold-light);
    letter-spacing: 0.025em;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.875rem;
    }
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: transparent;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background-color: hsla(40, 70%, 50%, 0.1);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    padding: 5rem 0;
    background-color: var(--bc-pink);
}

@media (min-width: 768px) {
    .about-section {
        padding: 7rem 0;
    }
}

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

.about-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bc-gold);
    margin-bottom: 1rem;
}

.about-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--bc-navy);
    letter-spacing: 0.025em;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .about-title {
        font-size: 3rem;
    }
}

.about-text {
    color: var(--bc-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: var(--bc-navy);
    font-weight: 600;
}

.about-quote {
    border-left: 4px solid var(--bc-gold);
    padding-left: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.about-quote p {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.125rem;
    color: var(--bc-navy);
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--bc-navy);
    background: transparent;
    transition: all 0.3s ease;
}

.about-cta:hover {
    background-color: hsla(40, 70%, 50%, 0.1);
}

.about-cta svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 1.5;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
    padding: 5rem 0;
    background-color: var(--bc-background);
}

@media (min-width: 768px) {
    .services-section {
        padding: 7rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--bc-navy);
    letter-spacing: 0.025em;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-divider {
    width: 6rem;
    height: 2px;
    background-color: var(--bc-gold);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.service-card {
    position: relative;
    background-color: #fff;
    border-radius: var(--bc-radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.5s ease;
}

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

.service-image-wrapper {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.4), transparent);
}

.service-header {
    padding: 1.5rem 1.5rem 1rem;
}

.service-header-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--bc-pink);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--bc-gold);
    stroke-width: 1.5;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bc-navy);
    letter-spacing: 0.025em;
}

@media (min-width: 1024px) {
    .service-title {
        font-size: 1.5rem;
    }
}

.service-content {
    padding: 0 1.5rem 2rem;
}

.service-description {
    color: var(--bc-muted);
    line-height: 1.7;
}

.service-hover-effect {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    background: linear-gradient(to bottom right, hsla(40, 70%, 50%, 0.05), transparent);
}

.service-card:hover .service-hover-effect {
    opacity: 1;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--bc-champagne);
    overflow: hidden;
}

@media (min-width: 768px) {
    .why-section {
        padding: 7rem 0;
    }
}

.why-section-accent-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 4px;
    background-color: var(--bc-gold);
}

.why-section .section-header {
    margin-bottom: 4rem;
}

.why-section .section-subtitle {
    font-size: 1.125rem;
    color: hsla(220, 50%, 15%, 0.8);
    font-weight: 300;
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .why-section .section-subtitle {
        font-size: 1.25rem;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: var(--bc-radius);
    border: 1px solid hsla(220, 50%, 15%, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: hsla(40, 70%, 50%, 0.3);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.5rem) scale(1.02);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: hsla(40, 70%, 50%, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(12deg);
}

.value-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--bc-gold);
    stroke-width: 1.5;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bc-navy);
    margin-bottom: 0.75rem;
}

.value-description {
    color: hsla(220, 50%, 15%, 0.7);
    line-height: 1.7;
}

.why-section-accent-bottom {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.why-section-accent-bottom div {
    width: 4rem;
    height: 2px;
    background-color: hsla(40, 70%, 50%, 0.5);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    padding: 5rem 0;
    background-color: var(--bc-background);
}

@media (min-width: 768px) {
    .contact-section {
        padding: 7rem 0;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bc-navy);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-item-text p:last-child {
    color: var(--bc-gold);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--bc-pink);
    border-radius: 50%;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.contact-item:hover .contact-icon {
    background-color: hsla(40, 70%, 50%, 0.2);
}

.contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--bc-gold);
    stroke-width: 1.5;
}

.contact-item-text p:first-child {
    font-size: 0.875rem;
    color: var(--bc-muted);
}

.contact-item-text p:last-child {
    color: var(--bc-navy);
    transition: color 0.3s ease;
}

.social-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bc-navy);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--bc-pink);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: hsla(40, 70%, 50%, 0.2);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--bc-navy);
    stroke-width: 1.5;
    transition: color 0.3s ease;
}

.social-link:hover svg {
    color: var(--bc-gold);
}

.contact-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-cta {
    display: block;
    width: 100%;
    max-width: 28rem;
    padding: 2rem 2.5rem;
    text-align: center;
    background-color: hsla(40, 70%, 50%, 0.05);
    transition: all 0.3s ease;
}

.contact-cta:hover {
    background-color: hsla(40, 70%, 50%, 0.1);
}

.contact-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: hsla(40, 70%, 50%, 0.2);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.contact-cta-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--bc-gold);
    stroke-width: 1.5;
}

.contact-cta-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bc-navy);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .contact-cta-title {
        font-size: 1.5rem;
    }
}

.contact-cta-phone {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--bc-gold);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .contact-cta-phone {
        font-size: 2.25rem;
    }
}

.contact-cta-hint {
    font-size: 0.875rem;
    color: var(--bc-muted);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding: 3rem 0 4rem;
    background-color: var(--bc-champagne);
}

@media (min-width: 768px) {
    .footer {
        padding: 4rem 0;
    }
}

.footer-brand {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-brand-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--bc-gold);
    letter-spacing: 0.025em;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .footer-brand-title {
        font-size: 2.25rem;
    }
}

.footer-brand-tagline {
    font-size: 0.875rem;
    color: hsla(220, 50%, 15%, 0.6);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin-bottom: 2rem;
}

.footer-nav a,
.footer-nav button {
    color: hsla(220, 50%, 15%, 0.8);
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}

.footer-nav a:hover,
.footer-nav button:hover {
    color: var(--bc-gold);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    color: hsla(220, 50%, 15%, 0.6);
    transition: color 0.3s ease;
}

.footer-social-link:hover {
    color: var(--bc-gold);
}

.footer-social-link svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 1.5;
}

.footer-divider {
    width: 6rem;
    height: 1px;
    background-color: hsla(40, 70%, 50%, 0.3);
    margin: 0 auto 2rem;
}

.footer-copyright {
    text-align: center;
    font-size: 0.875rem;
    color: hsla(220, 50%, 15%, 0.4);
    margin-bottom: 0.5rem;
}

.footer-credit {
    text-align: center;
    font-size: 0.75rem;
    color: hsla(220, 50%, 15%, 0.4);
}

.footer-credit a {
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--bc-gold);
}

/* ==========================================================================
   WordPress Specific
   ========================================================================== */
.wp-block-image img {
    height: auto;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* ==========================================================================
   Responsive Utilities
   ========================================================================== */
@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .hide-desktop {
        display: none !important;
    }
}
