/* ==========================================================================
   Public Marketing Site — layout additions on top of style.css's tokens.
   No new colors are introduced for text/surfaces; everything is built from
   the --color-*/--font-*/--shadow-glass tokens defined in style.css so these
   pages inherit the dark glassmorphism theme automatically. A few small
   accent hues (tier cards, "why we're doing this" highlight card) echo the
   brand colors used on the club's original site, darkened to fit the theme.
   ========================================================================== */

/* Counteracts .centered-content's align-items:center, which would otherwise
   shrink this to its content's intrinsic width instead of filling
   .main-content -- same pattern as .dashboard-panel uses. */
.marketing-page {
    width: 100%;
}

.marketing-section {
    margin: 0 auto 60px;
    max-width: 1100px;
}

.marketing-section h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.marketing-section .section-intro {
    text-align: center;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 30px;
}

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

/* --- Photo banner (used as the page hero on every marketing page) ---
   Full-bleed: breaks out of .main-content's max-width/padding to span the
   full viewport width, matching the original site's edge-to-edge banner.
   The left/right:50% + margin:-50vw combo is anchored to the viewport
   (vw units), not the padded parent, so it's correct regardless of
   .main-content's own width or padding. */
html, body {
    overflow-x: clip;
    max-width: 100%;
}

.hero-banner {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 20px;
    margin-top: 0;
    margin-bottom: 30px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(248, 250, 252, 0.1) 100%);
}

.hero-banner-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-banner-left {
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 18px 28px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.15);
}

.hero-logo {
    height: 85px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .hero-banner-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 20px;
    }
    .hero-logo {
        height: 65px;
    }
}

.hero-banner h1 {
    font-family: var(--font-heading);
    font-size: 2.0rem;
    font-weight: 800;
    color: #0f172a;
}

/* Homepage variant: same centering as every other banner, just taller with
   room for a tagline underneath. */
.hero-banner--home {
    min-height: 190px;
}

.hero-banner--home h1 {
    font-style: italic;
    font-size: 2.2rem;
    margin-bottom: 4px;
}

.hero-banner--home .hero-tagline {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
}

/* --- Free Sundays gradient banner --- */
.free-sundays-banner {
    background: linear-gradient(120deg, hsla(28, 85%, 35%, 0.4) 0%, hsla(14, 80%, 35%, 0.4) 100%);
    border: 1px solid hsla(24, 90%, 60%, 0.25);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    margin: 0 auto 40px;
}

.free-sundays-banner h2 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 1.3rem;
    color: hsl(30, 95%, 70%);
    margin-bottom: 10px;
}

.free-sundays-banner p {
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Membership tier cards --- */
.tier-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tier-card {
    border-top: 4px solid var(--tier-color, var(--color-primary));
}

.tier-card.tier-trial {
    --tier-color: hsl(199, 89%, 55%);
}

.tier-card.tier-regular {
    --tier-color: hsl(24, 95%, 58%);
}

.tier-card.tier-associate {
    --tier-color: hsl(45, 93%, 58%);
}

.tier-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--tier-color, var(--color-text-primary));
}

.tier-card p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.tier-card p:last-child {
    margin-bottom: 0;
}

/* --- Full-bleed image + text row, used by both the "About Us" overlap
   section and the "Come Game With Us" section below.
   Anchored to the viewport (vw units, not the padded/max-width parent) so
   it always spans edge-to-edge, matching the original site -- same math as
   .hero-banner. A small fixed side padding (not a gutter matched to
   .marketing-section's 1100px column) keeps the row genuinely full-width
   instead of aligning one edge with the narrower reading column. */
.overlap-section,
.bleed-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    min-height: 400px;
}

.overlap-section {
    padding-left: 20px;
}

.bleed-section.bleed-left {
    padding-right: 20px;
    gap: 40px;
}

.bleed-section.bleed-right {
    padding-left: 20px;
    gap: 40px;
}

.overlap-card {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 44%;
    max-width: 480px;
    margin-right: -40px;
    padding: 32px;
    box-sizing: border-box;
    background: var(--color-surface-glass-solid);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: var(--shadow-glass);
}

.overlap-card h2 {
    text-align: left;
    margin-bottom: 14px;
}

.overlap-card p {
    color: var(--color-text-secondary);
    margin-bottom: 12px;
}

.overlap-image,
.bleed-image {
    position: relative;
    z-index: 1;
    flex: 1;
    height: 400px;
    min-width: 0;
}

.overlap-image img,
.bleed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bleed-text {
    flex-shrink: 0;
    width: 50%;
    max-width: 560px;
}

.bleed-text h2 {
    text-align: left;
    margin-bottom: 14px;
}

.bleed-text p {
    color: var(--color-text-secondary);
    margin-bottom: 12px;
}

.eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

/* --- Meeting-days mini schedule grid -- 2 columns, matching the live
   site (Wed+Fri paired, Sunday alone on its own row). --- */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 24px;
    margin: 20px 0;
}

.schedule-grid .schedule-item {
    background: var(--color-surface-glass-solid);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    padding: 14px;
}

