/* Prairie Fire Hero - Divi 5 Friendly */
.pfp-hero-section {
position: relative;
min-height: 760px;
overflow: hidden;
display: flex;
align-items: center;
}
.pfp-hero-section::before {
content: "";
position: absolute;
inset: 0;
background:
linear-gradient(
90deg,
rgba(0, 0, 0, 0.86) 0%,
rgba(0, 0, 0, 0.70) 42%,
rgba(0, 0, 0, 0.25) 70%,
rgba(0, 0, 0, 0.50) 100%
),
linear-gradient(
180deg,
rgba(0, 0, 0, 0.15) 0%,
rgba(0, 0, 0, 0.05) 45%,
rgba(0, 0, 0, 0.78) 100%
);
z-index: 1;
pointer-events: none;
}
/* Keeps Divi wrappers from shrinking/weirdly aligning the content */
.pfp-hero-section .et_pb_row,
.pfp-hero-section .et_pb_column,
.pfp-hero-section .et_pb_module,
.pfp-hero-section .et_pb_code,
.pfp-hero-section .et_pb_code_inner {
position: relative;
z-index: 2;
width: 100%;
max-width: none;
}
/* Main layout */
.pfp-hero-content {
width: min(100%, 1320px);
margin: 0 auto;
padding: 110px 48px 90px;
display: grid;
grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
gap: 56px;
align-items: center;
color: #ffffff;
box-sizing: border-box;
}
/* Left text block */
.pfp-hero-left {
max-width: 720px;
}
.pfp-kicker {
color: #ff7900 !important;
text-transform: uppercase;
font-size: 15px;
font-weight: 800;
letter-spacing: 0.08em;
margin-bottom: 18px;
}
.pfp-hero-content h1 {
margin: 0;
font-size: clamp(44px, 5.2vw, 78px);
line-height: 0.98;
font-weight: 900;
text-transform: uppercase;
letter-spacing: -0.035em;
color: #ffffff !important;
}
.pfp-hero-content h1 span {
color: #ff7900 !important;
}
.pfp-accent-line {
width: 72px;
height: 4px;
background: #ff7900;
margin: 30px 0 28px;
}
.pfp-hero-content p {
max-width: 650px;
font-size: 20px;
line-height: 1.55;
color: rgba(255, 255, 255, 0.9) !important;
margin: 0 0 36px;
}
/* Buttons */
.pfp-buttons {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
.pfp-btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 165px;
padding: 16px 26px;
border-radius: 5px;
text-transform: uppercase;
font-size: 14px;
font-weight: 800;
letter-spacing: 0.04em;
text-decoration: none !important;
transition: all 0.2s ease;
box-sizing: border-box;
}
.pfp-btn-primary {
background: #ff7900;
color: #ffffff !important;
border: 2px solid #ff7900;
}
.pfp-btn-secondary {
background: rgba(0, 0, 0, 0.32);
color: #ffffff !important;
border: 2px solid #ff7900;
}
/* Right info card */
.pfp-hero-card {
justify-self: end;
width: 100%;
max-width: 460px;
padding: 34px 36px 30px;
border: 1px solid rgba(255, 255, 255, 0.18);
border-radius: 14px;
background: rgba(4, 8, 14, 0.80);
box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
backdrop-filter: blur(12px);
box-sizing: border-box;
}
.pfp-hero-card h2 {
margin: 0 0 20px;
color: #ff7900 !important;
font-size: 18px;
line-height: 1.25;
text-transform: uppercase;
font-weight: 900;
letter-spacing: 0.03em;
}
/* This fixes the list being too far left */
.pfp-hero-card ul {
list-style: none !important;
padding: 0 !important;
margin: 0 !important;
}
.pfp-hero-card li {
position: relative;
padding: 14px 0 14px 32px !important;
margin: 0 !important;
color: rgba(255, 255, 255, 0.92) !important;
font-size: 15px;
line-height: 1.4;
border-bottom: 1px solid rgba(255, 255, 255, 0.10);
box-sizing: border-box;
}
.pfp-hero-card li:last-child {
border-bottom: none;
}
.pfp-hero-card li::before {
content: "✓";
position: absolute;
left: 0;
top: 14px;
color: #ff7900 !important;
font-weight: 900;
}
/* Tablet */
@media (max-width: 980px) {
.pfp-hero-section {
min-height: auto;
align-items: flex-start;
}
.pfp-hero-section::before {
background:
linear-gradient(
180deg,
rgba(0, 0, 0, 0.88) 0%,
rgba(0, 0, 0, 0.70) 45%,
rgba(0, 0, 0, 0.88) 100%
);
}
.pfp-hero-content {
grid-template-columns: 1fr;
gap: 36px;
padding: 90px 34px 64px;
}
.pfp-hero-left {
max-width: 760px;
}
.pfp-hero-card {
justify-self: start;
max-width: 620px;
}
}
/* Mobile */
@media (max-width: 640px) {
.pfp-hero-content {
padding: 74px 22px 48px;
gap: 32px;
}
.pfp-kicker {
font-size: 12px;
margin-bottom: 14px;
}
.pfp-hero-content h1 {
font-size: clamp(34px, 11vw, 44px);
line-height: 1.04;
letter-spacing: -0.025em;
}
.pfp-accent-line {
margin: 24px 0 22px;
}
.pfp-hero-content p {
font-size: 16px;
line-height: 1.5;
margin-bottom: 28px;
}
.pfp-buttons {
flex-direction: column;
gap: 12px;
}
.pfp-btn {
width: 100%;
min-width: 0;
padding: 15px 20px;
}
.pfp-hero-card {
max-width: none;
padding: 26px 22px 22px;
border-radius: 12px;
}
.pfp-hero-card h2 {
font-size: 16px;
margin-bottom: 16px;
}
.pfp-hero-card li {
font-size: 14px;
padding: 12px 0 12px 28px !important;
}
.pfp-hero-card li::before {
top: 12px;
}
}
/* Very small phones */
@media (max-width: 390px) {
.pfp-hero-content {
padding-left: 18px;
padding-right: 18px;
}
.pfp-hero-content h1 {
font-size: 32px;
}
.pfp-hero-card {
padding-left: 18px;
padding-right: 18px;
}
}