/* BLOG WRAP */
.blog-wrap {
    margin: 35px auto;
    /* 🔥 centers horizontally */
    max-width: 1800px;
    padding: 48px 5%;
}

/* POST HEADER */
.post-cats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.post-cat {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #1a7a3c;
    background: #e8f5ed;
    padding: 3px 12px;
    border-radius: 20px;
}

h1 {
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 14px;
}

.post-meta {
    font-size: 18px;
    color: black;
    margin-bottom: 28px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e4da;
}

/* INTRO BOX */
.intro-box {
    background: #e8f5ed;
    border-left: 4px solid #1a7a3c;
    border-radius: 0 8px 8px 0;
    padding: 18px 22px;
    margin-bottom: 32px;
    color: #145f2e;
    line-height: 1.7;
}

/* BODY */
h2 {

    color: #1a1a1a;
    margin: 40px 0 12px;
    line-height: 1.2;
    padding-top: 8px;
}

h3 {
    color: #145f2e;
    margin: 28px 0 8px;
}

p {
    color: black;
    margin-bottom: 18px;
    line-height: 1.78;
}

strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* TIPSTER CARD */
.tipster-card {
    background: white;
    border: 1px solid #e0e4da;
    border-radius: 10px;
    padding: 28px;
    margin: 28px 0;
    position: relative;
    overflow: hidden;
}

.tipster-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #1a7a3c;
}

.tipster-card.gold-top::before {
    background: #f0a500;
}

.tipster-num {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 45px;
    font-weight: 700;
    color: #085a27a7;
    line-height: 1;
}

.tipster-sport-tag {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #1a7a3c;
    background: #e8f5ed;
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.tipster-card-name {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    padding-right: 60px;
}

.tipster-profit-tag {
    font-family: 'Barlow Condensed', sans-serif;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #1a7a3c;
    background: #e8f5ed;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.tipster-stars {
    color: #f0a500;
    font-size: 18px;
    margin-bottom: 12px;
    display: block;
}

.tipster-card p {
    margin-bottom: 14px;
}

.tipster-meta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.meta-pill {
    font-size: 14px;
    font-weight: 600;
    color: black;
    background: #f7f8f5;
    border: 1px solid #e0e4da;
    padding: 4px 12px;
    border-radius: 20px;
}

.meta-pill.green {
    color: #1a7a3c;
    background: #e8f5ed;
    border-color: #b8ddc6;
}

.tipster-cta-btn {
    display: inline-block;
    background: #1a7a3c;
    color: #f3f1f1;
    font-weight: 700;
    font-size: 20px;
    padding: 11px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.tipster-cta-btn:hover {
    background: #145f2e;
    text-decoration: none;
    color: rgb(255, 252, 252);
}

.tipster-cta-btn.gold-btn {
    background: #f0a500;
    color: #1a1a1a;
}

.tipster-cta-btn.gold-btn:hover {
    background: #c8880a;
    color: #090101;
}

/* HIGHLIGHT BOX */
.highlight-box {
    background: #fff8e6;
    border: 1px solid #f0d080;
    border-radius: 10px;
    padding: 20px 22px;
    margin: 24px 0;
}

.highlight-box .hb-title {
    font-weight: 700;
    color: #8a6000;
    font-size: 20px;
    margin-bottom: 8px;
}

.highlight-box p {
    color: #6b5200;
    margin-bottom: 0;
}

/* CTA BLOCK */
.cta-block {
    background: #145f2e;
    border-radius: 10px;
    padding: 32px 28px;
    text-align: center;
    margin: 36px 0;
}

.cta-block h3 {
    color: #fff;
    margin-bottom: 8px;
}

.cta-block p {
    color: rgba(255, 255, 255);

    margin-bottom: 20px;
}

.cta-block a {
    background: #f0a500;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 18px;
    padding: 13px 32px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    transition: background 0.2s;
}

.cta-block a:hover {
    background: #c8880a;
    color: #110101;
    text-decoration: none;
}

/* INLINE CTA */
.inline-cta {
    background: #e8f5ed;
    border: 1px solid #b8ddc6;
    border-radius: 10px;
    padding: 18px 22px;
    margin: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.inline-cta p {
    color: #145f2e;
    font-weight: 500;
    margin-bottom: 0;
}

.inline-cta a {
    background: #1a7a3c;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 7px;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
}

.inline-cta a:hover {
    background: #145f2e;
    text-decoration: none;
}

/* POST TAGS */
.post-tags {
    display: flex;
    justify-content: center;
    margin-top: 26px;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: -25px;
}

.kw-tag {
    display: inline-block;
    background: #f7f8f5;
    border: 1px solid #e0e4da;
    color: black;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: capitalize;
}

@media(max-width:768px) {
    .kw-tag {
        font-size: 1.2rem !important;
    }

    .tipster-num {
        font-size: 30px !important;
    }

}