:root {
--ink: #111827;
--text: #344054;
--muted: #667085;
--line: #d9e3df;
--paper: #ffffff;
--soft: #f5f8f6;
--warm: #f7efe6;
--primary: #006b64;
--primary-dark: #004f4a;
--accent: #b7471b;
--accent-dark: #923514;
--gold: #d9a237;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
color: var(--text);
background: var(--paper);
overflow-x: hidden;
font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
font-size: 16px;
line-height: 1.65;
letter-spacing: 0;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
}
img {
max-width: 100%;
height: auto;
}
a {
color: var(--primary);
}
a:hover {
color: var(--primary-dark);
}
h1,
h2,
h3,
h4 {
margin: 0;
color: var(--ink);
font-family: inherit;
font-weight: 750;
line-height: 1.08;
letter-spacing: 0;
}
p {
margin: 0;
}
.site-wrap {
width: min(1160px, calc(100% - 32px));
margin: 0 auto;
}
.skip-link {
position: fixed;
top: 12px;
left: 12px;
z-index: 100000;
padding: 10px 14px;
transform: translateY(-160%);
border-radius: 4px;
background: #ffffff;
color: var(--ink);
font-weight: 800;
text-decoration: none;
}
.skip-link:focus {
transform: translateY(0);
}
.site-header {
position: sticky;
top: 0;
z-index: 50;
border-bottom: 1px solid rgba(17, 24, 39, 0.08);
background: rgba(255, 255, 255, 0.96);
}
.site-header-inner {
display: flex;
min-height: 82px;
align-items: center;
justify-content: space-between;
gap: 28px;
}
.itala-nav-toggle {
display: none;
min-height: 40px;
padding: 8px 12px;
border: 1px solid var(--line);
border-radius: 4px;
background: #ffffff;
color: var(--ink);
font: inherit;
font-weight: 750;
}
.itala-nav-toggle:hover,
.itala-nav-toggle:focus {
border-color: var(--primary);
color: var(--primary);
}
.site-brand {
display: inline-flex;
align-items: center;
gap: 10px;
min-width: 0;
color: var(--ink);
font-size: 1.2rem;
font-weight: 850;
text-decoration: none;
white-space: nowrap;
}
.site-brand-text {
overflow: hidden;
text-overflow: ellipsis;
}
.site-brand img {
display: block;
width: auto;
max-width: 220px;
max-height: 46px;
}
.site-brand-mark {
display: grid;
width: 38px;
height: 38px;
place-items: center;
border-radius: 4px;
background: var(--ink);
color: #ffffff;
font-weight: 900;
}
.site-nav {
display: flex;
justify-content: flex-end;
min-width: 0;
}
.site-menu,
.site-menu ul,
.footer-menu {
margin: 0;
padding: 0;
list-style: none;
}
.site-menu {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: flex-end;
gap: 4px 8px;
}
.site-menu li {
position: relative;
}
.site-menu a {
display: inline-flex;
align-items: center;
min-height: 40px;
padding: 8px 10px;
border-radius: 4px;
color: var(--ink);
font-size: 0.95rem;
font-weight: 750;
text-decoration: none;
}
.site-menu a:hover,
.site-menu a:focus {
background: var(--soft);
color: var(--primary);
}
.site-menu .sub-menu {
position: absolute;
top: 100%;
left: 0;
display: none;
min-width: 230px;
padding: 8px;
border: 1px solid var(--line);
border-radius: 4px;
background: #ffffff;
box-shadow: 0 18px 42px rgba(17, 24, 39, 0.12);
}
.site-menu li:hover > .sub-menu,
.site-menu li:focus-within > .sub-menu {
display: block;
}
.site-menu .sub-menu a {
width: 100%;
justify-content: flex-start;
}
.hero {
overflow: hidden;
padding: 78px 0 66px;
background:
linear-gradient(135deg, rgba(0, 107, 100, 0.96), rgba(15, 23, 42, 0.98) 58%, rgba(146, 53, 20, 0.94)),
#0f172a;
color: #ffffff;
}
.hero-grid {
display: grid;
grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.97fr);
gap: 48px;
align-items: center;
}
.hero-copy {
min-width: 0;
}
.kicker {
margin: 0 0 12px;
color: var(--primary);
font-size: 0.78rem;
font-weight: 850;
text-transform: uppercase;
}
.hero .kicker,
.cta-band .kicker,
.final-band .kicker {
color: #9ee9dc;
}
.hero h1 {
max-width: 760px;
color: #ffffff;
font-size: 54px;
font-weight: 750;
overflow-wrap: break-word;
}
.hero-lead {
max-width: 690px;
margin-top: 22px;
color: rgba(255, 255, 255, 0.88);
font-size: 1.2rem;
line-height: 1.55;
overflow-wrap: break-word;
}
.action-row {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 30px;
}
.button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 48px;
padding: 13px 20px;
border: 2px solid transparent;
border-radius: 4px;
font-weight: 850;
line-height: 1.2;
text-align: center;
text-decoration: none;
}
.button:hover,
.button:focus {
text-decoration: none;
}
.button-primary {
background: var(--accent);
border-color: var(--accent);
color: #ffffff;
}
.button-primary:hover,
.button-primary:focus {
background: var(--accent-dark);
border-color: var(--accent-dark);
color: #ffffff;
}
.button-light {
background: #ffffff;
border-color: #ffffff;
color: var(--ink);
}
.button-light:hover,
.button-light:focus {
background: var(--ink);
border-color: var(--ink);
color: #ffffff;
}
.button-dark {
width: 100%;
min-height: 44px;
padding: 10px 13px;
background: var(--ink);
border-color: var(--ink);
color: #ffffff;
}
.button-dark:hover,
.button-dark:focus {
background: var(--primary-dark);
border-color: var(--primary-dark);
color: #ffffff;
}
.hero-proof {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 10px;
margin: 30px 0 0;
padding: 0;
list-style: none;
}
.hero-proof li {
min-height: 76px;
padding: 14px;
border: 1px solid rgba(255, 255, 255, 0.22);
border-radius: 4px;
background: rgba(255, 255, 255, 0.1);
color: rgba(255, 255, 255, 0.92);
font-weight: 750;
}
.hero-visual {
position: relative;
min-height: 460px;
border-radius: 4px;
}
.hero-visual img {
display: block;
width: 100%;
min-height: 460px;
object-fit: cover;
border-radius: 4px;
box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}
.hero-note {
position: absolute;
right: 18px;
bottom: 18px;
width: min(300px, calc(100% - 36px));
padding: 20px;
border: 1px solid rgba(255, 255, 255, 0.42);
border-radius: 4px;
background: rgba(15, 23, 42, 0.94);
color: #ffffff;
}
.hero-note span {
display: block;
color: #9ee9dc;
font-size: 0.78rem;
font-weight: 850;
text-transform: uppercase;
}
.hero-note strong {
display: block;
margin-top: 6px;
font-size: 2rem;
line-height: 1;
}
.hero-note p {
margin-top: 10px;
color: rgba(255, 255, 255, 0.86);
}
.value-strip {
padding: 24px 0;
background: var(--warm);
}
.value-grid,
.card-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 20px;
}
.value-grid div {
padding: 18px 20px;
border-left: 4px solid var(--accent);
border-radius: 4px;
background: #ffffff;
}
.value-grid strong,
.value-grid span {
display: block;
}
.value-grid strong {
color: var(--ink);
}
.value-grid span {
margin-top: 4px;
color: var(--muted);
}
.section {
padding: 72px 0;
}
.section-soft {
background: var(--soft);
}
.section-head {
max-width: 790px;
margin: 0 auto 36px;
text-align: center;
}
.section-head p,
.section-copy {
margin-top: 14px;
color: var(--muted);
}
.section h2,
.cta-band h2,
.final-band h2 {
font-size: 36px;
}
.split,
.cta-grid {
display: grid;
grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
gap: 46px;
align-items: start;
}
.text-panel,
.content-card,
.info-card,
.article-card,
.package-card {
border: 1px solid var(--line);
border-radius: 4px;
background: #ffffff;
}
.text-panel {
padding: 28px;
background: var(--soft);
}
.text-panel p + p {
margin-top: 14px;
}
.text-link {
display: inline-flex;
margin-top: 20px;
color: var(--primary);
font-weight: 850;
text-decoration: none;
}
.text-link:hover {
text-decoration: underline;
}
.package-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 18px;
}
.package-card {
display: flex;
flex-direction: column;
gap: 14px;
min-height: 100%;
padding: 24px;
box-shadow: 0 14px 32px rgba(17, 24, 39, 0.06);
}
.package-card.is-featured {
border-color: var(--accent);
box-shadow: 0 20px 42px rgba(183, 71, 27, 0.16);
}
.package-label {
align-self: flex-start;
padding: 5px 9px;
border-radius: 4px;
background: var(--warm);
color: var(--accent-dark);
font-size: 0.76rem;
font-weight: 850;
text-transform: uppercase;
}
.package-card.is-featured .package-label {
background: var(--accent);
color: #ffffff;
}
.package-card h3,
.info-card h3,
.article-card h3 {
font-size: 1.28rem;
}
.package-card p,
.info-card p,
.article-card p {
color: var(--muted);
}
.package-card ul {
display: grid;
gap: 8px;
margin: 0;
padding: 0;
list-style: none;
}
.package-card li {
position: relative;
padding-left: 21px;
color: var(--text);
font-weight: 700;
}
.package-card li::before {
position: absolute;
top: 0.55em;
left: 0;
width: 9px;
height: 9px;
border-radius: 2px;
background: var(--primary);
content: "";
}
.price {
margin-top: auto;
color: var(--ink);
font-size: 1.55rem;
font-weight: 900;
line-height: 1.1;
}
.steps {
display: grid;
gap: 14px;
margin: 0;
padding: 0;
list-style: none;
counter-reset: step;
}
.steps li {
position: relative;
min-height: 86px;
padding: 18px 18px 18px 70px;
border: 1px solid var(--line);
border-radius: 4px;
background: var(--soft);
counter-increment: step;
}
.steps li::before {
position: absolute;
top: 18px;
left: 18px;
display: grid;
width: 34px;
height: 34px;
place-items: center;
border-radius: 4px;
background: var(--primary);
color: #ffffff;
content: counter(step);
font-weight: 900;
}
.steps strong,
.steps span {
display: block;
}
.steps span {
margin-top: 4px;
color: var(--muted);
}
.cta-band,
.final-band {
padding: 58px 0;
background: var(--ink);
color: #ffffff;
}
.final-band {
background: linear-gradient(135deg, rgba(0, 107, 100, 0.96), rgba(15, 23, 42, 0.98));
}
.cta-band h2,
.cta-band p,
.final-band h2 {
color: #ffffff;
}
.cta-grid {
grid-template-columns: minmax(0, 1fr) auto;
align-items: center;
}
.info-card,
.article-card {
padding: 24px;
border-top: 4px solid var(--primary);
}
.article-card h3 a {
color: var(--ink);
text-decoration: none;
}
.article-card h3 a:hover {
color: var(--primary);
text-decoration: underline;
}
.faq-list {
display: grid;
gap: 12px;
}
.faq-list details {
border: 1px solid var(--line);
border-radius: 4px;
background: #ffffff;
}
.faq-list summary {
cursor: pointer;
padding: 18px 20px;
color: var(--ink);
font-weight: 850;
}
.faq-list details p {
padding: 0 20px 20px;
color: var(--muted);
}
.guides {
background: var(--warm);
}
.site-main {
min-height: 52vh;
}
.content-layout {
max-width: 920px;
}
.content-card {
padding: 34px;
}
.entry-content > * + * {
margin-top: 1rem;
}
.article-page {
background: #ffffff;
}
.article-hero {
padding: 64px 0 54px;
background:
linear-gradient(135deg, rgba(0, 107, 100, 0.96), rgba(15, 23, 42, 0.98) 60%, rgba(146, 53, 20, 0.92)),
#0f172a;
color: #ffffff;
}
.article-hero-grid {
display: grid;
grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
gap: 42px;
align-items: center;
}
.article-hero-copy h1 {
color: #ffffff;
font-size: 48px;
overflow-wrap: break-word;
}
.article-lead {
margin-top: 18px;
color: rgba(255, 255, 255, 0.88);
font-size: 1.12rem;
line-height: 1.55;
}
.article-meta {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 22px;
color: rgba(255, 255, 255, 0.82);
font-weight: 750;
}
.article-meta span {
padding: 7px 10px;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 4px;
background: rgba(255, 255, 255, 0.08);
}
.article-hero-media {
margin: 0;
overflow: hidden;
border-radius: 4px;
background: rgba(255, 255, 255, 0.08);
box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}
.article-hero-media img {
display: block;
width: 100%;
aspect-ratio: 16 / 9;
object-fit: cover;
}
.article-body-section {
padding: 56px 0 72px;
}
.article-body-layout {
display: grid;
grid-template-columns: minmax(0, 760px) minmax(280px, 340px);
gap: 42px;
align-items: start;
}
.article-body {
min-width: 0;
color: #344054;
font-size: 1.08rem;
line-height: 1.78;
}
.article-body > * + * {
margin-top: 1.15rem;
}
.article-body h2,
.article-body h3 {
margin-top: 2rem;
color: var(--ink);
line-height: 1.18;
}
.article-body h2 {
font-size: 30px;
}
.article-body h3 {
font-size: 24px;
}
.article-body ul,
.article-body ol {
padding-left: 1.25rem;
}
.article-body li + li {
margin-top: 0.5rem;
}
.article-body img {
display: block;
width: 100%;
border-radius: 4px;
}
.article-body .wp-caption,
.article-body figure {
max-width: 100%;
}
.article-side-cta {
position: sticky;
top: 104px;
padding: 24px;
border: 1px solid rgba(183, 71, 27, 0.34);
border-radius: 4px;
background: var(--warm);
}
.article-side-cta h2 {
font-size: 28px;
}
.article-side-cta p:not(.kicker) {
margin-top: 12px;
color: #4b5563;
}
.article-side-cta .button {
width: 100%;
margin-top: 14px;
}
.commerce-card {
max-width: 1160px;
}
.site-footer {
padding: 42px 0 24px;
background: #0f172a;
color: rgba(255, 255, 255, 0.82);
}
.site-footer-grid {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
gap: 28px;
align-items: start;
}
.site-footer strong {
display: block;
color: #ffffff;
font-size: 1.1rem;
}
.site-footer p {
max-width: 520px;
margin-top: 8px;
}
.site-footer .legal-data {
color: rgba(255, 255, 255, 0.72);
font-size: 0.9rem;
line-height: 1.55;
}
.footer-menu {
display: flex;
flex-wrap: wrap;
gap: 10px 18px;
justify-content: flex-end;
}
.footer-menu a,
.site-footer-bottom a {
color: rgba(255, 255, 255, 0.82);
text-decoration: none;
}
.footer-menu a:hover,
.site-footer-bottom a:hover {
color: #ffffff;
text-decoration: underline;
}
.site-footer-bottom {
display: flex;
flex-wrap: wrap;
gap: 10px 16px;
margin-top: 28px;
padding-top: 18px;
border-top: 1px solid rgba(255, 255, 255, 0.14);
font-size: 0.92rem;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
border-radius: 4px;
background: var(--accent);
color: #ffffff;
font-weight: 850;
}
.product-page {
background: #ffffff;
overflow-x: hidden;
}
.product-hero {
padding: 64px 0;
background:
linear-gradient(135deg, rgba(0, 107, 100, 0.96), rgba(15, 23, 42, 0.98) 58%, rgba(146, 53, 20, 0.94)),
#0f172a;
color: #ffffff;
}
.product-hero-grid {
display: grid;
grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
gap: 42px;
align-items: center;
}
.product-media {
position: relative;
border-radius: 4px;
overflow: hidden;
background: rgba(255, 255, 255, 0.08);
box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}
.product-media img {
display: block;
width: 100%;
aspect-ratio: 16 / 10;
object-fit: cover;
}
.product-badge {
position: absolute;
top: 14px;
left: 14px;
padding: 7px 10px;
border-radius: 4px;
background: var(--accent);
color: #ffffff;
font-size: 0.78rem;
font-weight: 850;
text-transform: uppercase;
}
.product-buy-box {
min-width: 0;
padding: 32px;
border: 1px solid rgba(255, 255, 255, 0.18);
border-radius: 4px;
background: rgba(255, 255, 255, 0.08);
}
.product-buy-box h1 {
color: #ffffff;
font-size: 46px;
overflow-wrap: break-word;
}
.product-intro {
margin-top: 16px;
color: rgba(255, 255, 255, 0.88);
font-size: 1.08rem;
overflow-wrap: break-word;
}
.product-price {
margin-top: 22px;
color: #ffffff;
font-size: 2rem;
font-weight: 900;
line-height: 1.1;
}
.product-price del {
margin-right: 8px;
color: rgba(255, 255, 255, 0.62);
font-size: 1.25rem;
}
.product-price ins {
color: #ffffff;
text-decoration: none;
}
.product-actions {
margin-top: 24px;
}
.product-actions form.cart {
display: flex;
flex-wrap: wrap;
gap: 12px;
align-items: center;
margin: 0;
}
.product-actions .quantity input.qty {
width: 74px;
min-height: 48px;
border: 1px solid rgba(255, 255, 255, 0.35);
border-radius: 4px;
background: #ffffff;
color: var(--ink);
font-size: 1rem;
font-weight: 800;
text-align: center;
}
.product-page .product-actions .single_add_to_cart_button,
.product-page .product-actions .single_add_to_cart_button.button,
.product-page .product-actions .single_add_to_cart_button.button.alt {
min-height: 48px;
padding: 13px 22px;
border: 0;
border-radius: 4px;
background: var(--accent);
color: #ffffff;
font: inherit;
font-weight: 850;
cursor: pointer;
}
.product-page .product-actions .single_add_to_cart_button:hover,
.product-page .product-actions .single_add_to_cart_button:focus,
.product-page .product-actions .single_add_to_cart_button.button.alt:hover,
.product-page .product-actions .single_add_to_cart_button.button.alt:focus {
background: var(--accent-dark);
color: #ffffff;
}
.product-trust {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 10px;
margin: 24px 0 0;
padding: 0;
list-style: none;
}
.product-trust li {
min-height: 64px;
padding: 12px;
border: 1px solid rgba(255, 255, 255, 0.22);
border-radius: 4px;
background: rgba(255, 255, 255, 0.1);
color: rgba(255, 255, 255, 0.92);
font-weight: 750;
}
.product-detail-grid {
display: grid;
grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
gap: 22px;
}
.detail-card {
padding: 28px;
border: 1px solid var(--line);
border-radius: 4px;
background: #ffffff;
}
.detail-card h2,
.product-description h2 {
margin-bottom: 18px;
font-size: 30px;
}
.detail-card-accent {
border-color: rgba(183, 71, 27, 0.34);
background: var(--warm);
}
.mini-steps {
display: grid;
gap: 14px;
margin: 0;
padding: 0;
list-style: none;
counter-reset: mini-step;
}
.mini-steps li {
position: relative;
min-height: 72px;
padding-left: 58px;
counter-increment: mini-step;
}
.mini-steps li::before {
position: absolute;
top: 0;
left: 0;
display: grid;
width: 38px;
height: 38px;
place-items: center;
border-radius: 4px;
background: var(--primary);
color: #ffffff;
content: counter(mini-step);
font-weight: 900;
}
.mini-steps strong,
.mini-steps span {
display: block;
}
.mini-steps span {
margin-top: 3px;
color: #4b5563;
}
.product-description {
max-width: 920px;
}
.product-card-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 20px;
}
.product-related .kicker {
color: var(--primary);
}
.related-product-card {
display: flex;
flex-direction: column;
gap: 12px;
min-height: 100%;
padding: 18px;
border: 1px solid var(--line);
border-radius: 4px;
background: #ffffff;
}
.related-image {
display: block;
overflow: hidden;
border-radius: 4px;
background: var(--soft);
}
.related-image img {
display: block;
width: 100%;
aspect-ratio: 4 / 3;
object-fit: cover;
}
.related-product-card h3 {
font-size: 1.08rem;
}
.related-product-card h3 a {
color: var(--ink);
text-decoration: none;
}
.related-product-card h3 a:hover {
color: var(--primary);
text-decoration: underline;
}
.related-product-card .button {
margin-top: auto;
}
#wt-cli-accept-all-btn {
background-color: #2f6f1c !important;
color: #ffffff !important;
}
@media (max-width: 1100px) {
.package-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.site-header-inner {
gap: 18px;
}
}
@media (max-width: 900px) {
.hero-grid,
.split,
.cta-grid,
.article-hero-grid,
.article-body-layout,
.product-hero-grid,
.product-detail-grid,
.site-footer-grid {
grid-template-columns: 1fr;
}
.hero h1 {
font-size: 40px;
}
.article-hero-copy h1 {
font-size: 38px;
}
.article-side-cta {
position: static;
}
.hero-proof,
.value-grid,
.product-trust,
.card-grid {
grid-template-columns: 1fr 1fr;
}
.hero-visual,
.hero-visual img {
min-height: 360px;
}
}
@media (max-width: 640px) {
.site-wrap {
width: calc(100% - 24px);
max-width: 366px;
margin-right: 0;
margin-left: 12px;
}
.site-header {
position: static;
}
.site-header-inner {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: flex-start;
gap: 10px;
min-height: 0;
padding: 12px 0;
}
.site-brand {
gap: 8px;
font-size: 1rem;
}
.site-brand-mark {
width: 36px;
height: 36px;
flex: 0 0 auto;
}
.itala-nav-toggle {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 54px;
background: var(--ink);
border-color: var(--ink);
color: #ffffff;
order: -1;
}
.site-nav {
display: none;
flex: 0 0 100%;
width: 100%;
margin-top: 12px;
}
.nav-open .site-nav {
display: block;
}
.site-menu {
display: grid;
grid-template-columns: 1fr;
width: 100%;
padding-top: 8px;
border-top: 1px solid var(--line);
}
.site-menu a {
width: 100%;
min-height: 38px;
padding: 7px 8px;
font-size: 0.9rem;
}
.site-menu .sub-menu {
position: static;
display: block;
min-width: 0;
padding: 0;
border: 0;
box-shadow: none;
}
.site-menu .sub-menu a {
padding-left: 18px;
color: var(--muted);
font-size: 0.84rem;
}
.hero {
padding: 42px 0 46px;
}
.hero h1 {
max-width: 320px;
font-size: 26px;
}
.hero-lead {
max-width: 330px;
font-size: 1rem;
}
.action-row,
.button {
width: 100%;
}
.hero-proof,
.value-grid,
.package-grid,
.product-trust,
.product-card-grid,
.card-grid {
grid-template-columns: 1fr;
}
.product-hero {
padding: 36px 0 42px;
}
.product-hero .site-wrap {
width: 100%;
padding-right: 12px;
padding-left: 12px;
}
.product-hero-grid {
display: block;
}
.product-media,
.product-buy-box {
width: 100%;
max-width: calc(100vw - 24px);
}
.product-media {
margin-bottom: 22px;
}
.product-buy-box {
padding: 22px;
}
.product-buy-box h1 {
font-size: 32px;
}
.product-intro {
font-size: 1rem;
overflow-wrap: anywhere;
}
.product-actions form.cart,
.product-actions .single_add_to_cart_button {
width: 100%;
}
.product-actions .quantity {
width: 100%;
}
.product-actions .quantity input.qty {
width: 100%;
}
.section {
padding: 50px 0;
}
.article-hero {
padding: 38px 0 42px;
}
.article-hero-copy h1 {
font-size: 30px;
}
.article-body-section {
padding: 42px 0 54px;
}
.article-body {
font-size: 1rem;
line-height: 1.72;
}
.section h2,
.cta-band h2,
.final-band h2 {
font-size: 28px;
}
.hero-visual,
.hero-visual img {
min-height: 300px;
}
.hero-note {
right: 12px;
bottom: 12px;
width: calc(100% - 24px);
}
.package-card,
.info-card,
.article-card,
.text-panel,
.content-card {
padding: 20px;
}
}