.schedule-grid .schedule-item h5 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    margin-bottom: 6px;
}

.schedule-grid .schedule-item p {
    font-weight: 600;
    color: var(--color-text-primary);
}

/* --- Numbered "why we're doing this" cards --- */
.numbered-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.numbered-card {
    padding: 26px;
    border-radius: 16px;
    background: var(--color-surface-glass-solid);
    border: 1px solid var(--border-glass);
}

.numbered-card .num {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    opacity: 0.5;
    margin-bottom: 4px;
}

.numbered-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.numbered-card p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.numbered-card .get-started {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Photo gallery (square box-art crops) --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
}

/* --- Simple info list --- */
.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-glass);
    color: var(--color-text-secondary);
}

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

.info-list li strong {
    color: var(--color-text-primary);
}

/* --- Numbered rules list --- */
.rules-list {
    counter-reset: rule;
    list-style: none;
    padding: 0;
}

.rules-list li {
    counter-increment: rule;
    position: relative;
    padding: 14px 0 14px 42px;
    border-bottom: 1px solid var(--border-glass);
    color: var(--color-text-secondary);
}

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

.rules-list li::before {
    content: counter(rule);
    position: absolute;
    left: 0;
    top: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-surface-glass-solid);
    border: 1px solid var(--border-glass-focus);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Responsive embedded map ---
   Deliberately not combined with .glass-panel: that class's padding would
   need overriding, and any override of its padding shorthand would also
   zero out this rule's padding-bottom aspect-ratio trick below. Self-
   contained styling avoids that footgun. */
.map-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
}

.map-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Responsive breakpoints ---
   The live site keeps its image+text rows side-by-side all the way down to
   phone widths (~768px), only stacking below that -- confirmed by resizing
   the actual site. Matched here rather than using style.css's 1024px admin/
   dashboard breakpoint, which stacks far more aggressively than the
   original marketing site did. */
@media (max-width: 1024px) {
    .tier-cards,
    .numbered-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-banner h1,
    .hero-banner--home h1 {
        font-size: 1.9rem;
    }

    .tier-cards,
    .numbered-cards,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Overlap/bleed rows stay side-by-side exactly at 768px on the live site
   (its Bootstrap-based grid switches at min-width:768px) -- only stack
   below that, one pixel earlier than the rest of this file's 768px step. */
@media (max-width: 767px) {
    .overlap-section,
    .bleed-section {
        position: static;
        left: auto;
        right: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        flex-direction: column;
        align-items: stretch;
        min-height: 0;
        gap: 24px;
    }

    .overlap-card,
    .bleed-text {
        width: auto;
        max-width: none;
        margin-right: 0;
    }

    .overlap-image,
    .bleed-image {
        height: 280px;
    }
}

/* ==========================================================================
   Cheery Light Theme Overrides for Public Marketing Page (index.php)
   ========================================================================== */
.marketing-page {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 0 70px 0;
    border-radius: 20px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 40%, #e2e8f0 100%);
    color: #334155;
}

.marketing-page h1,
.marketing-page h2,
.marketing-page h3,
.marketing-page h4,
.marketing-page h5,
.marketing-page h6 {
    color: #0f172a;
}

.marketing-page p,
.marketing-page .section-intro {
    color: #475569;
}

.marketing-page .hero-banner::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(248, 250, 252, 0.1) 100%);
}

.marketing-page .hero-banner h1 {
    color: #0f172a;
    text-shadow: none;
}

.marketing-page .hero-banner .hero-tagline {
    color: #2563eb;
    font-weight: 700;
}

/* Bright & Cheery Free Sundays Banner (Logo Palette: Royal Blue & Gold) */
.marketing-page .free-sundays-banner {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #2563eb;
    border-radius: 18px;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.15);
}

.marketing-page .free-sundays-banner h2 {
    color: #dc2626;
    font-weight: 800;
}

.marketing-page .free-sundays-banner p {
    color: #1e293b;
    font-weight: 500;
}

/* Light Cards and Panels */
.marketing-page .glass-panel,
.marketing-page .overlap-card,
.marketing-page .schedule-item {
    background: #ffffff;
    border: 1px solid rgba(203, 213, 225, 0.8);
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.06), 0 4px 6px -2px rgba(15, 23, 42, 0.03);
}

.marketing-page .tier-card.tier-trial {
    --tier-color: #0284c7;
}

.marketing-page .tier-card.tier-regular {
    --tier-color: #ea580c;
}

.marketing-page .tier-card.tier-associate {
    --tier-color: #d97706;
}

.marketing-page .tier-card h3 {
    color: var(--tier-color);
}

.marketing-page .eyebrow {
    color: #2563eb;
}

.marketing-page .schedule-grid .schedule-item h5 {
    color: #64748b;
}

.marketing-page .schedule-grid .schedule-item p {
    color: #0f172a;
}

.marketing-page .btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    font-weight: 600;
}

.marketing-page .btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.marketing-page a {
    color: #2563eb;
    font-weight: 600;
}

.marketing-page a:hover {
    color: #1d4ed8;
}

