/** * ThinkRank Hero Section (Site Identity → Hero & Branding) * * Base styling for the [thinkrank_hero] shortcode / thinkrank_hero() output. * Themes may override any of these rules. */ .thinkrank-hero { position: relative; padding: 4rem 1.5rem; text-align: center; background-size: cover; background-position: center; background-repeat: no-repeat; } .thinkrank-hero--has-image::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.45); } .thinkrank-hero__inner { position: relative; max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1rem; } .thinkrank-hero__title { margin: 0; font-size: 2.25rem; line-height: 1.15; } .thinkrank-hero__subtitle { margin: 0; font-size: 1.125rem; opacity: 0.9; } .thinkrank-hero--has-image .thinkrank-hero__title, .thinkrank-hero--has-image .thinkrank-hero__subtitle { color: #fff; } .thinkrank-hero__cta { display: inline-block; margin-top: 0.5rem; padding: 0.75rem 1.5rem; background: #2563eb; color: #fff; border-radius: 6px; text-decoration: none; font-weight: 600; } .thinkrank-hero__cta:hover, .thinkrank-hero__cta:focus { background: #1d4ed8; }