/*
Theme Name: ProfitBoost Authority
Theme URI: https://profitboost.pro
Author: David
Description: Authority theme for matched betting content and Profit Maximiser funnel.
Version: 1.0
*/
/* ================================
   PROFITBOOST GLOSSARY MODULE
   ================================ */

/* ================================
   GLOSSARY LIST STYLING
   ================================ */

.pb-glossory-list,
.pb-glossary-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pb-glossary-item {
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 1.05rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.pb-glossary-item strong {
    color: #0057ff; /* ProfitBoost blue */
    font-weight: 600;
    margin-right: 6px;
}

.pb-glossary-item a {
    color: #0057ff;
    text-decoration: underline;
}

.pb-glossary-item a:hover {
    opacity: 0.8;
}

/* Icon before each glossary item */
.pb-glossary-item::before {
    content: "📘";
    margin-right: 10px;
    font-size: 1.1rem;
    color: #0057ff;
}

/* Letter headings (A, B, C...) */
.pb-glossary-letter-heading h2 {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: #0057ff;
    border-bottom: 2px solid #0057ff;
    padding-bottom: 4px;
}

/* ================================
   GLOSSARY SEARCH BAR
   ================================ */

.pb-glossary-search {
    margin: 1rem 0 2rem;
}

.pb-glossary-search input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 2px solid #0057ff;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
}

.pb-glossary-search input[type="text"]:focus {
    border-color: #003bb5;
}

/* ================================
   A–Z FILTER LINKS
   ================================ */

.pb-glossary-letters {
    margin: 1rem 0 2rem;
}

.pb-glossary-letters a {
    margin-right: 8px;
    color: #0057ff;
    font-weight: 600;
    text-decoration: none;
}

.pb-glossary-letters a:hover {
    text-decoration: underline;
}

/* ================================
   SINGLE GLOSSARY PAGE
   ================================ */

.pb-single-glossary h1 {
    color: #0057ff;
    margin-bottom: 1rem;
}

.pb-single-glossary .pb-content {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ================================
   TOOLTIP STYLING
   ================================ */

.pb-tooltip {
    position: absolute;
    background: #0057ff;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    z-index: 9999;
    white-space: nowrap;
    pointer-events: none;
    transform: translateY(-6px);
}
/* ================================
   HOMEPAGE LAYOUT
================================ */

.pb-home {
    font-family: system-ui, sans-serif;
    color: #222;
}

/* Container */
.pb-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

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

.pb-hero {
    padding: 4rem 0 3rem;
    text-align: center;
}

.pb-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #0057ff;
}

.pb-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.pb-hero-subtle {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #666;
}

/* ================================
   SECTION WRAPPER
================================ */

.pb-section {
    padding: 3rem 0;
    border-top: 1px solid #eee;
}

.pb-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #0057ff;
}

/* ================================
   CARD GRID
================================ */

.pb-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.pb-card {
    background: #fff;
    padding: 1.4rem;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    transition: box-shadow 0.2s ease;
}

.pb-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.pb-card h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
    font-size: 1.25rem;
}

.pb-card p {
    margin-bottom: 1rem;
    color: #444;
}

.pb-readmore {
    color: #0057ff;
    font-weight: 600;
    text-decoration: none;
}

.pb-readmore:hover {
    text-decoration: underline;
}

/* ================================
   GLOSSARY SPOTLIGHT
================================ */

.pb-glossary-spotlight {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
}

.pb-glossary-spotlight li {
    margin-bottom: 0.6rem;
}

.pb-glossary-spotlight a {
    color: #0057ff;
    text-decoration: none;
}

.pb-glossary-spotlight a:hover {
    text-decoration: underline;
}

/* ================================
   SOFT CTA (Value-first)
================================ */

.pb-cta-soft {
    text-align: center;
    padding: 2rem 0;
    background: #f8faff;
    border-top: 1px solid #e5e5e5;
}

.pb-cta-soft a {
    color: #0057ff;
    font-weight: 600;
    text-decoration: none;
}

.pb-cta-soft a:hover {
    text-decoration: underline;
}

/* ================================
   RESPONSIVE TWEAKS
================================ */

@media (max-width: 600px) {
    .pb-hero h1 {
        font-size: 1.9rem;
    }

    .pb-glossary-spotlight {
        columns: 1;
    }
}