.marketing-page .marketing-section {
    position: relative;
    scroll-margin-top: 135px;
    margin: 0 auto 50px;
    max-width: 1100px;
    padding: 36px 32px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.04);
}

.marketing-page .marketing-section:nth-of-type(even) {
    background: #f1f5f9;
    border-color: rgba(203, 213, 225, 0.8);
}

.marketing-page .marketing-section + .marketing-section::before {
    content: '';
    position: absolute;
    top: -26px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(203, 213, 225, 0.75) 50%, transparent 100%);
}

.marketing-page .gallery-grid img,
.marketing-page .bleed-image img {
    border-radius: 16px;
    border: 1px solid #cbd5e1;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
}

.marketing-page .bleed-text h3 {
    color: #0f172a;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
}

/* --- Game Library Grid & Collage --- */
.library-display-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.library-display-item {
    display: flex;
    flex-direction: column;
}

.library-display-item .eyebrow {
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.library-display-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
}

@media (max-width: 768px) {
    .library-display-grid {
        grid-template-columns: 1fr;
    }
    .library-display-item img {
        height: 320px;
    }
}

/* ==========================================================================
   Section Quick Navigation & Faint Delineation Dividers
   ========================================================================== */
html {
    scroll-behavior: smooth;
}

.marketing-section-nav {
    position: -webkit-sticky;
    position: sticky;
    top: 75px;
    z-index: 95;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: -10px auto 30px;
    padding: 10px 0;
    max-width: 1100px;
    background: transparent;
    border: none;
    box-shadow: none;
    pointer-events: none;
}

.marketing-section-nav .section-nav-link {
    pointer-events: auto;
    display: inline-block;
    padding: 9px 20px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1e293b !important;
    text-decoration: none;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(203, 213, 225, 0.8);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
}

.marketing-section-nav .section-nav-link:hover {
    background: #2563eb;
    color: #ffffff !important;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

.marketing-page .marketing-section {
    position: relative;
    scroll-margin-top: 135px;
    margin: 0 auto 50px;
    max-width: 1100px;
}

.marketing-page .event-logo {
    display: block;
    max-height: 140px;
    width: auto;
    margin-top: 0;
    margin-bottom: 16px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
}

/* --- Announcements Vertical Whitespace Cleanup --- */
#section-announcements {
    padding-top: 16px;
    padding-bottom: 16px;
    margin-bottom: 35px;
}

#section-announcements .free-sundays-banner {
    margin-bottom: 0;
}

/* ==========================================================================
   Design Refresh Enhancements
   ========================================================================== */

/* --- Hero Badges & CTA Actions --- */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.hero-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(226, 232, 240, 0.8);
    color: #1e293b;
    border: 1px solid rgba(203, 213, 225, 0.8);
}

.hero-badge--accent {
    background: #ffedd5;
    color: #c2410c;
    border-color: #fed7aa;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
}

.hero-btn-primary {
    padding: 12px 24px;
    font-size: 0.95rem;
    white-space: nowrap;
}

.hero-btn-secondary {
    padding: 10px 20px;
    font-size: 0.88rem;
    background: rgba(255, 255, 255, 0.9);
    color: #1e293b;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.hero-btn-secondary:hover {
    background: #ffffff;
    border-color: #2563eb;
    color: #2563eb;
}

@media (max-width: 900px) {
    .hero-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .hero-actions {
        margin-left: 0;
        flex-direction: row;
    }
}

/* --- Banner Alert Badge --- */
.banner-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #ffffff;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

/* --- Schedule Item Tags --- */
.schedule-item {
    position: relative;
    padding-top: 32px !important;
}

.schedule-tag {
    position: absolute;
    top: 10px;
    left: 14px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2563eb;
}

.schedule-tag--free {
    color: #ea580c;
}

.schedule-item--free {
    border-color: rgba(234, 88, 12, 0.35) !important;
    background: rgba(234, 88, 12, 0.08) !important;
}

/* --- Membership Pricing Tier Highlights --- */
.tier-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding: 30px 24px !important;
}

.tier-card.tier-featured {
    border: 1px solid rgba(37, 99, 235, 0.35) !important;
    background: var(--color-surface-glass-solid) !important;
    box-shadow: 0 8px 24px -6px rgba(37, 99, 235, 0.18) !important;
}

.featured-ribbon {
    position: absolute;
    top: -14px;
    right: 20px;
    background: #2563eb;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 4px 14px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.3);
}

.tier-header h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.tier-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1.1;
}

.tier-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.tier-price-alt {
    font-size: 0.82rem;
    font-weight: 700;
    color: #ea580c;
    margin-top: 4px;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 24px;
}

.tier-features li {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    padding: 6px 0;
    border-bottom: 1px dashed var(--border-glass);
}

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

/* --- Event Badges --- */
.event-header-group {
    margin-bottom: 10px;
}

.event-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    background: rgba(37, 99, 235, 0.12);
    color: var(--color-primary);
    margin-bottom: 8px;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.event-badge--charity {
    background: rgba(219, 39, 119, 0.12);
    color: hsl(330, 65%, 55%);
    border-color: rgba(219, 39, 119, 0.3);
}

.btn-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

.btn-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

