:root {
    --gpp-forest-950: #09281f;
    --gpp-forest-900: #123d2e;
    --gpp-forest-800: #1a503b;
    --gpp-forest-700: #256448;
    --gpp-green-600: #2f7d5c;
    --gpp-green-500: #4d9873;
    --gpp-green-300: #9ed1ad;
    --gpp-green-100: #e9f5eb;
    --gpp-cream-100: #fbf9f3;
    --gpp-cream-200: #f4efe3;
    --gpp-gold-500: #c49a5a;
    --gpp-gold-300: #e4c895;
    --gpp-ink: #18342b;
    --gpp-muted: #667a72;
    --gpp-line: #dfe8e1;
    --gpp-white: #ffffff;
    --gpp-danger: #a74232;
    --gpp-shadow-sm: 0 8px 25px rgba(18, 61, 46, .08);
    --gpp-shadow-md: 0 20px 55px rgba(18, 61, 46, .13);
    --gpp-radius-sm: 14px;
    --gpp-radius-md: 22px;
    --gpp-radius-lg: 34px;
    --gpp-container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--gpp-cream-100);
    color: var(--gpp-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.gpp-menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--gpp-green-300); color: var(--gpp-forest-950); }

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.screen-reader-text:focus,
.gpp-skip-link:focus {
    clip: auto !important;
    width: auto;
    height: auto;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    background: #fff;
    color: #111;
    z-index: 99999;
    border-radius: 8px;
}
.gpp-skip-link { position: absolute; left: -9999px; }
.gpp-container { width: min(calc(100% - 40px), var(--gpp-container)); margin-inline: auto; }
.gpp-main { min-height: 60vh; overflow: clip; }

