/* Guide content pages — bettingguides.co.uk — Editorial layout */
.guide-content { padding: 36px 0 56px 0; }
.guide-content .guide-layout { display: flex; flex-direction: column; gap: 32px; }
.guide-content .guide-main { flex: 1; min-width: 0; }
/* Article body text */
.guide-main .guide-body h2 { font-size: 26px; margin-top: 48px; margin-bottom: 18px; padding-left: 18px; position: relative; }
.guide-main .guide-body h2::before { content: ''; position: absolute; left: 0; top: 6px; bottom: 6px; width: 4px; background: #E8A838; border-radius: 2px; }
.guide-main .guide-body h3 { font-size: 20px; margin-top: 36px; margin-bottom: 14px; }
.guide-main .guide-body p { margin-bottom: 18px; line-height: 1.75; color: #444444; }
.guide-main .guide-body ul { margin-bottom: 22px; }
.guide-main .guide-body li { margin-bottom: 8px; line-height: 1.65; color: #444444; }
.guide-main .guide-body strong { color: #1a1a1a; }
/* Inline images — editorial crop */
.guide-main .guide-image { margin: 36px 0; position: relative; }
.guide-main .guide-image img { width: 100%; display: block; border-radius: 4px; }
.guide-main .guide-image figcaption { padding: 12px 0 0 12px; border-left: 2px solid #E8A838; font-size: 13px; color: #888888; margin-top: 12px; }
/* Key points / highlight box — editorial pull-quote style */
.key-points { background: #ffffff; border-top: 3px solid #1B2D4F; padding: 28px; margin: 32px 0; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); }
.key-points .key-points-title { font-size: 11px; font-weight: 800; color: #1B2D4F; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 2px; }
.key-points ul { list-style: none; padding: 0; margin: 0; }
.key-points li { padding: 10px 0 10px 24px; position: relative; font-size: 15px; color: #444444; border-bottom: 1px solid #f3f3f0; }
.key-points li:last-child { border-bottom: none; }
.key-points li::before { content: ''; position: absolute; left: 0; top: 18px; width: 12px; height: 6px; border-left: 2px solid #1B2D4F; border-bottom: 2px solid #1B2D4F; transform: rotate(-45deg); }
/* Step-by-step guide boxes — numbered editorial */
.step-list { counter-reset: step; margin: 32px 0; }
.step-item { display: flex; gap: 20px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #eaeae6; }
.step-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.step-item .step-number { flex-shrink: 0; width: 44px; height: 44px; background: #1B2D4F; color: #E8A838; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; }
.step-item .step-content { flex: 1; }
.step-item .step-title { font-size: 17px; font-weight: 800; margin-bottom: 6px; color: #1a1a1a; }
.step-item .step-text { font-size: 15px; color: #555555; line-height: 1.65; margin: 0; }
/* Guide cards grid (homepage) — magazine layout */
.guides-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 44px; }
.guide-card { background: #ffffff; overflow: hidden; text-decoration: none; color: inherit; display: block; transition: transform 0.2s, box-shadow 0.2s; position: relative; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04); }
.guide-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); color: inherit; }
.guide-card .card-image { height: 200px; overflow: hidden; background: #e8e8e4; position: relative; }
.guide-card .card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.guide-card:hover .card-image img { transform: scale(1.04); }
.guide-card .card-body { padding: 24px; }
.guide-card .card-category { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: #E8A838; margin-bottom: 8px; }
.guide-card .card-title { font-size: 19px; font-weight: 800; color: #1a1a1a; margin-bottom: 8px; line-height: 1.25; letter-spacing: -0.2px; }
.guide-card .card-excerpt { font-size: 14px; color: #777777; line-height: 1.55; margin: 0; }
/* Strategy cards (no image) */
.guide-card.no-image .card-body { padding: 28px; border-left: 3px solid #E8A838; }
@media (min-width: 768px) {
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-content { padding: 44px 0 72px 0; }
  .guide-main .guide-body h2 { font-size: 30px; }
}
@media (min-width: 1024px) {
  .guides-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