.gpp-announcement {
    background: var(--gpp-forest-950);
    color: #eaf6ef;
    font-size: 13px;
    letter-spacing: .015em;
}
.gpp-announcement .gpp-container {
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.gpp-announcement a { display: inline-flex; align-items: center; gap: 10px; }
.gpp-announcement strong { color: var(--gpp-gold-300); }

.gpp-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(251, 249, 243, .96);
    border-bottom: 1px solid rgba(18, 61, 46, .09);
    backdrop-filter: blur(16px);
    transition: box-shadow .25s ease, background .25s ease;
}
.gpp-site-header.is-scrolled { box-shadow: 0 8px 30px rgba(18, 61, 46, .08); background: rgba(255,255,255,.96); }
.gpp-header-row { min-height: 86px; display: grid; grid-template-columns: minmax(210px, 310px) minmax(280px, 1fr) auto auto; align-items: center; gap: 22px; }
.gpp-branding { min-width: 0; }
.gpp-branding .custom-logo-link { display: inline-flex; align-items: center; }
.gpp-branding .custom-logo { max-height: 58px; width: auto; }
.gpp-brand-mark { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.gpp-brand-mark img { flex: 0 0 auto; }
.gpp-brand-mark span { display: grid; min-width: 0; line-height: 1.1; }
.gpp-brand-mark strong { color: var(--gpp-forest-900); font-size: clamp(18px, 2vw, 23px); letter-spacing: -.035em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gpp-brand-mark small { color: var(--gpp-muted); font-size: 11px; margin-top: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.gpp-search-form { position: relative; display: flex; align-items: center; width: 100%; }
.gpp-search-field {
    width: 100%;
    height: 50px;
    border: 1px solid var(--gpp-line);
    border-radius: 999px;
    background: #fff;
    color: var(--gpp-ink);
    padding: 0 105px 0 47px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.gpp-search-field::placeholder { color: #87968f; }
.gpp-search-field:focus { border-color: var(--gpp-green-500); box-shadow: 0 0 0 4px rgba(77, 152, 115, .13); }
.gpp-search-icon { position: absolute; left: 18px; width: 16px; height: 16px; border: 2px solid var(--gpp-green-600); border-radius: 50%; pointer-events: none; }
.gpp-search-icon::after { content: ""; position: absolute; width: 7px; height: 2px; right: -5px; bottom: -2px; background: var(--gpp-green-600); transform: rotate(45deg); border-radius: 2px; }
.gpp-search-submit { position: absolute; right: 5px; height: 40px; border: 0; border-radius: 999px; background: var(--gpp-green-600); color: #fff; padding: 0 19px; font-size: 13px; font-weight: 750; }
.gpp-search-submit:hover { background: var(--gpp-forest-800); }

.gpp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid var(--gpp-green-600);
    border-radius: 999px;
    background: var(--gpp-green-600);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(47, 125, 92, .2);
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.gpp-button:hover { background: var(--gpp-forest-800); border-color: var(--gpp-forest-800); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(18, 61, 46, .22); }
.gpp-button--compact { min-height: 44px; padding-inline: 19px; }
.gpp-button--light { background: #fff; color: var(--gpp-forest-900); border-color: #fff; box-shadow: none; }
.gpp-button--light:hover { background: var(--gpp-green-100); border-color: var(--gpp-green-100); }
.gpp-text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gpp-forest-800); font-weight: 800; font-size: 14px; }
.gpp-text-link span { transition: transform .2s ease; }
.gpp-text-link:hover span { transform: translateX(4px); }

.gpp-menu-toggle { display: none; width: 46px; height: 46px; padding: 10px; border: 1px solid var(--gpp-line); border-radius: 50%; background: #fff; }
.gpp-menu-toggle > span:not(.screen-reader-text) { display: block; width: 21px; height: 2px; margin: 4px auto; background: var(--gpp-forest-900); border-radius: 2px; transition: transform .2s, opacity .2s; }
.gpp-menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.gpp-menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.gpp-menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.gpp-nav-shell { border-top: 1px solid rgba(18, 61, 46, .07); }
.gpp-nav-row { min-height: 48px; display: flex; align-items: center; }
.gpp-primary-nav { width: 100%; }
.gpp-menu, .gpp-menu ul { list-style: none; margin: 0; padding: 0; }
.gpp-menu { display: flex; align-items: center; gap: 30px; }
.gpp-menu > li { position: relative; }
.gpp-menu a { display: flex; align-items: center; min-height: 48px; color: #365248; font-size: 14px; font-weight: 750; }
.gpp-menu > li > a:hover, .gpp-menu > .current-menu-item > a, .gpp-menu > .current-menu-ancestor > a { color: var(--gpp-green-600); }
.gpp-menu .menu-item-has-children > a::after { content: "⌄"; margin-left: 7px; font-size: 12px; }
.gpp-menu .sub-menu { position: absolute; left: -18px; top: calc(100% - 2px); min-width: 230px; padding: 10px; background: #fff; border: 1px solid var(--gpp-line); border-radius: 16px; box-shadow: var(--gpp-shadow-md); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }
.gpp-menu li:hover > .sub-menu, .gpp-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.gpp-menu .sub-menu a { min-height: 40px; padding: 0 12px; border-radius: 9px; }
.gpp-menu .sub-menu a:hover { background: var(--gpp-green-100); }
.gpp-mobile-search { display: none; }

.gpp-hero { position: relative; background: radial-gradient(circle at 80% 25%, rgba(158,209,173,.38), transparent 31%), linear-gradient(145deg, #f7f2e7 0%, #eef6ec 54%, #e4f1e7 100%); border-bottom: 1px solid rgba(18,61,46,.08); }
.gpp-hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(18,61,46,.09) .8px, transparent .8px); background-size: 22px 22px; mask-image: linear-gradient(to right, rgba(0,0,0,.6), transparent 70%); pointer-events: none; }
.gpp-hero__grid { position: relative; min-height: 640px; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); align-items: center; gap: 50px; padding-block: 70px; }
.gpp-hero__content { position: relative; z-index: 2; }
.gpp-eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--gpp-green-600); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .14em; }
.gpp-eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; border-radius: 2px; }
.gpp-hero h1 { max-width: 760px; margin: 17px 0 22px; color: var(--gpp-forest-950); font-family: Georgia, "Times New Roman", serif; font-size: clamp(44px, 5.3vw, 76px); line-height: .98; letter-spacing: -.05em; font-weight: 700; }
.gpp-hero__content > p { max-width: 650px; margin: 0; color: #4f675e; font-size: clamp(17px, 1.7vw, 20px); line-height: 1.65; }
.gpp-hero__search { max-width: 690px; margin-top: 30px; }
.gpp-hero__search .gpp-search-field { height: 62px; border: 0; padding-left: 54px; padding-right: 126px; box-shadow: 0 18px 45px rgba(18,61,46,.14); }
.gpp-hero__search .gpp-search-submit { height: 50px; right: 6px; padding-inline: 25px; }
.gpp-hero__search .gpp-search-icon { left: 22px; }
.gpp-hero__actions { display: flex; align-items: center; gap: 24px; margin-top: 27px; }
.gpp-hero__proof { display: flex; align-items: center; gap: 14px; margin-top: 32px; padding-top: 25px; border-top: 1px solid rgba(18,61,46,.13); max-width: 570px; }
.gpp-hero__proof strong { color: var(--gpp-forest-900); font-size: 27px; letter-spacing: -.04em; }
.gpp-hero__proof span { max-width: 260px; color: var(--gpp-muted); font-size: 13px; line-height: 1.35; }
.gpp-hero__visual { position: relative; min-height: 540px; display: grid; place-items: center; }
.gpp-hero__visual > img { position: relative; z-index: 2; width: min(100%, 620px); filter: drop-shadow(0 24px 25px rgba(18,61,46,.08)); }
.gpp-hero__orb { position: absolute; z-index: 0; width: 460px; height: 460px; border-radius: 50%; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.8); box-shadow: inset 0 0 0 20px rgba(255,255,255,.18); }
.gpp-floating-card { position: absolute; z-index: 3; display: grid; grid-template-columns: 42px 1fr; column-gap: 10px; align-items: center; min-width: 220px; padding: 14px 16px; background: rgba(255,255,255,.93); border: 1px solid rgba(255,255,255,.94); border-radius: 18px; box-shadow: var(--gpp-shadow-md); backdrop-filter: blur(10px); }
.gpp-floating-card > span { grid-row: 1 / 3; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--gpp-green-100); color: var(--gpp-green-600); font-weight: 900; }
.gpp-floating-card strong { align-self: end; font-size: 14px; }
.gpp-floating-card small { align-self: start; color: var(--gpp-muted); font-size: 11px; }
.gpp-floating-card--one { top: 115px; left: -5px; }
.gpp-floating-card--two { right: -12px; bottom: 80px; }

.gpp-trust-strip { background: #fff; border-bottom: 1px solid var(--gpp-line); }
.gpp-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.gpp-trust-grid > div { position: relative; padding: 28px 34px 28px 58px; border-right: 1px solid var(--gpp-line); }
.gpp-trust-grid > div:last-child { border-right: 0; }
.gpp-trust-grid > div::before { content: "✓"; position: absolute; left: 20px; top: 31px; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--gpp-green-100); color: var(--gpp-green-600); font-size: 12px; font-weight: 900; }
.gpp-trust-grid strong, .gpp-trust-grid span { display: block; }
.gpp-trust-grid strong { color: var(--gpp-forest-900); font-size: 14px; }
.gpp-trust-grid span { margin-top: 3px; color: var(--gpp-muted); font-size: 12px; }

.gpp-section { padding-block: 86px; }
.gpp-section--soft { background: #eef4ed; }
.gpp-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.gpp-section-heading h2 { margin: 10px 0 0; color: var(--gpp-forest-950); font-family: Georgia, "Times New Roman", serif; font-size: clamp(32px, 4vw, 48px); line-height: 1.08; letter-spacing: -.035em; }
.gpp-section-heading > p { max-width: 430px; margin: 0; color: var(--gpp-muted); font-size: 14px; }
.gpp-section-heading--light h2, .gpp-section-heading--light .gpp-eyebrow { color: #fff; }

.gpp-collection-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; }
.gpp-collection-card { min-height: 145px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 15px; padding: 23px; background: #fff; border: 1px solid var(--gpp-line); border-radius: var(--gpp-radius-md); box-shadow: 0 5px 18px rgba(18,61,46,.04); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.gpp-collection-card:hover { transform: translateY(-4px); border-color: var(--gpp-green-300); box-shadow: var(--gpp-shadow-sm); }
.gpp-collection-card__number { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 13px; background: var(--gpp-green-100); color: var(--gpp-green-600); font-size: 12px; font-weight: 850; }
.gpp-collection-card h3 { margin: 0; color: var(--gpp-forest-900); font-size: 17px; line-height: 1.25; }
.gpp-collection-card p { margin: 7px 0 0; color: var(--gpp-muted); font-size: 12px; }
.gpp-card-arrow { color: var(--gpp-green-600); font-size: 21px; transition: transform .2s; }
.gpp-collection-card:hover .gpp-card-arrow { transform: translateX(4px); }

.gpp-featured-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.gpp-content-card { min-width: 0; overflow: hidden; background: #fff; border: 1px solid var(--gpp-line); border-radius: var(--gpp-radius-md); box-shadow: 0 7px 25px rgba(18,61,46,.055); transition: transform .22s ease, box-shadow .22s ease; }
.gpp-content-card:hover { transform: translateY(-5px); box-shadow: var(--gpp-shadow-md); }
.gpp-content-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(135deg, #dcebdd, #f5efe3); }
.gpp-content-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gpp-content-card:hover .gpp-content-card__media > img { transform: scale(1.035); }
.gpp-content-card__placeholder { width: 100%; height: 100%; display: grid; place-items: center; background: radial-gradient(circle at 35% 30%, #fff, transparent 35%), linear-gradient(135deg,#e4f0e4,#f5efe3); }
.gpp-content-card__placeholder img { width: 64px; height: 64px; object-fit: contain; opacity: .85; }
.gpp-content-card__body { padding: 23px; }
.gpp-content-card__meta { display: flex; justify-content: space-between; gap: 12px; color: var(--gpp-green-600); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.gpp-content-card h3 { margin: 12px 0 10px; color: var(--gpp-forest-950); font-family: Georgia, "Times New Roman", serif; font-size: 23px; line-height: 1.16; letter-spacing: -.025em; }
.gpp-content-card h3 a:hover { color: var(--gpp-green-600); }
.gpp-content-card p { margin: 0 0 16px; color: var(--gpp-muted); font-size: 13px; line-height: 1.6; }
.gpp-card-link { display: inline-flex; align-items: center; gap: 7px; color: var(--gpp-forest-800); font-size: 13px; font-weight: 850; }
.gpp-content-card--compact { display: grid; grid-template-columns: 110px minmax(0, 1fr); border-radius: 18px; }
.gpp-content-card--compact .gpp-content-card__media { aspect-ratio: auto; min-height: 145px; }
.gpp-content-card--compact .gpp-content-card__body { padding: 17px; }
.gpp-content-card--compact h3 { font-size: 18px; margin: 8px 0 15px; }
.gpp-content-card--compact .gpp-content-card__meta { font-size: 9px; }

.gpp-product-section { background: var(--gpp-forest-900); color: #fff; }
.gpp-product-section .gpp-eyebrow { color: var(--gpp-green-300); }
.gpp-products-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.gpp-product-card { overflow: hidden; background: #fff; color: var(--gpp-ink); border-radius: var(--gpp-radius-md); }
.gpp-product-card__image { display: block; aspect-ratio: 1 / .84; overflow: hidden; background: #f3f5f2; }
.gpp-product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gpp-product-card:hover .gpp-product-card__image img { transform: scale(1.04); }
.gpp-product-card__body { padding: 19px; }
.gpp-product-card__tag { display: inline-flex; padding: 5px 9px; border-radius: 999px; background: var(--gpp-green-100); color: var(--gpp-green-600); font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.gpp-product-card h3 { margin: 12px 0 17px; font-size: 17px; line-height: 1.3; }
.gpp-product-card__bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 15px; border-top: 1px solid var(--gpp-line); }
.gpp-product-card__bottom strong { color: var(--gpp-forest-900); font-size: 17px; }
.gpp-product-card__bottom a { color: var(--gpp-green-600); font-size: 12px; font-weight: 850; }
.gpp-commerce-banner { padding-block: 50px; background: var(--gpp-forest-900); }
.gpp-commerce-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; color: #fff; }
.gpp-commerce-banner h2 { margin: 9px 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(32px,4vw,47px); line-height: 1.1; }
.gpp-commerce-banner p { max-width: 750px; margin: 0; color: #cfe0d7; }
.gpp-commerce-banner .gpp-eyebrow { color: var(--gpp-green-300); }

.gpp-latest-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.gpp-ad-slot { padding-block: 25px; }
.gpp-ad-slot .gpp-widget { margin: 0; text-align: center; }
.gpp-empty-note { grid-column: 1 / -1; padding: 30px; border: 1px dashed var(--gpp-green-300); border-radius: var(--gpp-radius-md); color: var(--gpp-muted); text-align: center; }

.gpp-archive-hero { padding: 70px 0 60px; background: linear-gradient(145deg, var(--gpp-cream-200), #e7f1e8); border-bottom: 1px solid var(--gpp-line); }
.gpp-archive-hero h1 { max-width: 880px; margin: 13px 0 10px; color: var(--gpp-forest-950); font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 6vw, 68px); line-height: 1.02; letter-spacing: -.045em; }
.gpp-archive-hero p, .gpp-archive-description { max-width: 720px; margin: 0; color: var(--gpp-muted); font-size: 17px; }
.gpp-archive-description p { margin: 0; }
.gpp-archive-shell { padding-block: 60px 90px; }
.gpp-archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.gpp-results-count { margin: 0 0 24px; color: var(--gpp-muted); }
.gpp-search-hero__form { max-width: 720px; margin-top: 26px; }
.gpp-search-hero__form .gpp-search-field { height: 60px; box-shadow: var(--gpp-shadow-sm); }

.navigation.pagination { margin-top: 48px; }
.nav-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.page-numbers { min-width: 42px; height: 42px; padding: 0 13px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--gpp-line); border-radius: 999px; background: #fff; color: var(--gpp-forest-800); font-size: 13px; font-weight: 800; }
.page-numbers.current, .page-numbers:hover { background: var(--gpp-green-600); border-color: var(--gpp-green-600); color: #fff; }

.gpp-breadcrumbs { display: flex; align-items: center; gap: 9px; overflow: hidden; margin: 0 0 28px; color: var(--gpp-muted); font-size: 12px; white-space: nowrap; }
.gpp-breadcrumbs a { color: var(--gpp-green-600); font-weight: 700; }
.gpp-breadcrumbs > span:last-child { overflow: hidden; text-overflow: ellipsis; }
.gpp-article-shell, .gpp-page-shell { padding-top: 34px; padding-bottom: 90px; }
.gpp-article-header, .gpp-page-header { margin-bottom: 35px; }
.gpp-article-header__main { max-width: 950px; }
.gpp-article-category { display: inline-flex; padding: 7px 12px; border-radius: 999px; background: var(--gpp-green-100); color: var(--gpp-green-600); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .09em; }
.gpp-article-header h1, .gpp-page-header h1 { max-width: 1030px; margin: 16px 0 18px; color: var(--gpp-forest-950); font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 6.3vw, 76px); line-height: 1.02; letter-spacing: -.05em; }
.gpp-article-lead, .gpp-page-header > p { max-width: 850px; margin: 0; color: var(--gpp-muted); font-size: clamp(17px, 2vw, 21px); }
.gpp-article-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 22px; color: #7b8c85; font-size: 12px; font-weight: 700; }
.gpp-article-meta span { display: inline-flex; align-items: center; gap: 7px; }
.gpp-article-meta span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gpp-green-500); }
.gpp-article-cover, .gpp-page-cover { overflow: hidden; margin-top: 34px; border-radius: var(--gpp-radius-lg); box-shadow: var(--gpp-shadow-sm); background: #e7eee8; }
.gpp-article-cover img, .gpp-page-cover img { display: block; width: 100%; max-height: 660px; object-fit: cover; }
.gpp-article-layout, .gpp-page-layout { display: grid; grid-template-columns: minmax(0, 820px) minmax(250px, 320px); justify-content: space-between; gap: 55px; align-items: start; }
.gpp-entry-content { min-width: 0; color: #29443a; font-family: Georgia, "Times New Roman", serif; font-size: 19px; line-height: 1.85; }
.gpp-entry-content > *:first-child { margin-top: 0; }
.gpp-entry-content h2, .gpp-entry-content h3, .gpp-entry-content h4 { color: var(--gpp-forest-950); font-family: Inter, ui-sans-serif, system-ui, sans-serif; line-height: 1.2; letter-spacing: -.03em; scroll-margin-top: 150px; }
.gpp-entry-content h2 { margin: 2.1em 0 .7em; font-size: clamp(29px, 4vw, 40px); }
.gpp-entry-content h3 { margin: 1.8em 0 .65em; font-size: 26px; }
.gpp-entry-content h4 { font-size: 21px; }
.gpp-entry-content p { margin: 0 0 1.45em; }
.gpp-entry-content a { color: var(--gpp-green-600); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.gpp-entry-content ul, .gpp-entry-content ol { padding-left: 1.3em; margin-bottom: 1.5em; }
.gpp-entry-content li { margin-bottom: .55em; padding-left: .25em; }
.gpp-entry-content blockquote { margin: 2em 0; padding: 24px 27px; border: 0; border-left: 5px solid var(--gpp-green-500); border-radius: 0 var(--gpp-radius-sm) var(--gpp-radius-sm) 0; background: var(--gpp-green-100); color: var(--gpp-forest-900); font-size: 21px; }
.gpp-entry-content img { border-radius: 16px; }
.gpp-entry-content figure { max-width: 100%; margin: 2em 0; }
.gpp-entry-content figcaption { margin-top: 8px; color: var(--gpp-muted); font-family: Inter, sans-serif; font-size: 12px; text-align: center; }
.gpp-entry-content table { width: 100%; border-collapse: collapse; margin: 2em 0; font-family: Inter, sans-serif; font-size: 14px; }
.gpp-entry-content th, .gpp-entry-content td { padding: 13px 14px; border: 1px solid var(--gpp-line); text-align: left; }
.gpp-entry-content th { background: var(--gpp-forest-900); color: #fff; }
.gpp-entry-content tr:nth-child(even) td { background: #f3f7f3; }
.gpp-entry-content .alignwide { width: min(1100px, calc(100vw - 40px)); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.gpp-entry-content .alignfull { width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); }
.gpp-article-sidebar { min-width: 0; }
.gpp-sticky-box { position: sticky; top: 160px; margin-bottom: 22px; padding: 24px; border: 1px solid var(--gpp-line); border-radius: var(--gpp-radius-md); background: #fff; box-shadow: var(--gpp-shadow-sm); }
.gpp-sticky-box h2 { margin: 10px 0 8px; color: var(--gpp-forest-950); font-family: Georgia, "Times New Roman", serif; font-size: 25px; line-height: 1.16; }
.gpp-sticky-box p { margin: 0 0 18px; color: var(--gpp-muted); font-size: 13px; }
.gpp-sticky-box .gpp-search-field { height: 46px; padding-right: 46px; }
.gpp-sticky-box .gpp-search-submit { width: 38px; height: 38px; overflow: hidden; padding: 0; color: transparent; }
.gpp-sticky-box .gpp-search-submit::after { content: "→"; color: #fff; position: absolute; inset: 0; display: grid; place-items: center; }
.gpp-widget { margin: 0 0 22px; padding: 22px; border: 1px solid var(--gpp-line); border-radius: var(--gpp-radius-md); background: #fff; }
.gpp-widget__title { margin: 0 0 14px; color: var(--gpp-forest-950); font-size: 18px; }
.gpp-widget ul { margin: 0; padding: 0; list-style: none; }
.gpp-widget li + li { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--gpp-line); }
.gpp-inline-offer { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin: 55px 0 30px; padding: 28px; border-radius: var(--gpp-radius-md); background: linear-gradient(135deg, var(--gpp-green-100), #f7f0e2); border: 1px solid #d8e7da; font-family: Inter, sans-serif; }
.gpp-inline-offer h2 { margin: 9px 0 8px; font-size: 25px; }
.gpp-inline-offer p { margin: 0; color: var(--gpp-muted); font-size: 14px; line-height: 1.6; }
.gpp-inline-offer .gpp-button { flex: 0 0 auto; text-decoration: none; }
.gpp-article-end-widget { margin-top: 35px; font-family: Inter, sans-serif; }
.gpp-article-footer { margin-top: 35px; padding-top: 28px; border-top: 1px solid var(--gpp-line); }
.gpp-tags { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; color: var(--gpp-muted); font-size: 12px; }
.gpp-tags a { padding: 5px 10px; border-radius: 999px; background: var(--gpp-green-100); color: var(--gpp-green-600); }
.post-navigation { margin-top: 35px; }
.post-navigation .nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.post-navigation a { height: 100%; display: grid; padding: 20px; border: 1px solid var(--gpp-line); border-radius: 17px; background: #fff; }
.post-navigation .nav-next { text-align: right; }
.post-navigation span { color: var(--gpp-muted); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.post-navigation strong { margin-top: 4px; color: var(--gpp-forest-900); font-size: 14px; }
.gpp-related-section { margin-top: 75px; }
.gpp-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }

.gpp-empty-state { max-width: 680px; margin: 30px auto; padding: 50px; border: 1px solid var(--gpp-line); border-radius: var(--gpp-radius-lg); background: #fff; text-align: center; }
.gpp-empty-state > img { width: 72px; }
.gpp-empty-state h2 { margin: 15px 0 7px; color: var(--gpp-forest-950); font-family: Georgia, serif; font-size: 32px; }
.gpp-empty-state p { color: var(--gpp-muted); }
.gpp-empty-state .gpp-search-form { margin-top: 25px; }
.gpp-not-found { min-height: 70vh; display: grid; place-items: center; padding: 80px 0; background: radial-gradient(circle at 70% 20%, #dbeede, transparent 35%), var(--gpp-cream-200); }
.gpp-not-found__inner { text-align: center; }
.gpp-not-found__code { display: block; color: rgba(47,125,92,.18); font-size: clamp(100px, 20vw, 220px); font-weight: 900; line-height: .72; letter-spacing: -.09em; }
.gpp-not-found h1 { margin: 20px 0 10px; color: var(--gpp-forest-950); font-family: Georgia, serif; font-size: clamp(42px,7vw,72px); }
.gpp-not-found p { max-width: 650px; margin: 0 auto; color: var(--gpp-muted); }
.gpp-not-found__search { max-width: 650px; margin: 28px auto 20px; }

.gpp-site-footer { background: var(--gpp-forest-950); color: #d8e5dd; }
.gpp-footer-cta { background: var(--gpp-forest-800); border-bottom: 1px solid rgba(255,255,255,.08); }
.gpp-footer-cta__inner { min-height: 235px; display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.gpp-footer-cta .gpp-eyebrow { color: var(--gpp-green-300); }
.gpp-footer-cta h2 { margin: 10px 0 8px; color: #fff; font-family: Georgia, serif; font-size: clamp(34px,4vw,50px); line-height: 1.08; }
.gpp-footer-cta p { max-width: 700px; margin: 0; color: #bad1c5; }
.gpp-footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: 45px; padding-block: 65px; }
.gpp-brand-mark--footer strong { color: #fff; }
.gpp-brand-mark--footer small { color: #9eb7aa; }
.gpp-footer-brand > p { max-width: 330px; margin-top: 18px; color: #9eb7aa; font-size: 13px; }
.gpp-site-footer .gpp-widget { margin: 0; padding: 0; border: 0; border-radius: 0; background: transparent; color: #b7cabf; font-size: 13px; }
.gpp-site-footer .gpp-widget__title { color: #fff; font-size: 14px; }
.gpp-site-footer .gpp-widget li + li { border-color: rgba(255,255,255,.08); }
.gpp-site-footer .gpp-widget a:hover { color: #fff; }
.gpp-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.gpp-footer-bottom .gpp-container { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.gpp-footer-bottom p { margin: 0; color: #86a094; font-size: 11px; }
.gpp-footer-menu { display: flex; flex-wrap: wrap; gap: 18px; margin: 0; padding: 0; list-style: none; color: #9bb2a6; font-size: 11px; }

/* WooCommerce */
.woocommerce .woocommerce-breadcrumb { margin: 25px 0; color: var(--gpp-muted); font-size: 12px; }
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product { overflow: hidden; padding: 14px; border: 1px solid var(--gpp-line); border-radius: var(--gpp-radius-md); background: #fff; box-shadow: var(--gpp-shadow-sm); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { color: var(--gpp-forest-950); font-size: 17px; }
.woocommerce ul.products li.product .price { color: var(--gpp-green-600); font-weight: 850; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit { border-radius: 999px; background: var(--gpp-green-600); color: #fff; }
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover { background: var(--gpp-forest-800); color: #fff; }

/* Generated plugin pages keep their own content, but receive the premium shell. */
body[class*="-page"] .tcs-shell,
body.tcs-temperatura-ideal-page .tcs-shell { width: min(calc(100% - 40px), var(--gpp-container)); margin-inline: auto; padding-block: 38px 70px; }
body.tcs-temperatura-ideal-page .tcs-hero { border-radius: var(--gpp-radius-lg); }

@media (max-width: 1100px) {
    .gpp-header-row { grid-template-columns: minmax(190px, 260px) 1fr auto auto; gap: 14px; }
    .gpp-header-cta { display: none; }
    .gpp-hero__grid { grid-template-columns: 1.05fr .95fr; gap: 20px; }
    .gpp-floating-card--one { left: 0; }
    .gpp-floating-card--two { right: 0; }
    .gpp-collection-grid { grid-template-columns: repeat(2, 1fr); }
    .gpp-products-grid { grid-template-columns: repeat(2, 1fr); }
    .gpp-article-layout, .gpp-page-layout { grid-template-columns: minmax(0, 1fr) 270px; gap: 35px; }
    .gpp-footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .gpp-container { width: min(calc(100% - 30px), var(--gpp-container)); }
    .gpp-header-row { min-height: 72px; grid-template-columns: 1fr auto; }
    .gpp-header-search, .gpp-header-cta { display: none; }
    .gpp-menu-toggle { display: block; }
    .gpp-nav-shell { position: fixed; inset: auto 0 0 0; top: 107px; background: #fff; transform: translateX(100%); visibility: hidden; transition: transform .25s ease, visibility .25s ease; overflow-y: auto; }
    .admin-bar .gpp-nav-shell { top: 139px; }
    .gpp-nav-shell.is-open { transform: none; visibility: visible; }
    .gpp-nav-row { min-height: calc(100vh - 107px); align-items: stretch; flex-direction: column; padding-block: 18px 30px; }
    .gpp-menu { display: block; }
    .gpp-menu > li { border-bottom: 1px solid var(--gpp-line); }
    .gpp-menu a { min-height: 51px; justify-content: space-between; }
    .gpp-menu .sub-menu { position: static; min-width: 0; padding: 0 0 10px 14px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; }
    .gpp-menu li:hover > .sub-menu, .gpp-menu li:focus-within > .sub-menu { display: block; }
    .gpp-mobile-search { display: block; margin-top: 20px; }
    .gpp-hero__grid { min-height: auto; grid-template-columns: 1fr; padding-block: 58px 42px; }
    .gpp-hero__content { text-align: center; }
    .gpp-hero h1, .gpp-hero__content > p, .gpp-hero__search, .gpp-hero__proof { margin-left: auto; margin-right: auto; }
    .gpp-hero__actions { justify-content: center; }
    .gpp-hero__proof { justify-content: center; text-align: left; }
    .gpp-hero__visual { min-height: 430px; max-width: 620px; margin: 0 auto; width: 100%; }
    .gpp-hero__orb { width: 380px; height: 380px; }
    .gpp-floating-card--one { top: 70px; }
    .gpp-floating-card--two { bottom: 40px; }
    .gpp-trust-grid { grid-template-columns: 1fr; padding-block: 8px; }
    .gpp-trust-grid > div { border-right: 0; border-bottom: 1px solid var(--gpp-line); }
    .gpp-trust-grid > div:last-child { border-bottom: 0; }
    .gpp-featured-grid, .gpp-archive-grid, .gpp-related-grid { grid-template-columns: repeat(2, 1fr); }
    .gpp-article-layout, .gpp-page-layout { grid-template-columns: 1fr; }
    .gpp-article-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .gpp-sticky-box { position: static; }
    .gpp-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .gpp-container { width: min(calc(100% - 22px), var(--gpp-container)); }
    .gpp-announcement { font-size: 11px; }
    .gpp-announcement .gpp-container { min-height: 34px; }
    .gpp-announcement strong { display: none; }
    .gpp-header-row { min-height: 66px; }
    .gpp-brand-mark img { width: 39px; height: 39px; }
    .gpp-brand-mark strong { font-size: 18px; }
    .gpp-brand-mark small { display: none; }
    .gpp-nav-shell { top: 100px; }
    .admin-bar .gpp-nav-shell { top: 146px; }
    .gpp-hero__grid { padding-top: 45px; }
    .gpp-hero h1 { margin-top: 13px; font-size: clamp(40px, 12vw, 57px); }
    .gpp-hero__content > p { font-size: 16px; }
    .gpp-hero__search .gpp-search-field { height: 57px; padding-right: 55px; font-size: 13px; }
    .gpp-hero__search .gpp-search-submit { width: 46px; height: 46px; overflow: hidden; padding: 0; color: transparent; }
    .gpp-hero__search .gpp-search-submit::after { content: "→"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 18px; }
    .gpp-hero__actions { flex-direction: column; gap: 15px; }
    .gpp-hero__proof { align-items: flex-start; }
    .gpp-hero__proof strong { font-size: 23px; }
    .gpp-hero__visual { min-height: 340px; }
    .gpp-hero__orb { width: 290px; height: 290px; }
    .gpp-floating-card { min-width: 178px; padding: 10px 12px; grid-template-columns: 35px 1fr; }
    .gpp-floating-card > span { width: 35px; height: 35px; }
    .gpp-floating-card strong { font-size: 12px; }
    .gpp-floating-card small { font-size: 9px; }
    .gpp-floating-card--one { top: 45px; left: -5px; }
    .gpp-floating-card--two { right: -4px; bottom: 25px; }
    .gpp-section { padding-block: 58px; }
    .gpp-section-heading { display: block; }
    .gpp-section-heading > p, .gpp-section-heading > a { margin-top: 15px; }
    .gpp-section-heading h2 { font-size: 36px; }
    .gpp-collection-grid, .gpp-featured-grid, .gpp-products-grid, .gpp-latest-grid, .gpp-archive-grid, .gpp-related-grid { grid-template-columns: 1fr; }
    .gpp-collection-card { min-height: 112px; padding: 18px; }
    .gpp-content-card--compact { grid-template-columns: 100px 1fr; }
    .gpp-commerce-banner__inner, .gpp-footer-cta__inner { display: block; }
    .gpp-commerce-banner .gpp-button, .gpp-footer-cta .gpp-button { margin-top: 24px; }
    .gpp-archive-hero { padding-block: 50px 42px; }
    .gpp-archive-hero h1 { font-size: 45px; }
    .gpp-archive-shell { padding-block: 42px 65px; }
    .gpp-article-shell, .gpp-page-shell { padding-top: 22px; padding-bottom: 65px; }
    .gpp-breadcrumbs { margin-bottom: 19px; }
    .gpp-article-header h1, .gpp-page-header h1 { font-size: clamp(39px, 12vw, 55px); }
    .gpp-article-cover, .gpp-page-cover { margin-top: 25px; border-radius: 20px; }
    .gpp-entry-content { font-size: 17px; line-height: 1.78; }
    .gpp-entry-content h2 { font-size: 30px; }
    .gpp-entry-content h3 { font-size: 24px; }
    .gpp-entry-content table { display: block; overflow-x: auto; }
    .gpp-inline-offer { display: block; padding: 22px; }
    .gpp-inline-offer .gpp-button { width: 100%; margin-top: 20px; }
    .gpp-article-sidebar { grid-template-columns: 1fr; }
    .post-navigation .nav-links { grid-template-columns: 1fr; }
    .gpp-footer-cta__inner { padding-block: 48px; }
    .gpp-footer-grid { grid-template-columns: 1fr; gap: 32px; padding-block: 48px; }
    .gpp-footer-bottom .gpp-container { flex-direction: column; justify-content: center; padding-block: 18px; text-align: center; }
    .gpp-footer-menu { justify-content: center; }
    .gpp-empty-state { padding: 35px 20px; }
    body.tcs-temperatura-ideal-page .tcs-shell { width: min(calc(100% - 22px), var(--gpp-container)); padding-top: 22px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

.admin-bar .gpp-site-header { top: 32px; }
@media (max-width: 782px) {
    .admin-bar .gpp-site-header { top: 46px; }
}

/* ==========================================================
   v1.1.0 — compatibilidade com grandes portais e plugins SEO
   ========================================================== */

/* Nunca permita que estilos antigos do tema reduzam a escala do documento. */
html,
body {
    zoom: 1 !important;
    font-size: 16px;
}

/* O menu de reserva é pequeno e não consulta/lista as dezenas de milhares de páginas. */
.gpp-menu--fallback {
    justify-content: flex-start;
}

/* Conteúdo que já estava salvo na página escolhida como inicial. */
.gpp-home-page-content {
    padding-top: 0;
}
.gpp-home-page-content__inner {
    max-width: 920px;
    margin-inline: auto;
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid var(--gpp-line);
    border-radius: var(--gpp-radius-lg);
    background: #fff;
    box-shadow: var(--gpp-shadow-sm);
}

/* Páginas físicas criadas pelos geradores SEO devem ocupar a largura normal. */
body[class*="-ideal-page"] .gpp-main,
body[class*="-seo-page"] .gpp-main,
body[class*="-ideal-page"] main[class$="-shell"],
body[class*="-seo-page"] main[class$="-shell"] {
    overflow: visible;
}
body[class*="-ideal-page"] main[class$="-shell"],
body[class*="-seo-page"] main[class$="-shell"] {
    width: min(1120px, calc(100% - 32px));
    max-width: 1120px;
    margin: 32px auto 64px;
    padding: 0;
}

@media (max-width: 680px) {
    body[class*="-ideal-page"] main[class$="-shell"],
    body[class*="-seo-page"] main[class$="-shell"] {
        width: min(100% - 20px, 1120px);
        margin-top: 16px;
    }
    .gpp-home-page-content__inner {
        padding: 24px 20px;
        border-radius: 22px;
    }
}


/* ==========================================================
   v1.2.0 — portal editorial em texto e comentários ocultos
   ========================================================== */
.gpp-daily-section .gpp-section-heading {
    margin-bottom: 28px;
}

.gpp-daily-tip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(24px, 5vw, 64px);
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid var(--gpp-line);
    border-radius: var(--gpp-radius-lg);
    background:
        radial-gradient(circle at 100% 0%, rgba(141, 176, 133, .16), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #fbfaf5 100%);
    box-shadow: var(--gpp-shadow-sm);
}

.gpp-daily-tip__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: var(--gpp-green-600);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.gpp-daily-tip h3 {
    max-width: 850px;
    margin: 14px 0 14px;
    color: var(--gpp-forest-950);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.gpp-daily-tip h3 a:hover {
    color: var(--gpp-green-600);
}

.gpp-daily-tip p {
    max-width: 820px;
    margin: 0;
    color: var(--gpp-muted);
    font-size: 15px;
    line-height: 1.75;
}

.gpp-content-card--text-only,
.gpp-content-card--compact.gpp-content-card--text-only {
    display: block;
    grid-template-columns: none;
}

.gpp-content-card--text-only .gpp-content-card__body {
    min-height: 100%;
    padding: 24px;
}

.gpp-content-card--compact.gpp-content-card--text-only h3 {
    margin-bottom: 12px;
}

/* O portal não exibe comentários, mesmo quando outro template/plugin tentar inseri-los. */
#comments,
.comments-area,
.comment-respond,
.comment-list,
.gpp-comments,
.wp-block-comments,
.wp-block-post-comments-form {
    display: none !important;
}

@media (max-width: 760px) {
    .gpp-daily-tip {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gpp-daily-tip .gpp-button {
        width: 100%;
    }
}


/* ==========================================================
   v1.4.0 — posts sem sidebar e páginas premium ampliadas
   ========================================================== */
.gpp-article-shell--wide,
.gpp-page-shell--wide {
    max-width: 1240px;
}

.gpp-article--full,
.gpp-page--full {
    max-width: 100%;
}

.gpp-article-layout--full,
.gpp-page-layout--full {
    display: block;
}

.gpp-article-layout--full .gpp-entry-content,
.gpp-page-layout--full .gpp-entry-content {
    width: min(100%, 980px);
    max-width: 980px;
}

.gpp-page-header--premium {
    padding: clamp(28px, 4.4vw, 48px);
    border: 1px solid var(--gpp-line);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(141, 176, 133, .16), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #f7faf7 100%);
    box-shadow: var(--gpp-shadow-sm);
}

.gpp-page-layout--full .gpp-entry-content,
.gpp-entry-content--page {
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid rgba(18,61,46,.08);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(18,61,46,.05);
}

.gpp-entry-content--page > *:last-child,
.gpp-article-layout--full .gpp-entry-content > *:last-child {
    margin-bottom: 0;
}

.gpp-entry-content--page .wp-block-group,
.gpp-entry-content--page .wp-block-columns,
.gpp-entry-content--page .wp-block-cover,
.gpp-entry-content--page .wp-block-media-text,
.gpp-entry-content--page .wp-block-table,
.gpp-entry-content--page .wp-block-quote {
    margin-bottom: 1.6em;
}

/* Alguns plugins SEO têm home própria. Quando usam o cabeçalho do tema, 
   recebem uma moldura premium para não ficarem "crus". */
body[class*="-ideal-page"] main[class$="-shell"],
body[class*="-seo-page"] main[class$="-shell"] {
    width: min(1240px, calc(100% - 32px));
    max-width: 1240px;
    margin: 32px auto 72px;
}

body[class*="-ideal-page"] main[class$="-shell"] > section:first-child,
body[class*="-seo-page"] main[class$="-shell"] > section:first-child {
    margin-top: 0;
}

body[class*="-ideal-page"] .ais-home-hero,
body[class*="-ideal-page"] .tcs-home-hero,
body[class*="-ideal-page"] .gts-home-hero,
body[class*="-ideal-page"] .ris-home-hero,
body[class*="-ideal-page"] .tis-home-hero,
body[class*="-ideal-page"] .uis-home-hero,
body[class*="-ideal-page"] .cis-home-hero,
body[class*="-ideal-page"] .fis-home-hero,
body[class*="-seo-page"] .ais-home-hero,
body[class*="-seo-page"] .tcs-home-hero,
body[class*="-seo-page"] .gts-home-hero,
body[class*="-seo-page"] .ris-home-hero,
body[class*="-seo-page"] .tis-home-hero,
body[class*="-seo-page"] .uis-home-hero,
body[class*="-seo-page"] .cis-home-hero,
body[class*="-seo-page"] .fis-home-hero {
    border-radius: 28px;
    box-shadow: 0 14px 40px rgba(18,61,46,.07);
}

body[class*="-ideal-page"] .ais-directory,
body[class*="-ideal-page"] .tcs-explain-grid,
body[class*="-ideal-page"] .ais-explain-grid,
body[class*="-ideal-page"] .ais-search-tool,
body[class*="-ideal-page"] .tcs-search-tool,
body[class*="-seo-page"] .ais-directory,
body[class*="-seo-page"] .tcs-explain-grid,
body[class*="-seo-page"] .ais-explain-grid,
body[class*="-seo-page"] .ais-search-tool,
body[class*="-seo-page"] .tcs-search-tool {
    border-radius: 24px;
}

/* Se algum shortcode gerar listas enormes na página raiz, melhora leitura. */
.gpp-entry-content select,
.gpp-entry-content input[type="text"],
.gpp-entry-content input[type="search"],
.gpp-entry-content input[type="number"],
.gpp-entry-content input[type="email"],
.gpp-entry-content textarea,
body[class*="-ideal-page"] main[class$="-shell"] select,
body[class*="-ideal-page"] main[class$="-shell"] input,
body[class*="-seo-page"] main[class$="-shell"] select,
body[class*="-seo-page"] main[class$="-shell"] input {
    max-width: 100%;
}

@media (max-width: 900px) {
    .gpp-article-layout--full .gpp-entry-content,
    .gpp-page-layout--full .gpp-entry-content {
        width: 100%;
        max-width: 100%;
    }

    .gpp-page-layout--full .gpp-entry-content,
    .gpp-entry-content--page {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .gpp-page-header--premium {
        padding: 24px 18px;
        border-radius: 22px;
    }
}
