:root {
--primary-color: #ec5725;
--primary-dark: #d93802;
--dark-bg: #292929;
--text-main: #292929;
--text-muted: #757575;
--bg-main: #FFFFFF;
--bg-card: #FFFFFF;
--bg-peach: #FEE2D9;
--border-light: #EAEAEA;
--border-radius: 20px;
--border-radius-lg: 20px;
--shadow-card: 0 -2px 20px rgba(51, 51, 51, 0.08);
--font-stack: "Helvetica Neue", Helvetica, Arial, sans-serif;
--font-heading: "Helvetica Neue", Helvetica, Arial, sans-serif;
--font-ui: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
--container-width: 1279px;
--container-wide: 1279px;
--sidebar-width: 300px;
--content-width: 782px;
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html,
body {
width: 100%;
}
#page {
overflow-x: hidden;
}
body {
font-family: var(--font-stack);
color: var(--text-main);
background-color: var(--bg-main);
line-height: 1.5;
font-size: 18px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
text-decoration: none;
color: inherit;
transition: color 0.2s ease;
}
a:hover {
color: var(--primary-color);
}
img {
max-width: 100%;
height: auto;
display: block;
}
ul,
ol {
list-style: none;
}
.container {
max-width: var(--container-width);
margin: 0 auto;
padding: 0 4px;
}
.container-wide {
max-width: var(--container-wide);
margin: 0 auto;
padding: 0 16px;
}
.search-overlay {
position: fixed; top: 0; left: 0; width: 100%; height: 100%;
background: rgba(0, 0, 0, 0.85);
z-index: 100000;
display: flex; align-items: flex-start; justify-content: center;
padding-top: 12vh;
opacity: 0; visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
backdrop-filter: blur(8px);
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-overlay-inner {
width: 90%; max-width: 600px; text-align: center;
position: relative;
animation: searchSlideIn 0.35s ease-out;
}
@keyframes searchSlideIn { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
.search-overlay-close {
position: absolute; top: -50px; right: 0;
background: none; border: none; color: #fff; font-size: 36px;
cursor: pointer; opacity: 0.7; transition: opacity 0.2s;
line-height: 1;
}
.search-overlay-close:hover { opacity: 1; }
.search-overlay-form {
display: flex;
align-items: center;
gap: 12px;
}
.search-input-wrap {
display: flex; align-items: center; gap: 14px;
background: #ffffff;
border: 2px solid transparent;
border-radius: 12px; padding: 16px 20px;
transition: border-color 0.2s, box-shadow 0.2s;
flex: 1;
}
.search-input-wrap:focus-within { border-color: var(--primary-color, #D93802); box-shadow: 0 0 0 4px rgba(217, 56, 2, 0.2); }
.search-input-wrap i { color: #888; font-size: 20px; flex-shrink: 0; }
.search-input-wrap input {
flex: 1; background: none; border: none; outline: none;
color: #333; font-size: 18px; font-family: inherit;
width: 100%;
}
.search-input-wrap input:focus {
outline: none !important;
box-shadow: none !important;
}
.search-input-wrap input::placeholder { color: #aaa; }
.search-overlay-submit {
background: var(--primary-color, #D93802); color: #fff;
border: none; padding: 0 32px; border-radius: 12px;
font-size: 16px; font-weight: 700; cursor: pointer;
transition: background 0.2s, transform 0.15s;
height: 60px;
display: flex; align-items: center; justify-content: center;
}
.search-overlay-submit:hover { background: #c13000; transform: translateY(-1px); }
.search-overlay-hint {
margin-top: 20px; color: rgba(255,255,255,0.6); font-size: 13px;
}
.search-overlay-hint kbd {
background: rgba(255,255,255,0.2); padding: 2px 8px;
border-radius: 4px; border: 1px solid rgba(255,255,255,0.3);
color: #fff;
}
@media (max-width: 500px) {
.search-overlay-form { flex-direction: column; width: 100%; }
.search-overlay-submit { width: 100%; height: 50px; }
.search-input-wrap { width: 100%; }
}
.mobile-menu-backdrop {
position: fixed; top: 0; left: 0; width: 100%; height: 100%;
background: rgba(0,0,0,0.5); z-index: 99999;
opacity: 0; visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-backdrop.active { opacity: 1; visibility: visible; }
.mobile-menu {
position: fixed; top: 0; right: 0; width: 300px; max-width: 85vw;
height: 100%; background: #1a1a1a; z-index: 100001;
display: flex; flex-direction: column;
transform: translateX(100%);
transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
box-shadow: -8px 0 30px rgba(0,0,0,0.3);
overflow-y: auto;
padding-top: env(safe-area-inset-top, 0px);
padding-bottom: env(safe-area-inset-bottom, 0px);
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-header {
display: flex; align-items: center; justify-content: space-between;
padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-title {
color: #fff; font-weight: 700; font-size: 18px; letter-spacing: 0.5px;
}
.mobile-menu-close {
background: none; border: none; color: rgba(255,255,255,0.6);
font-size: 28px; cursor: pointer; padding: 12px; margin: -12px; line-height: 1;
}
.mobile-menu-close:hover { color: #fff; }
.mobile-menu-search {
padding: 16px 20px;
border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-search-wrap {
background: rgba(255,255,255,0.08);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 8px; padding: 10px 14px;
}
.mobile-search-wrap i { color: rgba(255,255,255,0.4); font-size: 14px; }
.mobile-search-wrap input { font-size: 14px; }
.mobile-menu-links {
list-style: none; margin: 0; padding: 12px 0;
}
.mobile-menu-links li a {
display: flex; align-items: center; gap: 14px;
padding: 14px 24px; color: rgba(255,255,255,0.85);
text-decoration: none; font-size: 15px; font-weight: 500;
transition: background 0.2s, color 0.2s;
}
.mobile-menu-links li a:hover {
background: rgba(255,255,255,0.06);
color: var(--primary-color, #D93802);
}
.mobile-menu-links li a i { width: 20px; text-align: center; opacity: 0.5; }
.mobile-menu-social {
display: flex; gap: 16px; padding: 20px 24px;
margin-top: auto;
border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu-social a {
color: rgba(255,255,255,0.5); font-size: 18px;
transition: color 0.2s;
}
.mobile-menu-social a:hover { color: var(--primary-color, #D93802); }
.r34c8-toast {
position: fixed; bottom: 30px; left: 50%; transform: translate(-50%, 20px);
background: #333; color: #fff; padding: 12px 28px;
border-radius: 10px; font-size: 14px; font-weight: 600;
opacity: 0; transition: opacity 0.3s ease, transform 0.3s ease;
z-index: 100000; pointer-events: none;
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.r34c8-toast.show { opacity: 1; transform: translate(-50%, 0); }
.am-placeholder-img {
display: flex; flex-direction: column; align-items: center; justify-content: center;
gap: 10px; width: 100%; height: 100%; min-height: 180px;
background: linear-gradient(145deg, #e8e8e8, #f5f5f5);
color: #b0b0b0; border-radius: inherit;
}
.am-placeholder-img svg { opacity: 0.4; }
.am-placeholder-img span {
font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
text-transform: uppercase; opacity: 0.5;
}
.am-default-thumb {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: inherit;
display: block;
}
.back-to-top-btn {
position: fixed; bottom: calc(30px + env(safe-area-inset-bottom, 0px)); right: 30px; z-index: 9999;
background: var(--primary-color, #D93802); color: #fff;
border: none; border-radius: 8px; width: 44px; height: 56px;
font-size: 20px; cursor: pointer;
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
opacity: 0; pointer-events: none; transform: translateY(20px);
display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.back-to-top-btn:hover {
background: var(--primary-dark, #D93802);
}
@media (max-width: 768px) {
.back-to-top-btn {
bottom: calc(90px + env(safe-area-inset-bottom, 0px));
right: 20px;
width: 40px; height: 50px;
font-size: 18px;
}
}
.site-header {
background-color: var(--dark-bg);
z-index: 1000;
height: 56px;
display: flex;
align-items: center;
}
body:not(.header-not-sticky) .site-header {
position: sticky;
top: 0;
}
.admin-bar .site-header {
top: 32px;
}
@media screen and (max-width: 782px) {
.admin-bar .site-header {
top: 46px;
}
}
.header-inner {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 16px;
}
.site-logo img {
border-radius: 0;
height: 23px;
width: auto;
}
.site-logo-text {
color: #fff;
font-family: var(--font-heading);
font-size: 22px;
font-weight: 800;
letter-spacing: 0.5px;
white-space: nowrap;
line-height: 1;
}
.header-actions {
display: flex;
align-items: center;
gap: 16px;
}
.header-actions button {
background: none;
border: none;
padding: 0;
cursor: pointer;
display: flex;
align-items: center;
}
.header-actions img {
border-radius: 0;
}
.hamburger-btn {
flex-direction: column;
justify-content: space-around;
width: 24px;
height: 18px;
}
.hamburger-btn span {
display: block;
width: 100%;
height: 2px;
background-color: #ffffff;
border-radius: 2px;
}
.category-nav-wrapper {
background-color: #FFFFFF;
padding: 12px 0;
border-bottom: none;
z-index: 999;
}
body:not(.header-not-sticky):not(.catnav-not-sticky) .category-nav-wrapper {
position: sticky;
top: 56px;
}
body.header-not-sticky:not(.catnav-not-sticky) .category-nav-wrapper {
position: sticky;
top: 0;
}
body.catnav-not-sticky .category-nav-wrapper {
position: static;
}
.admin-bar .category-nav-wrapper {
top: 88px;
}
@media screen and (max-width: 782px) {
.admin-bar .category-nav-wrapper {
top: 102px;
}
}
.category-nav {
display: flex;
gap: 10px;
overflow-x: auto;
white-space: nowrap;
scrollbar-width: none;
-ms-overflow-style: none;
padding: 0 4px;
scroll-snap-type: x mandatory;
scroll-behavior: smooth;
-webkit-overflow-scrolling: touch;
}
.category-nav::-webkit-scrollbar {
display: none;
}
.cat-pill {
display: inline-block;
padding: 10px 20px;
background-color: #EEEEEE;
color: var(--text-main);
border-radius: 30px;
font-size: 20px;
font-weight: 700;
text-transform: capitalize;
text-decoration: none;
transition: background-color 0.2s, color 0.2s;
flex-shrink: 0;
min-height: 44px;
display: inline-flex;
align-items: center;
scroll-snap-align: start;
}
.cat-pill.active,
.cat-pill:hover {
background-color: var(--primary-color);
color: #FFFFFF;
}
.home-page-container {
max-width: 940px;
padding: 0px 16px;
}
.single-post-nav-container {
max-width: calc(var(--content-width) + var(--sidebar-width) + 44px);
}
.single-post-nav-container-no-sidebar {
max-width: 900px;
}
.home-hero {
display: flex;
flex-wrap: wrap;
align-items: stretch;
justify-content: space-between;
margin-bottom: 30px;
}
.home-hero .hero-main {
width: 100%;
margin-bottom: 20px;
}
.home-hero .hero-sidebar {
width: 100%;
display: flex;
flex-direction: column;
gap: 20px;
}
@media (min-width: 992px) {
.home-hero .hero-main {
width: calc(66.6667% - 12px);
margin-bottom: 0;
}
.home-hero .hero-sidebar {
width: calc(33.3333% - 12px);
}
}
.hero-main {
background: var(--bg-card);
border-radius: var(--border-radius-lg);
box-shadow: var(--shadow-card);
overflow: hidden;
display: flex;
flex-direction: column;
}
.hero-main .hero-text {
padding: 24px 24px 20px;
}
.hero-main .hero-meta {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 16px;
}
.hero-main .hero-category {
font-size: 11px;
font-weight: 700;
color: var(--primary-color);
text-transform: uppercase;
letter-spacing: 1px;
text-decoration: none;
}
.hero-main .hero-date {
font-size: 12px;
color: var(--text-muted);
}
.hero-main .hero-title {
font-size: 28px;
font-weight: 700;
line-height: 1.4;
color: var(--text-main);
margin-bottom: 8px;
}
.hero-main .hero-title a {
color: inherit;
text-decoration: none;
}
.hero-main .hero-title a:hover {
color: var(--primary-color);
}
.hero-main .hero-excerpt {
font-size: 18px;
line-height: 1.5;
color: var(--text-main);
margin-bottom: 0;
}
.hero-main .hero-image {
margin-top: auto;
position: relative;
}
.hero-main .hero-image img {
width: 100%;
display: block;
object-fit: cover;
aspect-ratio: 16/9;
border-radius: 0;
}
.sidebar-card {
background: var(--bg-card);
border-radius: var(--border-radius-lg);
box-shadow: var(--shadow-card);
padding: 24px;
display: flex;
flex-direction: column;
height: calc((100% - (var(--sidebar-count) - 1) * 20px) / var(--sidebar-count));
overflow: hidden;
}
.sidebar-card .card-meta {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
}
.sidebar-card .meta-category {
font-size: 11px;
font-weight: 700;
color: var(--primary-color);
text-transform: uppercase;
letter-spacing: 1px;
}
.sidebar-card .meta-date {
font-size: 12px;
color: var(--text-muted);
}
.sidebar-card .card-title-wrap {
flex: 1;
min-height: 0;
overflow: hidden;
}
.sidebar-card .card-title {
font-size: 18px;
font-weight: 400;
line-height: 1.5;
color: var(--text-main);
margin: 0;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 999;
line-clamp: 999;
overflow: hidden;
max-height: 100%;
}
.sidebar-card .card-title a {
color: inherit;
text-decoration: none;
}
.sidebar-card .card-title a:hover {
color: var(--primary-color);
}
.hero-trending-label {
font-size: 11px;
font-weight: 700;
color: #fff;
background: var(--primary-color, #EC5725);
display: inline-block;
padding: 5px 14px;
border-radius: 20px;
margin-bottom: 12px;
letter-spacing: 0.3px;
text-transform: uppercase;
}
.hero-trending-label.trending-now-pill {
display: inline-flex;
align-items: center;
padding: 4px 14px 4px 4px;
border-radius: 30px;
background: linear-gradient(90deg, #fff7f0 0px, #ffb347 40px, #ff6a00 70px, #e8320a 100%);
box-shadow: 0 4px 18px rgba(232, 50, 10, 0.40);
color: #fff;
text-shadow: 0 1px 3px rgba(0,0,0,0.25);
font-size: 11px;
font-weight: 800;
letter-spacing: 0.8px;
text-transform: uppercase;
position: relative;
overflow: visible;
margin-bottom: 20px;
align-self: flex-start;
}
.trending-icon-wrapper {
display: flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
background: #ffffff;
border-radius: 50%;
box-shadow: inset 0 1px 3px rgba(0,0,0,0.1), 0 2px 4px rgba(255, 61, 0, 0.15);
z-index: 2;
margin-right: 8px;
overflow: visible;
}
.trending-now-pill .trending-flame-svg {
flex-shrink: 0;
width: 18px;
height: 22.5px;
transform-origin: center bottom;
will-change: transform;
margin-top: -3px;
margin-bottom: 0px;
}
.trending-text-span {
z-index: 2;
margin-right: 6px;
}
.trending-arrow-span {
display: inline-flex;
align-items: center;
color: #ffffff;
z-index: 2;
animation: arrow-bounce 0.8s infinite alternate ease-in-out;
}
@keyframes arrow-bounce {
0% { transform: translateX(0); }
100% { transform: translateX(2.5px); }
}
.trending-bg-flame-container { display: none; }
@keyframes flame-flicker-outer {
0% { transform: scale(1) rotate(-1.5deg); opacity: 0.9; }
50% { transform: scale(1.04) rotate(1deg); opacity: 1; }
100% { transform: scale(0.96) rotate(-0.5deg); opacity: 0.95; }
}
@keyframes flame-flicker-middle {
0% { transform: scale(0.94) rotate(1deg); opacity: 0.95; }
50% { transform: scale(1.06) rotate(-1.5deg); opacity: 1; }
100% { transform: scale(0.97) rotate(0.5deg); opacity: 0.9; }
}
@keyframes flame-flicker-inner {
0% { transform: scale(0.9) translateY(0.5px); }
100% { transform: scale(1.1) translateY(-0.5px); }
}
.flame-outer {
animation: flame-flicker-outer 1.6s ease-in-out infinite alternate;
transform-origin: center bottom;
}
.flame-middle {
animation: flame-flicker-middle 1.2s ease-in-out infinite alternate;
transform-origin: center bottom;
}
.flame-inner {
animation: flame-flicker-inner 0.8s ease-in-out infinite alternate;
transform-origin: center bottom;
}
.hero-rank-badge {
position: absolute;
top: 12px;
left: 12px;
z-index: 10;
background: rgba(0, 0, 0, 0.65);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
color: #fff;
font-size: 13px;
font-weight: 800;
padding: 5px 12px;
border-radius: 20px;
display: inline-flex;
align-items: center;
gap: 4px;
text-decoration: none;
letter-spacing: -0.3px;
border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-views-pill {
display: inline-flex;
align-items: center;
gap: 4px;
font-size: 11px;
font-weight: 600;
color: var(--text-muted);
background: rgba(0, 0, 0, 0.05);
padding: 2px 10px;
border-radius: 12px;
margin-right: 8px;
}
.hero-views-pill i {
font-size: 10px;
opacity: 0.6;
}
.rank-pill {
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 10px;
font-weight: 800;
color: #fff;
background: rgba(0, 0, 0, 0.6);
padding: 2px 7px;
border-radius: 8px;
letter-spacing: -0.3px;
flex-shrink: 0;
min-width: 22px;
}
.views-pill {
display: inline-flex;
align-items: center;
gap: 3px;
font-size: 10px;
font-weight: 600;
color: var(--text-muted);
background: rgba(0, 0, 0, 0.04);
padding: 2px 8px;
border-radius: 10px;
margin-left: auto;
}
.views-pill i {
font-size: 9px;
opacity: 0.5;
}
body.dark-mode .hero-trending-label {
background: var(--primary-color, #EC5725);
color: #fff;
box-shadow: none;
}
body.dark-mode .hero-trending-label.trending-now-pill {
background: linear-gradient(90deg, #fff7f0 0px, #ffb347 40px, #ff6a00 70px, #e8320a 100%);
box-shadow: 0 4px 18px rgba(232, 50, 10, 0.55);
color: #fff;
}
body.dark-mode .hero-rank-badge {
background: rgba(255, 255, 255, 0.15);
border-color: rgba(255, 255, 255, 0.2);
}
body.dark-mode .hero-views-pill {
background: rgba(255, 255, 255, 0.08);
color: rgba(255, 255, 255, 0.6);
}
body.dark-mode .rank-pill {
background: rgba(255, 255, 255, 0.18);
}
body.dark-mode .views-pill {
background: rgba(255, 255, 255, 0.08);
color: rgba(255, 255, 255, 0.5);
}
.category-section {
border-radius: var(--border-radius-lg);
padding: 30px;
margin-bottom: 30px;
--block-card-title-size: 18px;
--block-card-title-weight: var(--card-title-weight, 700);
--block-card-radius: 12px;
--block-image-ratio: 16/9;
--block-grid-cols: 3;
--block-section-title-size: 18px;
--block-section-title-weight: 400;
}
.category-section.section-odd {
background-color: var(--bg-peach);
}
.category-section.section-even {
background-color: #FFFFFF;
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.category-section .card-meta {
display: flex;
margin-bottom: 6px;
}
.category-section .grid-card .card-body {
padding: 12px 16px 14px;
}
.category-section-header {
display: flex;
justify-content: space-between;
align-items: baseline;
margin-bottom: 24px;
}
.category-section-header h2 {
font-size: var(--block-section-title-size, 18px);
font-weight: var(--block-section-title-weight, 400);
color: var(--block-section-title-color, var(--text-main));
text-transform: var(--block-section-title-transform, none);
margin: 0;
}
.category-section .card-title a,
.category-section .block-hero-title a,
.category-section .full-card-title,
.category-section .featured-main-title a {
font-size: var(--block-card-title-size, inherit);
font-weight: var(--block-card-title-weight, 700);
}
.category-section-header .see-all {
font-size: 16px;
color: #BD2F00;
font-weight: 600;
text-decoration: none;
}
.category-section-header .see-all:hover {
text-decoration: underline;
}
.layout-featured-wrap {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto;
gap: 0 24px;
}
.layout-featured-wrap .featured-main {
grid-column: 1;
grid-row: 1 / 20;
}
.layout-featured-wrap .featured-main-image {
display: block;
border-radius: var(--border-radius);
overflow: hidden;
}
.layout-featured-wrap .featured-main-image img {
width: 100%;
display: block;
object-fit: cover;
aspect-ratio: 16/9;
transition: transform .3s;
}
.layout-featured-wrap .featured-main-image:hover img {
transform: scale(1.03);
}
.layout-featured-wrap .featured-main-title {
font-size: 20px;
font-weight: 700;
line-height: 1.35;
margin: 14px 0 0;
}
.layout-featured-wrap .featured-main-title a {
color: var(--text-main);
text-decoration: none;
}
.layout-featured-wrap .featured-main-title a:hover {
color: var(--primary-color);
}
.layout-featured-wrap .featured-headline {
grid-column: 2;
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
padding: 14px 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
font-size: 16px;
font-weight: 600;
line-height: 1.4;
color: var(--text-main);
text-decoration: none;
transition: color .2s;
}
.layout-featured-wrap .featured-hl-date {
font-size: 11px;
color: var(--text-muted);
white-space: nowrap;
flex-shrink: 0;
}
.layout-featured-wrap .featured-main-excerpt {
font-size: 14px;
color: var(--text-muted);
margin: 8px 0 4px;
line-height: 1.5;
}
.layout-featured-wrap .featured-main-date {
font-size: 12px;
color: var(--text-muted);
display: block;
margin-top: 6px;
}
.layout-featured-wrap .featured-headline:last-child {
border-bottom: none;
}
.layout-featured-wrap .featured-headline:hover {
color: var(--primary-color);
}
@media (max-width: 768px) {
.layout-featured-wrap {
grid-template-columns: 1fr;
}
.layout-featured-wrap .featured-main {
grid-row: auto;
margin-bottom: 16px;
}
.layout-featured-wrap .featured-headline {
grid-column: 1;
}
}
.layout-list-wrap {
display: flex;
flex-direction: column;
gap: 0;
}
.layout-list-wrap .list-item {
display: flex;
align-items: center;
gap: 16px;
padding: 14px 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
text-decoration: none;
transition: background .2s;
}
.layout-list-wrap .list-item:last-child {
border-bottom: none;
}
.layout-list-wrap .list-item:hover {
background: rgba(0, 0, 0, 0.02);
}
.layout-list-wrap .list-item-thumb {
width: 120px;
aspect-ratio: 16 / 9;
border-radius: 10px;
overflow: hidden;
flex-shrink: 0;
}
.layout-list-wrap .list-item-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.layout-list-wrap .list-item-text {
display: flex;
flex-direction: column;
gap: 4px;
min-width: 0;
}
.layout-list-wrap .list-item-title {
font-size: 16px;
font-weight: 700;
color: var(--text-main);
line-height: 1.4;
transition: color .2s;
}
.layout-list-wrap .list-item-date {
font-size: 11px;
color: var(--text-muted);
}
.layout-list-wrap .list-item:hover .list-item-title {
color: var(--primary-color);
}
.layout-full-wrap {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.layout-full-wrap .full-card {
display: block;
text-decoration: none;
border-radius: var(--border-radius);
overflow: hidden;
background: var(--bg-card);
box-shadow: var(--shadow-card);
transition: transform .25s, box-shadow .25s;
}
.layout-full-wrap .full-card:hover {
transform: translateY(-3px);
box-shadow: 0 -2px 30px rgba(51, 51, 51, 0.15);
}
.layout-full-wrap .full-card-image img {
width: 100%;
display: block;
object-fit: cover;
aspect-ratio: 16/9;
}
.layout-full-wrap .full-card-body {
padding: 16px 20px;
}
.layout-full-wrap .full-card-cat {
display: inline-block;
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--primary-color);
margin-bottom: 6px;
}
.layout-full-wrap .full-card-title {
font-size: 18px;
font-weight: 700;
line-height: 1.35;
color: var(--text-main);
margin: 0 0 8px;
}
.layout-full-wrap .full-card-excerpt {
font-size: 13px;
color: var(--text-muted);
line-height: 1.5;
margin: 0 0 6px;
}
.layout-full-wrap .full-card-date {
font-size: 11px;
color: var(--text-muted);
display: block;
}
@media (max-width: 600px) {
.layout-full-wrap {
grid-template-columns: 1fr;
}
}
.card-grid {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
}
.category-section .card-grid {
--_cols: var(--block-grid-cols, 3);
}
@media (min-width: 600px) {
.card-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 992px) {
.card-grid {
grid-template-columns: repeat(3, 1fr);
}
.category-section .card-grid {
grid-template-columns: repeat(var(--block-grid-cols, 3), 1fr);
}
}
.grid-card {
background: var(--bg-card);
border-radius: var(--block-card-radius, var(--border-radius));
overflow: hidden;
display: flex;
flex-direction: column;
box-shadow: var(--shadow-card);
transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.grid-card:hover {
transform: translateY(-3px);
box-shadow: rgba(51, 51, 51, 0.15) 0px -2px 30px 0px;
}
.grid-card .card-link {
display: flex;
flex-direction: column;
flex-grow: 1;
text-decoration: none;
color: inherit;
}
.grid-card .card-image {
}
.grid-card .card-image img {
width: 100%;
display: block;
object-fit: cover;
aspect-ratio: var(--block-image-ratio, 16/9);
border-radius: 0;
}
.grid-card .card-body {
padding: 16px 24px 16px;
flex-grow: 1;
display: flex;
flex-direction: column;
}
.grid-card .card-meta {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 10px;
}
.grid-card .meta-category {
font-size: 10px;
font-weight: 700;
color: #fff;
text-transform: uppercase;
letter-spacing: 0.5px;
background: var(--primary-color);
padding: 3px 10px;
border-radius: 4px;
line-height: 1.4;
white-space: nowrap;
}
.grid-card .meta-date {
font-size: 11px;
color: var(--text-muted);
white-space: nowrap;
}
.grid-card .meta-read-time {
margin-left: auto;
font-size: 11px;
color: var(--text-muted);
font-weight: 600;
white-space: nowrap;
}
.grid-card .card-title {
font-size: var(--block-card-title-size, 18px);
font-weight: var(--block-card-title-weight, 700);
line-height: 1.5;
color: var(--text-main);
margin: 0 0 8px;
}
.grid-card .card-title a {
color: inherit;
text-decoration: none;
}
.grid-card .card-title a:hover {
color: var(--primary-color);
}
.grid-card .card-excerpt {
font-size: 14px;
line-height: 21px;
color: var(--text-main);
margin: 0 0 8px;
font-weight: 400;
}
.ad-slot {
text-align: center;
margin: 30px 0;
clear: both;
overflow: visible;
width: 100%;
}
.ad-slot ins.adsbygoogle {
display: block !important;
width: 100%;
min-height: 90px;
}
.ad-slot-label {
display: block;
font-size: 10px;
font-weight: 400;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 1.5px;
margin-bottom: 8px;
}
.ad-slot-divider {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 12px;
overflow: hidden;
}
.ad-slot-divider::before,
.ad-slot-divider::after {
content: '';
flex: 1;
height: 1px;
background-color: var(--border-light);
}
.ad-slot-divider span {
font-size: 10px;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 1.5px;
white-space: nowrap;
}
.ad-slot-banner {
display: block;
width: 100%;
margin: 0 auto;
text-align: center;
min-height: 90px;
}
.ad-slot-sidebar {
display: block;
width: 100%;
margin-bottom: 20px;
text-align: center;
min-height: 250px;
}
.ad-slot-incontent {
display: block;
width: 100%;
margin: 20px auto;
text-align: center;
min-height: 250px;
}
.r34c8-ic-ad {
display: block;
width: 100%;
margin: 20px 0;
clear: both;
}
@media (max-width: 768px) {
.ad-slot {
width: 100%;
margin: 20px 0;
}
.ad-slot-banner,
.ad-slot-incontent {
min-height: 50px;
}
[id^="_mgwidget_"],
[data-type="_mgwidget"] {
max-width: 100% !important;
width: 100% !important;
min-width: 0 !important;
box-sizing: border-box !important;
overflow: visible !important;
}
[id^="_mgwidget_"] *,
[data-type="_mgwidget"] * {
max-width: 100% !important;
min-width: 0 !important;
}
[id^="_mgwidget_"] iframe,
[data-type="_mgwidget"] iframe,
[id^="_mgwidget_"] img,
[data-type="_mgwidget"] img {
max-width: 100% !important;
height: auto !important;
}
body.r34c8-ads-fw [id^="_mgwidget_"],
body.r34c8-ads-fw [data-type="_mgwidget"] {
width: 100vw !important;
max-width: 100vw !important;
margin-left: calc(50% - 50vw) !important;
margin-right: calc(50% - 50vw) !important;
}
body.r34c8-ads-fw .cat-grid > [id^="_mgwidget_"],
body.r34c8-ads-fw .cat-grid > [data-type="_mgwidget"],
body.r34c8-ads-fw .cat-grid > .r34c8-ic-ad,
body.r34c8-ads-fw .cat-grid > .r34c8-ad-fw {
width: 100% !important;
max-width: 100% !important;
margin-left: 0 !important;
margin-right: 0 !important;
}
body.single .entry-content .r34c8-ic-ad,
body.single .entry-content .r34c8-ad-fw,
body.single .entry-content [id^="_mgwidget_"],
body.single .entry-content [data-type="_mgwidget"] {
width: 100% !important;
max-width: 100% !important;
min-width: 0 !important;
margin-left: 0 !important;
margin-right: 0 !important;
}
}
.ad-slot-skeleton {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
min-height: inherit;
background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
background-size: 200% 100%;
animation: ad-skeleton-pulse 1.5s ease-in-out infinite;
border-radius: 6px;
}
.ad-slot-skeleton span::after {
content: 'Loading ad...';
font-size: 11px;
color: #bbb;
text-transform: uppercase;
letter-spacing: 1px;
}
body.dark-mode .ad-slot-skeleton {
background: linear-gradient(90deg, #1a1a1a 25%, #252525 50%, #1a1a1a 75%);
background-size: 200% 100%;
}
body.dark-mode .ad-slot-skeleton span::after {
color: #555;
}
@keyframes ad-skeleton-pulse {
0% { background-position: 200% 0; }
100% { background-position: -200% 0; }
}
.ad-slot-deferred .ad-slot-banner {
position: relative;
overflow: hidden;
}
.ad-slot-loaded .ad-slot-banner {
animation: ad-slot-fadein 0.3s ease-out;
}
@keyframes ad-slot-fadein {
from { opacity: 0.5; }
to { opacity: 1; }
}
.ad-slot.ad-preview-mode,
.ad-slot-sticky-bottom.ad-preview-mode {
border: 2px dashed #3b82f6 !important;
background-color: rgba(59, 130, 246, 0.05) !important;
position: relative;
min-height: 100px;
display: flex !important;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 30px auto;
}
.ad-slot-sticky-bottom.ad-preview-mode {
margin: 0;
}
.ad-preview-overlay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #3b82f6;
color: #fff;
padding: 6px 16px;
font-size: 13px;
font-weight: 700;
border-radius: 4px;
text-transform: uppercase;
letter-spacing: 1px;
pointer-events: none;
white-space: nowrap;
z-index: 10;
}
.ad-slot-sticky-bottom {
position: fixed;
bottom: env(safe-area-inset-bottom, 0px);
left: 0;
right: 0;
z-index: 999;
background: #fff;
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
padding: 8px 16px;
min-height: 60px;
display: none;
}
.ad-slot-sticky-bottom.active {
display: flex;
align-items: center;
justify-content: center;
}
.single-post .main-content {
background-color: #FFFFFF;
}
.single-layout {
display: grid;
grid-template-columns: 1fr;
gap: 40px;
padding: 30px 0 60px;
}
@media (min-width: 992px) {
.single-layout {
grid-template-columns: minmax(0, var(--content-width)) var(--sidebar-width);
gap: 44px;
justify-content: center;
}
}
.article-content {
min-width: 0;
background: #FFFFFF;
border-radius: var(--border-radius);
box-shadow: var(--shadow-card);
padding: 24px;
}
.article-featured-image {
margin-bottom: 24px;
overflow: hidden;
border-radius: var(--border-radius);
}
.article-featured-image.has-aspect-ratio {
position: relative;
}
.article-featured-image img {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
object-position: center top;
border-radius: var(--border-radius);
}
.article-featured-image.has-aspect-ratio img {
position: absolute;
top: 0;
left: 0;
}
.article-featured-image figcaption {
font-size: 14px;
color: #888;
padding: 8px 0;
line-height: 1.4;
}
.article-title-single {
font-size: 32px;
font-weight: 700;
line-height: 44.8px;
color: var(--text-main);
margin: 0 0 16px;
font-family: var(--font-stack);
letter-spacing: normal;
}
.article-author-row {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 24px;
flex-wrap: wrap;
gap: 12px;
}
.author-info {
display: flex;
align-items: center;
gap: 12px;
}
.author-avatar {
width: 60px;
height: 60px;
border-radius: 50%;
object-fit: cover;
padding: 3px;
border: 1px solid var(--primary-color);
}
.author-avatar-initials {
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary-color), #ff7043);
color: #fff;
font-size: 20px;
font-weight: 700;
letter-spacing: 0.5px;
text-decoration: none;
padding: 0;
border: 2px solid rgba(255, 255, 255, 0.3);
box-shadow: 0 2px 8px rgba(217, 56, 2, 0.2);
flex-shrink: 0;
}
.author-details {
display: flex;
flex-direction: column;
justify-content: center;
}
.author-details .author-name {
font-size: 17px;
color: #292929;
margin-bottom: 2px;
}
.author-details .author-by {
color: #757575;
font-weight: 400;
}
.author-details .author-link {
font-weight: 700;
color: #1a202c;
text-decoration: none;
}
.author-details .article-date-time {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 6px;
font-size: 14px;
color: #8c8c8c;
}
.author-details .post-views-pill {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.5px;
font-weight: 700;
color: var(--primary-color);
background: rgba(217, 56, 2, 0.06);
padding: 3px 10px;
border-radius: 20px;
border: 1px solid rgba(217, 56, 2, 0.15);
}
.author-details .post-views-pill i {
font-size: 13px;
opacity: 0.9;
}
.share-buttons {
display: flex;
gap: 8px;
align-items: center;
}
.share-btn {
width: 38px;
height: 38px;
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 16px;
text-decoration: none;
transition: background-color 0.2s, opacity 0.2s;
}
.share-btn:hover {
opacity: 0.85;
color: #fff;
}
.share-btn-copy {
background-color: #000000;
}
.share-btn-email {
background-color: #D65A31;
}
.share-btn-flipboard {
background-color: #DF382C;
}
.share-btn-twitter {
background-color: #000000;
}
.share-btn-facebook {
background-color: #4C69BA;
}
.share-btn-facebook-full {
border-radius: 6px;
padding: 0 16px;
width: auto;
gap: 8px;
font-size: 14px;
font-weight: 600;
}
.article-lead,
body.has-lead-paragraph .entry-content > p:first-of-type {
font-size: 22px;
line-height: 1.5;
color: #1a202c;
margin-bottom: 24px;
transition: all 0.3s ease;
}
body:not(.lead-text-bold):not(.lead-text-italic):not(.lead-text-normal) .article-lead,
body:not(.lead-text-bold):not(.lead-text-italic):not(.lead-text-normal).has-lead-paragraph .entry-content > p:first-of-type,
body.lead-text-bold-italic .article-lead,
body.lead-text-bold-italic.has-lead-paragraph .entry-content > p:first-of-type {
font-weight: 700;
font-style: italic;
}
body.lead-text-bold .article-lead,
body.lead-text-bold.has-lead-paragraph .entry-content > p:first-of-type {
font-weight: 700;
font-style: normal;
}
body.lead-text-italic .article-lead,
body.lead-text-italic.has-lead-paragraph .entry-content > p:first-of-type {
font-weight: 400;
font-style: italic;
}
body.lead-text-normal .article-lead,
body.lead-text-normal.has-lead-paragraph .entry-content > p:first-of-type {
font-weight: 400;
font-style: normal;
}
body:not(.lead-design-quote):not(.lead-design-minimal) .article-lead,
body:not(.lead-design-quote):not(.lead-design-minimal).has-lead-paragraph .entry-content > p:first-of-type,
body.lead-design-border-left .article-lead,
body.lead-design-border-left.has-lead-paragraph .entry-content > p:first-of-type {
padding: 16px 20px;
background: #FFF8F6;
border-left: 4px solid var(--primary-color);
border-radius: 0 8px 8px 0;
}
body.lead-design-quote .article-lead,
body.lead-design-quote.has-lead-paragraph .entry-content > p:first-of-type {
position: relative;
padding: 12px 0 16px 54px;
background: transparent;
border: none;
font-size: 26px;
line-height: 1.4;
color: var(--primary-color);
}
body.lead-design-quote .article-lead::before,
body.lead-design-quote.has-lead-paragraph .entry-content > p:first-of-type::before {
content: '“';
position: absolute;
left: 0;
top: -4px;
font-family: Georgia, serif;
font-size: 80px;
color: var(--primary-color);
opacity: 1;
line-height: 1;
}
body.lead-design-minimal .article-lead,
body.lead-design-minimal.has-lead-paragraph .entry-content > p:first-of-type {
padding: 0;
background: transparent;
border: none;
font-size: 24px;
color: var(--primary-color);
}
.entry-content {
font-size: 24px;
font-weight: 400;
line-height: 36px;
color: var(--text-main);
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;
}
.entry-content p {
margin-bottom: 16px;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
font-family: var(--heading-stack, var(--font-stack));
color: var(--text-main);
line-height: 1.3;
letter-spacing: -0.02em;
word-break: break-word;
}
.entry-content h1 {
font-size: 2.25em;
font-weight: 900;
margin: 48px 0 24px;
line-height: 1.15;
letter-spacing: -0.03em;
position: relative;
padding-bottom: 20px;
}
.entry-content h1::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 64px;
height: 4px;
background: linear-gradient(90deg, var(--primary-color, #EC5725), #FF8A5C);
border-radius: 4px;
}
.entry-content h2 {
font-size: 1.75em;
font-weight: 800;
margin: 48px 0 20px;
padding-bottom: 14px;
position: relative;
line-height: 1.25;
letter-spacing: -0.025em;
}
.entry-content h2::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 48px;
height: 3px;
background: linear-gradient(90deg, var(--primary-color, #EC5725), #FF8A5C);
border-radius: 3px;
transition: width 0.3s ease;
}
.entry-content h2:hover::after {
width: 72px;
}
.entry-content h3 {
font-size: 1.35em;
font-weight: 700;
margin: 36px 0 14px;
padding-left: 16px;
position: relative;
line-height: 1.35;
}
.entry-content h3::before {
content: '';
position: absolute;
left: 0;
top: 0.15em;
bottom: 0.15em;
width: 4px;
background: linear-gradient(180deg, var(--primary-color, #EC5725), #6366f1);
border-radius: 4px;
}
.entry-content h4 {
font-size: 1.1em;
font-weight: 700;
margin: 28px 0 10px;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--primary-color, #EC5725);
position: relative;
padding-left: 20px;
}
.entry-content h4::before {
content: '▸';
position: absolute;
left: 0;
font-size: 1.1em;
line-height: inherit;
color: var(--primary-color, #EC5725);
}
.entry-content h5 {
font-size: 0.95em;
font-weight: 700;
margin: 24px 0 8px;
display: inline-block;
background: linear-gradient(135deg, rgba(236, 87, 37, 0.08), rgba(99, 102, 241, 0.06));
padding: 4px 14px;
border-radius: 6px;
letter-spacing: 0.02em;
color: var(--text-main);
border-left: 3px solid var(--primary-color, #EC5725);
}
.entry-content h6 {
font-size: 0.85em;
font-weight: 600;
margin: 20px 0 6px;
text-transform: uppercase;
letter-spacing: 0.1em;
color: #888;
position: relative;
padding-bottom: 6px;
}
.entry-content h6::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 24px;
height: 2px;
background: #ddd;
border-radius: 2px;
}
.entry-content img {
margin: 28px 0;
border-radius: 0;
}
.entry-content blockquote {
border-left: 4px solid var(--primary-color);
padding: 16px 24px;
margin: 24px 0;
background: #FFF8F6;
font-style: italic;
font-size: 22px;
line-height: 1.5;
border-radius: 0 8px 8px 0;
}
.entry-content iframe,
.entry-content embed,
.entry-content object {
max-width: 100%;
}
.entry-content a {
color: var(--primary-color);
text-decoration: none;
font-weight: 400;
}
.entry-content a:hover {
text-decoration: underline;
color: var(--primary-dark);
}
.entry-content strong {
font-weight: 700;
}
.wp-caption {
max-width: 100%;
margin: 24px 0;
}
.wp-caption img {
margin: 0;
}
.wp-caption-text {
font-size: 14px;
color: #888;
padding: 8px 0;
line-height: 1.4;
}
.r34c8-cr {
position: relative;
}
.r34c8-cr--collapsed {
overflow: hidden;
}
.r34c8-cr--open {
overflow: visible !important;
max-height: none !important;
}
.r34c8-cr-overlay {
display: none;
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 120px;
background: linear-gradient(to bottom,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0.8) 50%,
rgba(255, 255, 255, 1) 100%);
align-items: flex-end;
justify-content: center;
padding-bottom: 12px;
z-index: 10;
transition: opacity 0.4s ease;
pointer-events: none;
}
.r34c8-cr-btn {
font-family: inherit;
font-size: 14px;
padding: 10px 32px;
border-radius: 40px;
border: none;
background: var(--primary-color);
color: #fff;
font-weight: 700;
cursor: pointer;
box-shadow: 0 4px 15px rgba(236, 87, 37, 0.35);
text-transform: uppercase;
letter-spacing: 0.5px;
transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
display: inline-flex;
align-items: center;
min-height: 44px;
pointer-events: auto;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
user-select: none;
-webkit-user-select: none;
}
.r34c8-cr-btn:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(236, 87, 37, 0.45);
}
.r34c8-cr-btn:active {
transform: scale(0.97);
box-shadow: 0 2px 8px rgba(236, 87, 37, 0.3);
}
@media (max-width: 768px) {
.r34c8-cr-btn {
padding: 12px 40px;
font-size: 13px;
min-height: 44px;
}
}
.r34c8-cr-btnrow::before,
.r34c8-cr-btnrow::after {
content: '';
flex: 1 1 0;
min-width: 24px;
height: 2px;
margin: 0 14px;
}
.r34c8-cr-overlay.r34c8-cr-btnrow::before,
.r34c8-cr-overlay.r34c8-cr-btnrow::after {
align-self: flex-end;
margin-bottom: 33px;
}
.r34c8-cr-btn--classic {
background: linear-gradient(135deg, #FF7A1A, var(--primary-color));
box-shadow: 0 6px 24px rgba(217, 56, 2, 0.5);
}
.r34c8-cr-btn--classic:hover { background: linear-gradient(135deg, #FF7A1A, var(--primary-color)); filter: brightness(1.06); }
.r34c8-cr-btnrow--classic::before { background: linear-gradient(to left,  var(--primary-color), rgba(217, 56, 2, 0)); }
.r34c8-cr-btnrow--classic::after  { background: linear-gradient(to right, var(--primary-color), rgba(217, 56, 2, 0)); }
.r34c8-cr-btn--keep {
background: transparent;
color: #374151;
box-shadow: none;
padding: 10px 6px;
}
.r34c8-cr-btn--keep::before { content: '\bb'; color: var(--primary-color); margin-right: 10px; font-size: 19px; line-height: 1; }
.r34c8-cr-btn--keep::after  { content: '\ab'; color: var(--primary-color); margin-left: 10px;  font-size: 19px; line-height: 1; }
.r34c8-cr-btn--keep:hover { background: transparent; color: #111827; transform: none; box-shadow: none; }
.r34c8-cr-btn--keep svg { stroke: var(--primary-color); }
.r34c8-cr-btnrow--keep::before,
.r34c8-cr-btnrow--keep::after { height: 0; border-top: 2px dotted #C7CCD4; }
.r34c8-cr-btn--book {
background: #fff;
color: #1F2937;
border: 1px solid #E5E7EB;
border-radius: 14px;
box-shadow: 0 8px 22px rgba(17, 24, 39, 0.10);
}
.r34c8-cr-btn--book::before {
content: '\f518';
font-family: 'Font Awesome 6 Free';
font-weight: 900;
color: var(--primary-color);
margin-right: 10px;
font-size: 16px;
}
.r34c8-cr-btn--book:hover { background: #F9FAFB; color: #111827; }
.r34c8-cr-btn--book svg { stroke: var(--primary-color); }
.r34c8-cr-btnrow--book::before,
.r34c8-cr-btnrow--book::after { height: 1px; background: #D8DCE2; }
.r34c8-cr-btn--next {
background: transparent;
color: var(--primary-color);
box-shadow: none;
padding: 10px 6px;
letter-spacing: 1.5px;
}
.r34c8-cr-btn--next:hover { background: transparent; color: var(--primary-dark); transform: none; box-shadow: none; }
.r34c8-cr-btn--next svg {
border: 2px solid currentColor;
border-radius: 50%;
padding: 3px;
width: 22px;
height: 22px;
}
.r34c8-cr-btnrow--next::before {
height: 8px;
background: radial-gradient(circle at calc(100% - 4px) 50%, var(--primary-color) 3px, rgba(217, 56, 2, 0) 4px),
linear-gradient(to left, rgba(217, 56, 2, 0.75), rgba(217, 56, 2, 0)) no-repeat center / 100% 1px;
}
.r34c8-cr-btnrow--next::after {
height: 8px;
background: radial-gradient(circle at 4px 50%, var(--primary-color) 3px, rgba(217, 56, 2, 0) 4px),
linear-gradient(to right, rgba(217, 56, 2, 0.75), rgba(217, 56, 2, 0)) no-repeat center / 100% 1px;
}
.r34c8-cr-btn--soft {
background: #FFF4ED;
color: #7A2E0E;
box-shadow: 0 4px 14px rgba(217, 56, 2, 0.12);
}
.r34c8-cr-btn--soft::before {
content: '\f054';
font-family: 'Font Awesome 6 Free';
font-weight: 900;
background: var(--primary-color);
color: #fff;
width: 26px;
height: 26px;
line-height: 26px;
border-radius: 50%;
text-align: center;
font-size: 12px;
margin-right: 10px;
flex-shrink: 0;
}
.r34c8-cr-btn--soft:hover { background: #FFEAD9; color: #7A2E0E; }
.r34c8-cr-btnrow--soft::before,
.r34c8-cr-btnrow--soft::after { height: 1px; background: #E3E6EB; }
.r34c8-cr-btn--outline {
background: #fff;
color: #111827;
border: 2px solid #111827;
box-shadow: none;
}
.r34c8-cr-btn--outline:hover { background: #111827; color: #fff; }
.r34c8-cr-btnrow--outline::before {
height: 8px;
background: radial-gradient(circle at 4px 50%, #9AA1AB 3px, rgba(154, 161, 171, 0) 4px),
linear-gradient(to right, rgba(154, 161, 171, 0) 0 8px, #C9CED6 8px) no-repeat center / 100% 2px;
}
.r34c8-cr-btnrow--outline::after {
height: 8px;
background: radial-gradient(circle at calc(100% - 4px) 50%, #9AA1AB 3px, rgba(154, 161, 171, 0) 4px),
linear-gradient(to left, rgba(154, 161, 171, 0) 0 8px, #C9CED6 8px) no-repeat center / 100% 2px;
}
.r34c8-cr-btn--solid {
background: var(--primary-color);
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
padding: 12px 32px;
min-height: 48px;
}
.r34c8-cr-btn--solid:hover { background: var(--primary-dark); }
.r34c8-cr-btnrow--solid::before,
.r34c8-cr-btnrow--solid::after { height: 1px; background: #E5E7EB; }
.r34c8-cr-btn--link {
background: transparent;
color: var(--primary-color);
box-shadow: none;
padding: 10px 6px;
font-size: 15px;
}
.r34c8-cr-btn--link:hover { background: transparent; color: var(--primary-dark); transform: none; box-shadow: none; }
.r34c8-cr-btn--link svg { stroke: var(--primary-color); }
.r34c8-cr-btnrow--link::before,
.r34c8-cr-btnrow--link::after { background: none; height: 0; }
.r34c8-cr-btn--divider {
background: transparent;
color: var(--primary-color);
box-shadow: none;
padding: 10px 6px;
}
.r34c8-cr-btn--divider:hover { background: transparent; color: var(--primary-dark); transform: none; box-shadow: none; }
.r34c8-cr-btn--divider svg { stroke: var(--primary-color); }
.r34c8-cr-btnrow--divider::before,
.r34c8-cr-btnrow--divider::after { height: 1px; background: #D1D5DB; }
.r34c8-cr-btn--bordered {
background: #fff;
color: var(--primary-color);
border: 2px solid var(--primary-color);
box-shadow: none;
}
.r34c8-cr-btn--bordered:hover { background: var(--primary-color); color: #fff; }
.r34c8-cr-btnrow--bordered::before,
.r34c8-cr-btnrow--bordered::after { height: 1px; background: #E5E7EB; }
.r34c8-cr-btn--label {
background: var(--primary-color);
border-radius: 8px;
padding: 9px 18px;
min-height: 38px;
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}
.r34c8-cr-btn--label:hover { background: var(--primary-dark); }
.r34c8-cr-btnrow--label::before,
.r34c8-cr-btnrow--label::after { height: 1px; background: #E5E7EB; }
.r34c8-cr-btn--tab {
background: var(--primary-color);
box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
position: relative;
bottom: 6px;
transition: bottom 0.15s, background 0.15s, box-shadow 0.15s;
}
.r34c8-cr-btn--tab:hover {
background: var(--primary-dark);
transform: none;
bottom: 8px;
box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}
.r34c8-cr-btn--tab:active { transform: none; bottom: 5px; }
.r34c8-cr-btn--tab::before,
.r34c8-cr-btn--tab::after {
content: '';
position: absolute;
z-index: -1;
bottom: -7px;
width: 28px;
height: 26px;
background: #B23002;
}
.r34c8-cr-btn--tab::before {
left: -13px;
border-radius: 8px 0 0 8px;
transform: skewY(-12deg);
}
.r34c8-cr-btn--tab::after {
right: -13px;
border-radius: 0 8px 8px 0;
transform: skewY(12deg);
}
.r34c8-cr-overlay.r34c8-cr-btnrow--tab::before {
content: '';
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 34px;
margin: 0;
background: #F1F3F6;
border-top: 1px solid #DDE1E7;
box-shadow: inset 0 8px 12px -8px rgba(17, 24, 39, 0.18);
z-index: -2;
}
.r34c8-cr-btnrow--tab::after { content: none; }
.r34c8-cr-btn--tab.r34c8-cr-btn--loading { opacity: 1; color: rgba(255, 255, 255, 0.7); }
.r34c8-cr-btn--double {
background: transparent;
color: var(--primary-color);
box-shadow: none;
padding: 10px 6px;
font-size: 15px;
}
.r34c8-cr-btn--double:hover { background: transparent; color: var(--primary-dark); transform: none; box-shadow: none; }
.r34c8-cr-btn--double svg { stroke: var(--primary-color); }
.r34c8-cr-btnrow--double::before,
.r34c8-cr-btnrow--double::after {
height: 7px;
background: none;
border-top: 2px solid rgba(217, 56, 2, 0.75);
border-bottom: 2px solid rgba(217, 56, 2, 0.75);
}
.r34c8-cr-btn--dotted {
background: transparent;
color: var(--primary-color);
box-shadow: none;
padding: 10px 6px;
font-size: 15px;
}
.r34c8-cr-btn--dotted:hover { background: transparent; color: var(--primary-dark); transform: none; box-shadow: none; }
.r34c8-cr-btn--dotted svg { stroke: var(--primary-color); }
.r34c8-cr-btnrow--dotted::before,
.r34c8-cr-btnrow--dotted::after { height: 0; border-top: 3px dotted rgba(217, 56, 2, 0.55); }
.r34c8-cr-btn--bookline {
background: transparent;
color: var(--primary-color);
box-shadow: none;
flex-direction: column;
padding: 0 6px 4px;
font-size: 15px;
letter-spacing: 1px;
}
.r34c8-cr-btn--bookline::before {
content: '\f518';
font-family: 'Font Awesome 6 Free';
font-weight: 900;
font-size: 22px;
line-height: 1;
margin-bottom: 8px;
}
.r34c8-cr-btn--bookline:hover { background: transparent; color: var(--primary-dark); transform: none; box-shadow: none; }
.r34c8-cr-btn--bookline svg { stroke: var(--primary-color); margin-left: 0 !important; margin-top: 2px; }
.r34c8-cr-overlay.r34c8-cr-btnrow--bookline::before,
.r34c8-cr-overlay.r34c8-cr-btnrow--bookline::after {
height: 2px;
background: rgba(217, 56, 2, 0.65);
margin-bottom: 67px;
}
.r34c8-cr-btn--arrowcircle {
background: transparent;
color: var(--primary-color);
box-shadow: none;
flex-direction: column;
padding: 0 6px 4px;
font-size: 15px;
}
.r34c8-cr-btn--arrowcircle::before {
content: '\f063';
font-family: 'Font Awesome 6 Free';
font-weight: 900;
width: 52px;
height: 52px;
line-height: 52px;
border-radius: 50%;
background: #FDE5D8;
color: var(--primary-color);
text-align: center;
font-size: 20px;
margin-bottom: 10px;
flex-shrink: 0;
}
.r34c8-cr-btn--arrowcircle:hover { background: transparent; color: var(--primary-dark); transform: none; box-shadow: none; }
.r34c8-cr-btn--arrowcircle svg { display: none; }
.r34c8-cr-btnrow--arrowcircle::before,
.r34c8-cr-btnrow--arrowcircle::after { display: none; }
.r34c8-cr-btn--chevron {
background: transparent;
color: var(--primary-color);
box-shadow: none;
flex-direction: column;
padding: 0 6px 4px;
font-size: 15px;
}
.r34c8-cr-btn--chevron::before {
content: '\f103';
font-family: 'Font Awesome 6 Free';
font-weight: 900;
font-size: 30px;
line-height: 1;
margin-bottom: 6px;
}
.r34c8-cr-btn--chevron:hover { background: transparent; color: var(--primary-dark); transform: none; box-shadow: none; }
.r34c8-cr-btn--chevron svg { display: none; }
.r34c8-cr-btnrow--chevron::before,
.r34c8-cr-btnrow--chevron::after { display: none; }
.r34c8-cr-btn--softbg {
background: #FFF1E8;
color: var(--primary-color);
border-radius: 18px;
padding: 16px 44px;
min-height: 56px;
font-size: 15px;
box-shadow: none;
justify-content: center;
}
.r34c8-cr-btn--softbg:hover { background: #FFE7D6; color: var(--primary-dark); }
.r34c8-cr-btnrow--softbg::before,
.r34c8-cr-btnrow--softbg::after { display: none; }
.r34c8-cr-btn--underline {
background: transparent;
color: var(--primary-color);
box-shadow: none;
border-radius: 0;
border-bottom: 3px solid var(--primary-color);
padding: 10px 4px 8px;
font-size: 15px;
}
.r34c8-cr-btn--underline:hover { background: transparent; color: var(--primary-dark); border-bottom-color: var(--primary-dark); transform: none; box-shadow: none; }
.r34c8-cr-btn--underline svg { stroke: var(--primary-color); }
.r34c8-cr-btnrow--underline::before,
.r34c8-cr-btnrow--underline::after { display: none; }
.r34c8-cr-btn--sidebars {
background: transparent;
color: var(--primary-color);
box-shadow: none;
padding: 10px 6px;
font-size: 15px;
}
.r34c8-cr-btn--sidebars::before,
.r34c8-cr-btn--sidebars::after {
content: '';
width: 3px;
height: 26px;
border-radius: 2px;
background: var(--primary-color);
flex-shrink: 0;
}
.r34c8-cr-btn--sidebars::before { margin-right: 16px; }
.r34c8-cr-btn--sidebars::after  { margin-left: 16px; }
.r34c8-cr-btn--sidebars:hover { background: transparent; color: var(--primary-dark); transform: none; box-shadow: none; }
.r34c8-cr-btn--sidebars svg { stroke: var(--primary-color); }
.r34c8-cr-btnrow--sidebars::before,
.r34c8-cr-btnrow--sidebars::after { display: none; }
.r34c8-cr-btn--badge {
background: var(--primary-color);
border-radius: 0;
padding: 10px 30px 18px;
min-height: 52px;
box-shadow: none;
clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 10px), 0 100%);
}
.r34c8-cr-btn--badge:hover { background: var(--primary-dark); transform: none; }
.r34c8-cr-overlay.r34c8-cr-btnrow--badge::before,
.r34c8-cr-overlay.r34c8-cr-btnrow--badge::after {
height: 2px;
background: #D1D5DB;
margin: 0 0 62px;
}
.r34c8-cr-btn--fade {
background: var(--primary-color);
min-height: 50px;
padding: 12px 38px;
box-shadow: 0 8px 24px rgba(217, 56, 2, 0.38);
}
.r34c8-cr-btn--fade:hover { background: var(--primary-dark); }
.r34c8-cr-overlay.r34c8-cr-btnrow--fade {
height: 180px;
background: linear-gradient(to bottom,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0.9) 45%,
rgba(255, 255, 255, 1) 80%);
}
.r34c8-cr-btnrow--fade::before,
.r34c8-cr-btnrow--fade::after { display: none; }
.r34c8-cr-btn--glassfloat {
gap: 11px;
background: rgba(217, 56, 2, 0.10);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
border: 1px solid rgba(217, 56, 2, 0.26);
border-radius: 18px;
color: var(--primary-dark);
padding: 8px 22px 8px 8px;
box-shadow: 0 6px 20px rgba(217, 56, 2, 0.16);
}
.r34c8-cr-btn--glassfloat::before {
content: '\f518';
font-family: 'Font Awesome 6 Free';
font-weight: 900;
display: inline-flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
border-radius: 50%;
background: linear-gradient(135deg, #FF7A1A, var(--primary-color));
color: #fff;
font-size: 12px;
flex-shrink: 0;
}
.r34c8-cr-btn--glassfloat:hover {
background: rgba(217, 56, 2, 0.16);
border-color: rgba(217, 56, 2, 0.4);
box-shadow: 0 10px 26px rgba(217, 56, 2, 0.24);
}
.r34c8-cr-btn--glassfloat svg { stroke: var(--primary-dark); }
.r34c8-cr-btnrow--glassfloat::before,
.r34c8-cr-btnrow--glassfloat::after { display: none; }
.r34c8-cr-btn--readingarc {
background: transparent;
color: var(--text-main, #1F2937);
box-shadow: none;
flex-direction: column;
align-items: center;
position: relative;
padding: 0 6px 4px;
font-size: 11px;
}
.r34c8-cr-btn--readingarc::before {
content: '';
display: block;
width: 44px;
height: 44px;
border-radius: 50%;
background: conic-gradient(var(--primary-color) 0% 62%, #E5E7EB 62% 100%);
-webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
margin-bottom: 8px;
flex-shrink: 0;
}
.r34c8-cr-btn--readingarc svg {
position: absolute;
top: 14px;
left: 50%;
transform: translateX(-50%);
stroke: var(--primary-dark);
width: 16px;
height: 16px;
margin-left: 0 !important;
}
.r34c8-cr-btn--readingarc:hover { background: transparent; color: var(--primary-dark); transform: none; box-shadow: none; }
.r34c8-cr-btnrow--readingarc::before,
.r34c8-cr-btnrow--readingarc::after { display: none; }
.r34c8-cr-btn--shine {
position: relative;
overflow: hidden;
background: linear-gradient(135deg, #FF7A1A, var(--primary-color));
box-shadow: 0 4px 16px rgba(217, 56, 2, 0.4);
animation: r34c8ShineGlow 2.8s ease-in-out infinite;
}
.r34c8-cr-btn--shine::after {
content: '';
position: absolute;
top: 0;
left: -60%;
width: 40%;
height: 100%;
background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.55), transparent);
animation: r34c8ShineSweep 3.2s ease-in-out infinite;
pointer-events: none;
}
.r34c8-cr-btn--shine:hover { background: linear-gradient(135deg, #FF7A1A, var(--primary-color)); filter: brightness(1.06); }
.r34c8-cr-btnrow--shine::before { background: linear-gradient(to left, var(--primary-color), rgba(217, 56, 2, 0)); }
.r34c8-cr-btnrow--shine::after { background: linear-gradient(to right, var(--primary-color), rgba(217, 56, 2, 0)); }
@keyframes r34c8ShineSweep {
0%, 30%  { left: -60%; }
70%, 100% { left: 130%; }
}
@keyframes r34c8ShineGlow {
0%, 100% { box-shadow: 0 4px 16px rgba(217, 56, 2, 0.4); }
50%      { box-shadow: 0 4px 22px rgba(217, 56, 2, 0.65); }
}
@property --r34c8-edge-ang {
syntax: '<angle>';
inherits: false;
initial-value: 0deg;
}
.r34c8-cr-btn--edge {
color: #fff;
border: 2px solid transparent;
border-radius: 40px;
background-image: linear-gradient(#111827, #111827),
conic-gradient(from var(--r34c8-edge-ang, 0deg), #D93802, #FF7A1A, #FFB380, #D93802);
background-origin: border-box;
background-clip: padding-box, border-box;
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
animation: r34c8EdgeSpin 3.5s linear infinite;
}
.r34c8-cr-btn--edge:hover { background-image: linear-gradient(#1F2937, #1F2937), conic-gradient(from var(--r34c8-edge-ang, 0deg), #D93802, #FF7A1A, #FFB380, #D93802); transform: translateY(-2px); }
.r34c8-cr-btn--edge svg { stroke: #FF9A52; }
.r34c8-cr-btnrow--edge::before,
.r34c8-cr-btnrow--edge::after { display: none; }
@keyframes r34c8EdgeSpin {
to { --r34c8-edge-ang: 360deg; }
}
.r34c8-cr-btn.r34c8-cr-anim { animation: r34c8CrNudge 2.6s ease-in-out infinite; }
.r34c8-cr-btn.r34c8-cr-anim svg { animation: r34c8CrBob 1.6s ease-in-out infinite; }
.r34c8-cr-btn--classic.r34c8-cr-anim { animation: r34c8CrPulse 2.6s ease-in-out infinite; }
.r34c8-cr-btn--tab.r34c8-cr-anim { animation: r34c8CrTabNudge 2.6s ease-in-out infinite; }
@keyframes r34c8CrNudge {
0%, 100% { transform: scale(1); }
50%      { transform: scale(1.04); }
}
@keyframes r34c8CrTabNudge {
0%, 100% { box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22); }
50%      { box-shadow: 0 10px 26px rgba(217, 56, 2, 0.55); }
}
@keyframes r34c8CrBob {
0%, 100% { transform: translateY(0); }
50%      { transform: translateY(4px); }
}
@keyframes r34c8CrPulse {
0%, 100% { transform: scale(1);    box-shadow: 0 6px 24px rgba(217, 56, 2, 0.5); }
50%      { transform: scale(1.04); box-shadow: 0 8px 36px rgba(217, 56, 2, 0.8); }
}
@media (prefers-reduced-motion: reduce) {
.r34c8-cr-anim,
.r34c8-cr-anim svg { animation: none !important; }
.r34c8-cr-btn--shine,
.r34c8-cr-btn--shine::after,
.r34c8-cr-btn--edge { animation: none !important; }
}
.r34c8-cr-btn--loading {
opacity: 0.75;
pointer-events: none;
}
.r34c8-cr-part { margin-top: 8px; }
.r34c8-cr-end {
text-align: center;
margin: 36px 0 20px;
font-size: 14px;
font-weight: 600;
color: #9CA3AF;
}
.post-tags {
position: relative;
z-index: 2;
margin-top: 44px;
padding-top: 24px;
border-top: 1px solid var(--border-light);
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.post-tags a {
display: inline-flex;
align-items: center;
background: var(--primary-color);
color: #fff;
padding: 8px 18px;
border-radius: 20px;
font-size: 15px;
font-weight: 700;
text-decoration: none;
min-height: 40px;
transition: background 0.2s;
}
.post-tags a:hover {
background: var(--primary-dark);
color: #fff;
}
.sidebar {
position: relative;
}
.sidebar-widget {
margin-bottom: 30px;
background: #FFFFFF;
border-radius: 16px;
box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
padding: 30px;
}
.sidebar-widget-title {
font-size: 13px;
font-weight: 700;
color: var(--primary-color);
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 16px;
}
.top-news-list {
display: flex;
flex-direction: column;
gap: 0;
}
.top-news-item {
padding: 16px 0;
border-bottom: 1px solid var(--border-light);
}
.top-news-item:first-child {
padding-top: 0;
}
.top-news-item:last-child {
border-bottom: none;
}
.top-news-item .news-title {
font-size: 17px;
font-weight: 700;
line-height: 1.5;
color: var(--text-main);
margin-bottom: 6px;
}
.top-news-item .news-title a {
color: inherit;
text-decoration: none;
}
.top-news-item .news-title a:hover {
color: var(--primary-color);
}
.top-news-item .news-date {
font-size: 14px;
color: var(--text-muted);
}
@media (min-width: 992px) {
.sidebar.sidebar-is-sticky {
position: sticky;
top: 76px;
align-self: start;
}
}
.related-articles {
margin-top: 40px;
padding-top: 30px;
border-top: 1px solid var(--border-light);
}
.related-articles h3 {
font-size: 20px;
font-weight: 700;
margin-bottom: 20px;
}
.related-list {
display: flex;
flex-direction: column;
gap: 16px;
}
.related-item {
display: flex;
gap: 16px;
align-items: flex-start;
}
.related-item .related-text {
flex: 1;
min-width: 0;
}
.related-item-featured {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 12px;
border-bottom: 1px solid var(--border-light);
padding-bottom: 24px;
}
.related-item-featured .related-image {
width: 100%;
}
.related-item-featured .related-image img {
width: 100%;
aspect-ratio: 16/9;
object-fit: cover;
border-radius: 12px;
}
.related-item .related-text .related-title,
.related-item-featured .related-text .related-title {
font-size: 18px;
font-weight: 700;
line-height: 1.4;
color: var(--text-main);
}
.related-item .related-text .related-title a,
.related-item-featured .related-text .related-title a {
color: inherit;
text-decoration: none;
}
.related-item .related-text .related-title a:hover,
.related-item-featured .related-text .related-title a:hover {
color: var(--primary-color);
}
.related-item .related-text .related-date {
font-size: 14px;
color: var(--text-muted);
margin-top: 6px;
}
.related-item .related-image {
flex-shrink: 0;
width: 140px;
}
.related-item .related-image img {
width: 100%;
aspect-ratio: 16/10;
object-fit: cover;
border-radius: 8px;
}
.related-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.related-grid-card {
display: block;
text-decoration: none;
border-radius: 12px;
overflow: hidden;
background: #fff;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
transition: transform 0.25s, box-shadow 0.25s;
}
.related-grid-card:hover {
transform: translateY(-3px);
box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}
.related-grid-image {
aspect-ratio: 16/10;
overflow: hidden;
background: #f0f0f0;
}
.related-grid-image img,
.related-grid-image svg,
.related-grid-image .placeholder-img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.4s;
}
.related-grid-card:hover .related-grid-image img {
transform: scale(1.04);
}
.related-grid-body {
padding: 14px 16px 16px;
}
.related-grid-title {
font-size: 15px;
font-weight: 700;
line-height: 1.35;
color: var(--text-main);
margin-bottom: 6px;
display: -webkit-box;
-webkit-line-clamp: 3;
line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.related-grid-card:hover .related-grid-title {
color: var(--primary-color);
}
.related-grid-date {
font-size: 12px;
color: var(--text-muted);
}
.related-minimal {
display: flex;
flex-direction: column;
gap: 0;
}
.related-minimal-item {
display: flex;
align-items: center;
gap: 14px;
padding: 14px 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
text-decoration: none;
transition: background 0.2s, padding-left 0.2s;
}
.related-minimal-item:last-child {
border-bottom: none;
}
.related-minimal-item:hover {
background: rgba(0, 0, 0, 0.02);
padding-left: 6px;
}
.related-minimal-num {
font-size: 28px;
font-weight: 800;
color: rgba(0, 0, 0, 0.08);
line-height: 1;
flex-shrink: 0;
width: 36px;
text-align: center;
}
.related-minimal-item:hover .related-minimal-num {
color: var(--primary-color);
opacity: 0.3;
}
.related-minimal-thumb {
width: 56px;
height: 56px;
border-radius: 8px;
overflow: hidden;
flex-shrink: 0;
}
.related-minimal-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
}
.related-minimal-text {
flex: 1;
min-width: 0;
}
.related-minimal-title {
font-size: 15px;
font-weight: 700;
color: var(--text-main);
line-height: 1.35;
margin-bottom: 2px;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.related-minimal-item:hover .related-minimal-title {
color: var(--primary-color);
}
.related-minimal-text time {
font-size: 12px;
color: var(--text-muted);
}
@media (max-width: 768px) {
.related-articles {
margin-top: 24px;
padding-top: 20px;
}
.related-item .related-image {
width: 100px;
}
.related-item .related-text .related-title {
font-size: 15px;
}
.related-grid {
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}
.related-grid-body {
padding: 10px 12px 12px;
}
.related-grid-title {
font-size: 14px;
}
}
@media (max-width: 480px) {
.related-grid {
grid-template-columns: 1fr;
}
.related-item .related-image {
width: 80px;
}
.related-minimal-num {
font-size: 22px;
width: 28px;
}
.related-minimal-thumb {
width: 48px;
height: 48px;
}
}
.post-navigation {
margin-top: 32px;
padding-top: 24px;
border-top: 1px solid var(--border-light);
}
.post-navigation .nav-links {
display: flex;
justify-content: space-between;
gap: 20px;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
flex: 1;
min-width: 0;
}
.post-navigation .nav-next {
text-align: right;
}
.post-navigation .nav-previous a,
.post-navigation .nav-next a {
text-decoration: none;
display: block;
padding: 12px 16px;
border-radius: 10px;
background: #f8f8f8;
transition: background 0.2s, box-shadow 0.2s;
}
.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
background: #f0f0f0;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.post-navigation .nav-subtitle {
display: block;
font-size: 12px;
font-weight: 600;
color: var(--primary-color);
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 4px;
}
.post-navigation .nav-title {
display: block;
font-size: 15px;
font-weight: 700;
color: var(--text-main);
line-height: 1.35;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
@media (max-width: 480px) {
.post-navigation .nav-links {
flex-direction: column;
gap: 10px;
}
.post-navigation .nav-next {
text-align: left;
}
}
.custom-stories-container {
background-color: var(--bg-main);
padding: 12px 0;
min-height: 100vh;
}
.stories-feed-list {
display: flex;
flex-direction: column;
gap: 12px;
max-width: 800px;
margin: 0 auto;
}
.story-card {
background-color: #ffffff;
border-radius: 24px;
box-shadow: none;
padding: 20px 16px 0;
overflow: hidden;
margin: 0;
}
.story-card-header {
display: flex;
flex-direction: row-reverse;
justify-content: space-between;
align-items: center;
margin-bottom: 12px;
}
.story-card-category {
font-size: 11px;
font-weight: 700;
line-height: 15.4px;
color: var(--primary-dark);
text-transform: uppercase;
text-decoration: none;
}
.story-card-date {
font-size: 12px;
font-weight: 400;
line-height: 19.2px;
color: var(--text-muted);
}
.story-card-link {
display: block;
text-decoration: none;
color: inherit;
}
.story-card-image {
margin: 0 -16px;
position: relative;
display: block;
}
.story-card-image img {
width: 100%;
display: block;
height: auto;
object-fit: cover;
aspect-ratio: 16/9;
border-radius: 0;
}
.page-header {
text-align: center;
margin-bottom: 40px;
}
.page-title {
font-size: 36px;
font-weight: 700;
color: var(--text-main);
}
.archive-description {
color: var(--text-muted);
font-size: 18px;
margin-top: 10px;
}
.archive-grid {
display: grid;
grid-template-columns: 1fr;
gap: 24px;
}
@media (min-width: 600px) {
.archive-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 992px) {
.archive-grid {
grid-template-columns: repeat(3, 1fr);
}
}
.nav-links {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 50px;
flex-wrap: wrap;
}
.nav-links .page-numbers {
padding: 12px 20px;
border-radius: 8px;
background: var(--bg-card);
color: var(--text-main);
font-weight: 700;
font-size: 18px;
text-decoration: none;
transition: all 0.2s;
min-height: 48px;
min-width: 48px;
display: inline-flex;
align-items: center;
justify-content: center;
}
.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
background: var(--primary-color);
color: #fff;
}
.error-404-content {
max-width: 600px;
margin: 0 auto;
text-align: center;
padding: 80px 20px;
}
.error-404-content .error-code {
font-size: 120px;
font-weight: 900;
color: var(--primary-color);
line-height: 1;
margin-bottom: 20px;
}
.error-404-content h2 {
font-size: 28px;
font-weight: 700;
margin-bottom: 16px;
}
.error-404-content p {
font-size: 18px;
color: var(--text-muted);
margin-bottom: 30px;
}
.btn-home {
display: inline-block;
padding: 12px 28px;
background: var(--primary-color);
color: #fff;
border-radius: 30px;
font-weight: 700;
font-size: 16px;
text-decoration: none;
transition: background 0.2s;
}
.btn-home:hover {
background: var(--primary-dark);
color: #fff;
}
.searchform,
.search-form,
form[role="search"] {
display: flex;
gap: 8px;
align-items: flex-end;
}
.search-form label > .screen-reader-text,
.search-form > label {
display: flex;
flex-direction: column;
flex: 1;
}
.search-form label > .screen-reader-text {
position: absolute;
width: 1px;
height: 1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
.search-field,
.searchform input[type="search"],
input[type="search"].search-field {
flex: 1;
padding: 12px 18px;
font-size: 16px;
font-family: var(--font-stack);
color: var(--text-main);
background: var(--bg-card);
border: 2px solid var(--border-light);
border-radius: 10px;
outline: none;
transition: border-color 0.2s, box-shadow 0.2s;
width: 100%;
}
.search-field:focus,
.searchform input[type="search"]:focus {
border-color: var(--primary-color);
box-shadow: 0 0 0 3px rgba(236, 87, 37, 0.15);
}
.search-field::placeholder {
color: #aaa;
}
.search-submit,
.searchform button[type="submit"],
.searchform input[type="submit"] {
padding: 12px 24px;
background: var(--primary-color);
color: #fff;
border: none;
border-radius: 10px;
font-size: 15px;
font-weight: 700;
font-family: var(--font-stack);
cursor: pointer;
transition: background 0.2s, transform 0.15s;
white-space: nowrap;
flex-shrink: 0;
}
.search-submit:hover,
.searchform button[type="submit"]:hover {
background: var(--primary-dark);
transform: translateY(-1px);
}
body.dark-mode .search-field,
body.dark-mode .searchform input[type="search"] {
background: var(--bg-surface);
color: #ffffff;
border-color: var(--border-light);
}
body.dark-mode .search-field:focus,
body.dark-mode .searchform input[type="search"]:focus {
border-color: #60a5fa;
box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}
body.dark-mode .search-submit,
body.dark-mode .searchform button[type="submit"] {
background: var(--primary-color);
color: #fff;
}
.search-header {
text-align: center;
margin-bottom: 40px;
}
.search-header h1 {
font-size: 28px;
font-weight: 700;
}
.search-header h1 span {
color: var(--primary-color);
}
.site-footer {
background-color: var(--dark-bg);
color: #FFF;
padding: 60px 0 30px;
margin-top: 60px;
}
.footer-grid {
display: grid;
grid-template-columns: 1fr;
gap: 40px;
}
@media (min-width: 768px) {
.footer-grid {
grid-template-columns: 1fr 2fr;
}
}
.footer-info {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.footer-logo {
font-family: 'Brush Script MT', cursive, sans-serif;
font-size: 32px;
color: var(--primary-color);
margin-bottom: 5px;
}
.footer-description {
color: rgba(255, 255, 255, 0.85);
font-size: 16px;
max-width: 300px;
line-height: 1.75;
margin-top: 0;
}
.footer-links {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
@media (min-width: 768px) {
.footer-links {
grid-template-columns: repeat(2, 1fr);
}
}
.footer-links h4 {
margin-bottom: 15px;
color: #FFF;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
}
.footer-links ul {
list-style: none;
}
.footer-links li {
margin-bottom: 10px;
}
.footer-links a {
color: rgba(255, 255, 255, 0.85);
font-size: 16px;
text-underline-offset: 3px;
}
.footer-links a:hover {
color: var(--primary-color);
text-decoration: underline;
}
.footer-bottom {
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
font-size: 15px;
color: rgba(255, 255, 255, 0.65);
}
.social-icons {
display: flex;
gap: 15px;
justify-content: center;
}
.social-icons a {
display: flex;
align-items: center;
justify-content: center;
width: 48px;
height: 48px;
border-radius: 50%;
background-color: #555;
color: #FFF;
font-size: 20px;
transition: background-color 0.2s;
}
.social-icons a:hover {
background-color: var(--primary-color);
}
.main-content {
padding: 30px 0;
}
body.no-cat-nav .main-content {
padding-top: 10px;
}
body.no-cat-nav .single-layout {
padding-top: 10px;
}
@media (max-width: 768px) {
.single-post .main-content,
.main-content {
background-color: var(--bg-main);
padding: 8px 0 0;
}
.category-nav-wrapper {
padding: 10px 0;
}
.cat-pill {
padding: 8px 18px;
font-size: 16px;
min-height: 40px;
}
.home-hero {
margin-top: -12px;
margin-bottom: 12px;
gap: 12px;
}
.hero-main {
border-radius: var(--border-radius-lg);
box-shadow: var(--shadow-card);
}
.hero-main .hero-text {
padding: 12px 12px 8px;
}
.hero-main .hero-title {
font-size: 20px;
line-height: 28px;
margin-bottom: 8px;
}
.hero-sidebar {
border-radius: var(--border-radius-lg);
background: var(--bg-card);
box-shadow: var(--shadow-card);
margin: 0 0 12px;
}
.sidebar-card {
height: auto;
padding: 16px;
}
.sidebar-card .card-title {
font-size: 16px;
-webkit-line-clamp: 2;
line-clamp: 2;
}
.hero-trending-label {
font-size: 9px;
padding: 4px 10px;
margin-bottom: 8px;
letter-spacing: 0.3px;
}
.hero-trending-label.trending-now-pill {
font-size: 10px;
padding: 3px 10px 3px 3px;
margin-bottom: 12px;
letter-spacing: 0.6px;
}
.hero-trending-label.trending-now-pill .trending-icon-wrapper {
width: 24px;
height: 24px;
margin-right: 6px;
}
.hero-trending-label.trending-now-pill .trending-flame-svg {
width: 14px;
height: 17.5px;
margin-top: -2px;
margin-bottom: 0px;
}
.hero-rank-badge {
font-size: 11px;
padding: 3px 9px;
}
.hero-views-pill {
font-size: 10px;
padding: 1px 7px;
margin-right: 5px;
}
.grid-card .card-body {
padding: 12px 12px 10px;
}
.grid-card .card-excerpt {
display: none;
}
.grid-card .card-title {
font-size: 16px;
line-height: 22px;
margin-bottom: 4px;
}
.category-section .card-grid {
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}
.category-section .grid-card .card-image img {
aspect-ratio: 4/3;
}
.category-section .grid-card .card-body {
padding: 8px 10px 10px;
}
.category-section .grid-card .card-title {
font-size: 14px;
line-height: 19px;
display: -webkit-box;
-webkit-line-clamp: 3;
line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.category-section .card-meta .meta-category {
font-size: 10px;
}
.layout-list-wrap .list-item-thumb {
width: 64px;
height: 64px;
}
.layout-list-wrap .list-item-title {
font-size: 14px;
line-height: 1.35;
}
.layout-full-wrap {
grid-template-columns: 1fr;
gap: 14px;
}
.single-layout {
grid-template-columns: 1fr;
padding: 0;
gap: 16px;
}
.article-content {
margin: 0;
border-radius: 0;
box-shadow: none;
padding: 0;
background: var(--bg-card);
}
.article-featured-image {
margin: 0 0 0 0;
}
.article-featured-image img {
width: 100%;
border-radius: 12px;
display: block;
}
.article-featured-image figcaption {
padding: 8px 16px;
}
.article-breadcrumbs,
.article-title-single,
.article-author-row,
.article-lead,
.entry-content-wrapper,
.post-tags,
.related-articles,
.comments-area {
}
.article-lead {
padding: 12px;
}
.entry-content {
padding-bottom: 32px;
}
.entry-content img {
width: 100%;
max-width: 100%;
border-radius: 8px;
}
.article-title-single {
font-size: 29px;
line-height: 40.6px;
padding-top: 20px;
}
.article-author-row {
flex-direction: column;
align-items: flex-start;
gap: 12px;
padding-top: 12px;
padding-bottom: 12px;
}
.share-buttons {
width: 100%;
justify-content: flex-start;
flex-wrap: wrap;
}
.sidebar {
margin: 0 -16px;
padding: 0 16px;
}
.sidebar-widget {
border-radius: 16px;
margin-bottom: 12px;
}
.category-section {
padding: 20px 16px;
border-radius: 16px;
}
.page-content-single {
margin: 0 -16px;
border-radius: 24px 24px 0 0;
box-shadow: 0 -2px 20px rgba(51, 51, 51, 0.08);
padding: 24px 16px;
}
.search-overlay {
padding-top: 5vh;
}
.share-btn {
width: 44px;
height: 44px;
font-size: 18px;
}
.entry-content table,
.entry-content pre,
.entry-content iframe,
.entry-content video {
max-width: 100%;
overflow-x: auto;
display: block;
}
.floating-share-bar {
display: none !important;
}
}
@media (max-width: 768px) {
.custom-stories-container {
padding: 8px 0;
background: #F5F5F5;
}
.stories-feed-list {
gap: 12px;
padding: 0 8px;
}
.story-card {
border-radius: 20px;
padding: 16px 16px 0;
overflow: hidden;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.story-card-image {
margin: 0 -16px;
border-radius: 0;
}
.story-card-image img {
border-radius: 0;
aspect-ratio: 16/9;
width: 100%;
}
.story-card-title {
font-size: 20px;
line-height: 1.4;
}
.story-card-excerpt {
font-size: 15px;
line-height: 1.6;
}
}
@media (max-width: 480px) {
.hero-main .hero-excerpt {
font-size: 16px;
line-height: 26px;
}
.category-section-header h2 {
font-size: 20px;
}
}
.comments-area {
margin-top: 48px;
padding-top: 36px;
border-top: 2px solid #EAEAEA;
}
.comments-title,
.comment-reply-title {
font-size: 26px;
font-weight: 700;
color: #1a202c;
margin-bottom: 28px;
line-height: 1.3;
}
.cf-note {
font-size: 16px;
color: #757575;
margin-bottom: 24px;
}
.cf-field,
.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-comment,
.comment-form-cookies-consent {
display: flex;
flex-direction: column;
margin-bottom: 20px;
}
.comment-form-cookies-consent {
flex-direction: row;
align-items: flex-start;
}
.cf-field label,
.r34c8-comment-form .cf-field>label,
.comment-form label {
display: block;
font-size: 17px;
font-weight: 700;
color: #1a202c;
margin-bottom: 8px;
}
.cf-field label .optional,
.comment-form label .optional {
font-size: 14px;
font-weight: 400;
color: #888;
margin-left: 6px;
}
.cf-field label .required,
.comment-form label .required {
color: var(--primary-color);
margin-left: 2px;
}
.r34c8-comment-form input[type="text"],
.r34c8-comment-form input[type="email"],
.r34c8-comment-form input[type="url"],
.r34c8-comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
width: 100%;
padding: 14px 18px;
font-size: 18px;
font-family: inherit;
color: #1a202c;
background: #FAFAFA;
border: 2px solid #D1D5DB;
border-radius: 10px;
line-height: 1.6;
transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
-webkit-appearance: none;
appearance: none;
box-sizing: border-box;
}
.r34c8-comment-form input[type="text"]:focus,
.r34c8-comment-form input[type="email"]:focus,
.r34c8-comment-form input[type="url"]:focus,
.r34c8-comment-form textarea:focus,
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
outline: none;
border-color: var(--primary-color);
box-shadow: 0 0 0 3px rgba(236, 87, 37, 0.12);
background: #fff;
}
.r34c8-comment-form input::placeholder,
.r34c8-comment-form textarea::placeholder,
.comment-form input::placeholder,
.comment-form textarea::placeholder {
color: #AAA;
font-size: 16px;
}
.r34c8-comment-form textarea {
min-height: 160px;
resize: vertical;
}
.cf-cookies {
margin-top: 4px;
margin-bottom: 24px;
}
.cf-cookies-label,
.comment-form-cookies-consent label {
display: flex !important;
flex-direction: row !important;
align-items: flex-start;
gap: 12px;
font-size: 16px !important;
font-weight: 400 !important;
color: #555 !important;
cursor: pointer;
line-height: 1.5;
}
.cf-cookies-label input[type="checkbox"],
.comment-form-cookies-consent input[type="checkbox"] {
width: 22px;
height: 22px;
min-width: 22px;
cursor: pointer;
accent-color: var(--primary-color);
margin-top: 2px;
}
.cf-submit {
margin-top: 8px;
}
.r34c8-submit-btn,
.comment-form .submit {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 16px 44px;
font-size: 19px;
font-weight: 700;
font-family: inherit;
background: var(--primary-color);
color: #fff;
border: none;
border-radius: 40px;
cursor: pointer;
letter-spacing: 0.3px;
box-shadow: 0 6px 20px rgba(236, 87, 37, 0.35);
transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
min-height: 56px;
text-decoration: none;
}
.r34c8-submit-btn:hover,
.comment-form .submit:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(236, 87, 37, 0.45);
color: #fff;
}
.comment-list {
list-style: none;
padding: 0;
margin: 0 0 40px;
}
.comment-body {
padding: 24px 0;
border-bottom: 1px solid #EAEAEA;
}
.comment-body:last-child {
border-bottom: none;
}
.comment-author {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 8px;
}
.comment-author img {
border-radius: 50%;
width: 48px;
height: 48px;
}
.comment-author .fn {
font-size: 17px;
font-weight: 700;
color: #1a202c;
}
.comment-metadata {
font-size: 14px;
color: #757575;
margin-bottom: 12px;
}
.comment-metadata a {
color: inherit;
text-decoration: none;
}
.comment-content p {
font-size: 18px;
line-height: 1.75;
color: #1a202c;
margin-bottom: 0;
}
.comment-reply-link {
display: inline-flex;
align-items: center;
margin-top: 12px;
font-size: 15px;
font-weight: 700;
color: var(--primary-color);
text-decoration: none;
padding: 6px 16px;
border: 2px solid var(--primary-color);
border-radius: 20px;
transition: all 0.2s;
}
.comment-reply-link:hover {
background: var(--primary-color);
color: #fff;
}
.no-comments {
font-size: 17px;
color: #757575;
font-style: italic;
padding: 16px 0;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
outline: 3px solid var(--primary-color);
outline-offset: 3px;
}
.story-card-title {
font-size: 22px;
font-weight: 700;
line-height: 1.4;
color: var(--text-main);
margin-bottom: 12px;
}
.story-card-excerpt {
font-size: 17px;
font-weight: 400;
line-height: 1.7;
color: var(--text-main);
margin-bottom: 16px;
}
@media (min-width: 768px) {
.story-card-title {
font-size: 30px;
line-height: 1.35;
}
.story-card-excerpt {
font-size: 20px;
line-height: 1.7;
}
}
.page-content-single {
max-width: 960px;
margin: 0 auto;
padding: 40px 20px 60px;
background: var(--bg-card);
border-radius: var(--border-radius-lg);
box-shadow: var(--shadow-card);
}
body.page-width-narrow .page-content-single {
max-width: 720px;
}
body.page-width-wide .page-content-single {
max-width: none;
}
.amp-visually-hidden {
position: absolute !important;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
.am-page-hero h1.entry-title,
.page-content-single .amp-template-hero h1.entry-title {
position: relative;
font-size: 38px;
font-weight: 900;
margin: 0 0 18px;
padding: 0;
border: none;
color: #fff;
letter-spacing: -.02em;
text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
text-align: center;
line-height: 1.2;
z-index: 2;
}
.page-content-single .amp-template-hero {
margin-top: -10px;
}
@media (max-width: 768px) {
.am-page-hero h1.entry-title,
.page-content-single .amp-template-hero h1.entry-title {
font-size: 26px;
}
.page-content-single .amp-template-hero {
padding: 48px 24px;
}
}
.page-content-single .entry-header {
margin-bottom: 40px;
padding-bottom: 24px;
border-bottom: 3px solid var(--primary-color);
position: relative;
}
.page-content-single .entry-title {
font-size: 38px;
font-weight: 800;
line-height: 1.2;
color: var(--text-main);
margin: 0;
font-family: var(--font-stack);
letter-spacing: -0.02em;
}
.page-content-single .entry-content {
font-size: 20px;
line-height: 34px;
color: var(--text-main);
font-family: var(--font-stack);
font-weight: 400;
}
.page-content-single .entry-content h2 {
font-size: 30px;
font-weight: 800;
color: var(--text-main);
margin: 52px 0 22px;
padding-bottom: 14px;
border-bottom: 2px solid #f0f0f0;
position: relative;
font-family: var(--font-stack);
letter-spacing: -0.02em;
line-height: 1.3;
}
.page-content-single .entry-content h2::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 60px;
height: 2px;
background: var(--primary-color);
}
.page-content-single .entry-content h3 {
font-size: 24px;
font-weight: 700;
color: var(--text-main);
margin: 40px 0 16px;
font-family: var(--font-stack);
letter-spacing: -0.01em;
line-height: 1.35;
padding-left: 16px;
position: relative;
}
.page-content-single .entry-content h3::before {
content: '';
position: absolute;
left: 0;
top: 0.15em;
bottom: 0.15em;
width: 4px;
background: linear-gradient(180deg, var(--primary-color, #EC5725), #6366f1);
border-radius: 4px;
}
.page-content-single .entry-content h4 {
font-size: 20px;
font-weight: 700;
color: var(--primary-color, #EC5725);
margin: 28px 0 12px;
font-family: var(--font-stack);
line-height: 1.4;
text-transform: uppercase;
letter-spacing: 0.06em;
padding-left: 20px;
position: relative;
}
.page-content-single .entry-content h4::before {
content: '▸';
position: absolute;
left: 0;
font-size: 1.1em;
line-height: inherit;
color: var(--primary-color, #EC5725);
}
.page-content-single .entry-content h5 {
font-size: 17px;
font-weight: 700;
margin: 24px 0 8px;
display: inline-block;
background: linear-gradient(135deg, rgba(236, 87, 37, 0.08), rgba(99, 102, 241, 0.06));
padding: 4px 14px;
border-radius: 6px;
letter-spacing: 0.02em;
color: var(--text-main);
border-left: 3px solid var(--primary-color, #EC5725);
}
.page-content-single .entry-content h6 {
font-size: 15px;
font-weight: 600;
margin: 20px 0 6px;
text-transform: uppercase;
letter-spacing: 0.1em;
color: #888;
position: relative;
padding-bottom: 6px;
}
.page-content-single .entry-content h6::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 24px;
height: 2px;
background: #ddd;
border-radius: 2px;
}
.page-content-single .entry-content p {
margin: 0 0 22px;
font-size: 20px;
line-height: 34px;
}
.page-content-single .entry-content strong {
font-weight: 700;
color: var(--text-main);
}
.page-content-single .entry-content em {
color: var(--text-main);
font-style: italic;
}
.page-content-single .entry-content ul {
list-style: none;
padding-left: 0;
}
.page-content-single .entry-content ul li {
position: relative;
padding-left: 22px;
margin-bottom: 12px;
}
.page-content-single .entry-content ul li::before {
content: '';
position: absolute;
left: 0;
top: 13px;
width: 7px;
height: 7px;
background: var(--primary-color);
border-radius: 50%;
}
.page-content-single .entry-content ol {
list-style: decimal;
padding-left: 28px;
}
.page-content-single .entry-content ol li {
margin-bottom: 12px;
padding-left: 6px;
}
.page-content-single .entry-content ol li::marker {
color: var(--primary-color);
font-weight: 700;
}
.page-content-single .entry-content hr {
border: none;
height: 1px;
background: #e8e8e8;
margin: 40px 0;
}
.page-content-single .entry-content a {
color: var(--primary-color, #EC5725);
text-decoration: underline;
text-decoration-thickness: 1.5px;
text-underline-offset: 2px;
font-weight: 600;
transition: color .2s;
}
.page-content-single .entry-content a:hover {
color: var(--primary-dark, #D93802);
}
.page-content-single .entry-content .am-btn {
text-decoration: none;
}
.page-content-single .entry-content .am-btn-primary {
color: #fff;
}
.page-content-single .entry-content .am-btn-primary:hover {
color: #fff;
}
.page-content-single .entry-content .am-btn-outline {
color: #EC5725;
}
.page-content-single .entry-content .am-btn-outline:hover {
color: #fff;
}
.page-content-single .entry-content .am-card a {
text-decoration: none;
font-weight: 700;
}
.page-content-single .entry-content .am-contact-row a {
text-decoration: none;
}
.page-content-single .entry-content .am-latest-news a {
text-decoration: none;
font-weight: inherit;
color: inherit;
}
.page-content-single .entry-content .am-ln-hero-title a {
color: var(--text-main, #222);
}
.page-content-single .entry-content .am-ln-hero-cta {
color: var(--primary-color, #D93802);
font-weight: 700;
}
.page-content-single .entry-content ul,
.page-content-single .entry-content ol {
margin: 0 0 24px;
padding-left: 28px;
}
.page-content-single .entry-content li {
margin-bottom: 10px;
line-height: 1.7;
}
.page-content-single .entry-content li strong {
color: #1a1a2e;
}
.am-page-hero {
position: relative;
background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
background-size: 200% 200%;
animation: amHeroGradient 8s ease infinite;
color: #fff;
padding: 72px 48px;
border-radius: 24px;
margin-bottom: 48px;
text-align: center;
overflow: hidden;
box-shadow: 0 20px 60px rgba(15,12,41,.35);
}
@keyframes amHeroGradient {
0% { background-position: 0% 50% }
50% { background-position: 100% 50% }
100% { background-position: 0% 50% }
}
.am-page-hero::before {
content: '';
position: absolute;
width: 320px;
height: 320px;
border-radius: 50%;
background: radial-gradient(circle, rgba(236,87,37,.25) 0%, transparent 70%);
top: -80px;
right: -60px;
animation: amOrbFloat 6s ease-in-out infinite alternate;
pointer-events: none;
}
.am-page-hero::after {
content: '';
position: absolute;
width: 240px;
height: 240px;
border-radius: 50%;
background: radial-gradient(circle, rgba(99,102,241,.2) 0%, transparent 70%);
bottom: -60px;
left: -40px;
animation: amOrbFloat 8s ease-in-out infinite alternate-reverse;
pointer-events: none;
}
@keyframes amOrbFloat {
0% { transform: translate(0, 0) scale(1) }
100% { transform: translate(20px, -20px) scale(1.15) }
}
.am-page-hero h2,
.page-content-single .entry-content .am-page-hero h2 {
position: relative;
font-size: 38px;
font-weight: 900;
margin: 0 0 18px;
padding-bottom: 0;
border: none;
border-bottom: none;
color: #fff;
letter-spacing: -.02em;
text-shadow: 0 2px 20px rgba(0,0,0,.3);
text-align: center;
}
.am-page-hero h2::after,
.page-content-single .entry-content .am-page-hero h2::after {
display: none;
}
.am-page-hero p,
.page-content-single .entry-content .am-page-hero p {
position: relative;
font-size: 18px;
opacity: .9;
max-width: 620px;
margin: 0 auto;
line-height: 1.75;
font-weight: 400;
color: #fff !important;
text-align: center;
}
.am-page-hero.has-hero-image {
background: #1a1a2e;
animation: none;
position: relative;
min-height: 280px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.am-hero-image {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 24px;
filter: grayscale(30%) brightness(0.85);
transition: filter 0.4s ease;
z-index: 0;
}
.am-page-hero.has-hero-image:hover .am-hero-image {
filter: grayscale(10%) brightness(0.8);
}
.am-page-hero.has-hero-image::before {
content: '';
position: absolute;
inset: 0;
width: 100%;
height: 100%;
background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.6) 100%);
border-radius: 24px;
z-index: 1;
animation: none;
}
.am-page-hero.has-hero-image::after {
display: none;
}
.am-page-hero.has-hero-image h2,
.am-page-hero.has-hero-image p,
.page-content-single .entry-content .am-page-hero.has-hero-image h2,
.page-content-single .entry-content .am-page-hero.has-hero-image p {
position: relative;
z-index: 2;
color: #fff;
text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.page-content-single .entry-content .am-latest-news .grid-card .card-title,
.page-content-single .entry-content .am-ln-grid .grid-card .card-title {
font-size: var(--block-card-title-size, 18px);
line-height: 1.5;
margin: 0 0 8px;
padding-left: 0;
letter-spacing: normal;
}
.page-content-single .entry-content .am-latest-news .grid-card .card-title::before,
.page-content-single .entry-content .am-latest-news .grid-card .card-title::after,
.page-content-single .entry-content .am-ln-hero-title::before,
.page-content-single .entry-content .am-ln-hero-title::after {
content: none;
}
.page-content-single .entry-content .am-ln-hero-title {
padding-left: 0;
}
.page-content-single .entry-content .am-latest-news .grid-card .card-excerpt {
font-size: 14px;
line-height: 21px;
margin: 0 0 8px;
}
.page-content-single .entry-content .am-latest-news .grid-card .card-link,
.page-content-single .entry-content .am-latest-news .grid-card .card-link:hover {
text-decoration: none;
color: inherit;
}
.page-content-single .entry-content .am-latest-news .card-grid {
margin: 0;
}
@media (max-width: 768px) {
.page-content-single .entry-content .am-latest-news .grid-card .card-title,
.page-content-single .entry-content .am-ln-grid .grid-card .card-title {
font-size: 16px;
line-height: 22px;
margin-bottom: 4px;
}
}
.am-latest-news {
margin: 8px 0 40px;
}
.am-ln-sub,
.page-content-single .entry-content p.am-ln-sub {
margin: -4px 0 20px;
max-width: 62ch;
color: var(--text-muted, #777);
font-size: 16px;
line-height: 1.55;
font-weight: 500;
}
.am-ln-head {
display: flex;
align-items: center;
gap: 14px;
flex-wrap: wrap;
margin-bottom: 20px;
padding: 12px 18px;
background: var(--bg-card, #fff);
border: 1px solid rgba(0, 0, 0, .06);
border-radius: 12px;
box-shadow: var(--shadow-card, 0 2px 12px rgba(0, 0, 0, .05));
}
.am-ln-live {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 12px;
font-weight: 800;
letter-spacing: .08em;
text-transform: uppercase;
color: var(--primary-color, #D93802);
}
.am-ln-dot {
width: 9px;
height: 9px;
border-radius: 50%;
background: var(--primary-color, #D93802);
animation: amLnPulse 1.6s ease-in-out infinite;
}
@keyframes amLnPulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(217, 56, 2, .45); }
50% { box-shadow: 0 0 0 6px rgba(217, 56, 2, 0); }
}
.am-ln-updated,
.am-ln-count {
font-size: 12px;
color: var(--text-muted, #777);
font-weight: 600;
}
.am-ln-count {
margin-left: auto;
}
.am-ln-hero {
display: grid;
grid-template-columns: 1.25fr 1fr;
background: var(--bg-card, #fff);
border-radius: var(--border-radius-lg, 16px);
overflow: hidden;
box-shadow: var(--shadow-card, 0 2px 20px rgba(0, 0, 0, .08));
margin-bottom: 26px;
transition: transform .25s ease, box-shadow .25s ease;
}
.am-ln-hero:hover {
transform: translateY(-3px);
box-shadow: rgba(51, 51, 51, .15) 0 -2px 30px 0;
}
.am-ln-hero-img {
position: relative;
display: block;
}
.am-ln-hero-img img {
width: 100%;
height: 100%;
min-height: 280px;
object-fit: cover;
display: block;
border-radius: 0;
}
.am-ln-hero-badge {
position: absolute;
top: 14px;
left: 14px;
display: inline-flex;
align-items: center;
gap: 6px;
background: var(--primary-color, #D93802);
color: #fff;
font-size: 11px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: .06em;
padding: 6px 12px;
border-radius: 30px;
box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
}
.am-ln-hero-body {
padding: 26px 28px;
display: flex;
flex-direction: column;
justify-content: center;
}
.am-ln-hero-meta {
display: flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
font-size: 12px;
color: var(--text-muted, #777);
margin-bottom: 12px;
}
.am-ln-hero-meta .meta-category {
font-size: 10px;
font-weight: 700;
color: #fff !important;
text-transform: uppercase;
letter-spacing: .5px;
background: var(--primary-color, #D93802);
padding: 3px 10px;
border-radius: 4px;
line-height: 1.4;
white-space: nowrap;
text-decoration: none;
}
.am-ln-hero-title,
.page-content-single .entry-content .am-ln-hero-title {
font-size: 26px;
line-height: 1.35;
margin: 0 0 12px;
padding: 0;
border: none;
}
.am-ln-hero-title a {
color: var(--text-main, #222);
text-decoration: none;
}
.am-ln-hero-title a:hover {
color: var(--primary-color, #D93802);
}
.am-ln-hero-excerpt,
.page-content-single .entry-content p.am-ln-hero-excerpt {
font-size: 15px;
line-height: 1.65;
color: var(--text-main, #444);
opacity: .85;
margin: 0 0 18px;
}
.am-ln-hero-cta {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 14px;
font-weight: 700;
color: var(--primary-color, #D93802) !important;
text-decoration: none;
transition: gap .2s ease;
}
.am-ln-hero-cta:hover {
gap: 13px;
}
.am-ln-more-wrap {
text-align: center;
margin: 26px 0 6px;
}
.am-ln-more {
position: relative;
display: inline-flex;
align-items: center;
gap: 10px;
background: var(--primary-color, #D93802);
color: #fff;
border: none;
cursor: pointer;
font-size: 15px;
font-weight: 700;
font-family: inherit;
padding: 13px 34px;
border-radius: 40px;
box-shadow: 0 6px 18px rgba(217, 56, 2, .3);
transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.am-ln-more:hover {
transform: translateY(-2px);
box-shadow: 0 10px 24px rgba(217, 56, 2, .4);
}
.am-ln-more:disabled {
opacity: .7;
cursor: wait;
transform: none;
}
.am-ln-more-spinner {
display: none;
width: 16px;
height: 16px;
border: 2px solid rgba(255, 255, 255, .4);
border-top-color: #fff;
border-radius: 50%;
animation: amLnSpin .7s linear infinite;
}
.am-ln-more.is-loading .am-ln-more-spinner {
display: inline-block;
}
@keyframes amLnSpin {
to { transform: rotate(360deg); }
}
body.dark-mode .am-ln-head,
body.dark-mode .am-ln-hero {
border-color: rgba(255, 255, 255, .08);
}
@media (max-width: 768px) {
.am-ln-hero {
grid-template-columns: 1fr;
}
.am-ln-hero-img img {
min-height: 0;
aspect-ratio: 16 / 9;
}
.am-ln-hero-body {
padding: 18px 16px 22px;
}
.am-ln-hero-title,
.page-content-single .entry-content .am-ln-hero-title {
font-size: 20px;
}
.am-ln-count {
display: none;
}
}
.am-cards-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 24px;
margin: 36px 0;
}
.am-card {
background: #fff;
border: 1px solid rgba(0,0,0,.06);
border-radius: 20px;
padding: 32px 28px;
text-align: center;
transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
box-shadow: 0 4px 20px rgba(0,0,0,.04);
position: relative;
overflow: hidden;
}
.am-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #FF6B35, #6366f1, #EC5725);
background-size: 200% 100%;
animation: amCardBorder 4s linear infinite;
opacity: 0;
transition: opacity .3s;
}
@keyframes amCardBorder {
0% { background-position: 0% 0% }
100% { background-position: 200% 0% }
}
.am-card:hover {
transform: translateY(-6px);
box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.am-card:hover::before {
opacity: 1;
}
.am-card-icon {
font-size: 42px;
margin-bottom: 18px;
display: block;
filter: drop-shadow(0 4px 8px rgba(0,0,0,.1));
}
.am-card h3,
.am-card h4 {
font-size: 20px;
font-weight: 800;
color: #1a1a2e;
margin: 0 0 12px;
letter-spacing: -.01em;
}
.am-card p {
font-size: 16px;
color: #6b7280;
line-height: 1.65;
margin: 0;
}
.am-card a {
display: inline-flex;
align-items: center;
gap: 6px;
margin-top: 16px;
color: #EC5725;
font-weight: 700;
font-size: 15px;
text-decoration: none;
transition: gap .2s, color .2s;
}
.am-card a:hover {
gap: 10px;
color: #D93802;
text-decoration: none;
}
.am-contact-info {
background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(249,250,251,.95));
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(0,0,0,.06);
border-radius: 20px;
padding: 36px;
margin: 36px 0;
box-shadow: 0 8px 32px rgba(0,0,0,.06);
}
.am-contact-info h3 {
font-size: 22px;
font-weight: 800;
margin: 0 0 24px;
color: #1a1a2e;
letter-spacing: -.01em;
}
.am-contact-row {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 18px;
font-size: 17px;
}
.am-contact-row-icon {
flex-shrink: 0;
width: 44px;
height: 44px;
background: linear-gradient(135deg, #FF6B35, #EC5725);
color: #fff;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
box-shadow: 0 4px 12px rgba(236,87,37,.25);
}
.am-contact-row strong {
display: block;
font-size: 12px;
text-transform: uppercase;
letter-spacing: .8px;
color: #9ca3af;
margin-bottom: 3px;
font-weight: 700;
}
.am-contact-row a {
color: #EC5725;
font-weight: 600;
text-decoration: none;
}
.am-contact-row a:hover {
text-decoration: underline;
}
.am-stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 20px;
margin: 36px 0;
}
.am-stat {
text-align: center;
padding: 32px 20px;
background: linear-gradient(145deg, rgba(255,107,53,.06), rgba(255,255,255,.9));
border: 1px solid rgba(236,87,37,.12);
border-radius: 20px;
transition: transform .3s, box-shadow .3s;
position: relative;
overflow: hidden;
}
.am-stat::after {
content: '';
position: absolute;
width: 80px;
height: 80px;
border-radius: 50%;
background: radial-gradient(circle, rgba(236,87,37,.08) 0%, transparent 70%);
top: -20px;
right: -20px;
pointer-events: none;
}
.am-stat:hover {
transform: translateY(-4px) scale(1.02);
box-shadow: 0 12px 36px rgba(236,87,37,.12);
}
.am-stat-number {
font-size: 40px;
font-weight: 900;
background: linear-gradient(135deg, #FF6B35, #D93802);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
display: block;
line-height: 1;
margin-bottom: 10px;
letter-spacing: -.02em;
}
.am-stat-label {
font-size: 12px;
color: #6b7280;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .8px;
}
.am-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 16px 36px;
border-radius: 14px;
font-weight: 800;
font-size: 15px;
text-decoration: none;
transition: all .3s cubic-bezier(.34,1.56,.64,1);
cursor: pointer;
border: none;
letter-spacing: -.01em;
position: relative;
overflow: hidden;
}
.am-btn-primary {
background: linear-gradient(135deg, #FF6B35, #D93802);
color: #fff;
box-shadow: 0 6px 24px rgba(217,56,2,.3);
}
.am-btn-primary::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
transition: left .5s;
}
.am-btn-primary:hover::after {
left: 100%;
}
.am-btn-primary:hover {
background: linear-gradient(135deg, #D93802, #B82E01);
transform: translateY(-3px) scale(1.02);
box-shadow: 0 12px 36px rgba(217,56,2,.4);
color: #fff;
text-decoration: none;
}
.am-btn-outline {
background: transparent;
color: #EC5725;
border: 2px solid #EC5725;
}
.am-btn-outline:hover {
background: #EC5725;
color: #fff;
text-decoration: none;
transform: translateY(-3px) scale(1.02);
box-shadow: 0 12px 36px rgba(236,87,37,.25);
}
.am-form {
margin: 36px 0;
}
.am-form-group {
margin-bottom: 22px;
}
.am-form-group label {
display: block;
font-size: 12px;
font-weight: 700;
color: #4b5563;
margin-bottom: 8px;
text-transform: uppercase;
letter-spacing: .5px;
}
.am-form-group input[type="text"],
.am-form-group input[type="email"],
.am-form-group input[type="url"],
.am-form-group textarea,
.am-form-group select {
width: 100%;
padding: 14px 20px;
border: 2px solid #e5e7eb;
border-radius: 14px;
font-size: 15px;
font-family: inherit;
background: #fafbfc;
transition: border-color .2s, box-shadow .2s, background .2s;
color: #1a1a2e;
}
.am-form-group input:focus,
.am-form-group textarea:focus,
.am-form-group select:focus {
border-color: #EC5725;
box-shadow: 0 0 0 4px rgba(236,87,37,.08);
outline: none;
background: #fff;
}
.am-form-group textarea {
min-height: 150px;
resize: vertical;
}
.am-form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 18px;
}
@media (max-width: 600px) {
.am-form-row {
grid-template-columns: 1fr;
}
}
.am-team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 24px;
margin: 36px 0;
}
.am-team-member {
text-align: center;
padding: 36px 24px;
background: #fff;
border: 1px solid rgba(0,0,0,.06);
border-radius: 20px;
box-shadow: 0 4px 20px rgba(0,0,0,.04);
transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.am-team-member:hover {
transform: translateY(-6px) rotateX(2deg);
box-shadow: 0 16px 48px rgba(0,0,0,.1);
}
.am-team-avatar {
width: 80px;
height: 80px;
border-radius: 50%;
background: linear-gradient(135deg, #FF6B35, #D93802);
color: #fff;
font-size: 32px;
font-weight: 800;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 18px;
box-shadow: 0 8px 24px rgba(236,87,37,.25);
transition: transform .3s;
}
.am-team-member:hover .am-team-avatar {
transform: scale(1.1) rotate(5deg);
}
.am-team-member h4 {
font-size: 17px;
font-weight: 800;
margin: 0 0 6px;
color: #1a1a2e;
}
.am-team-member p {
font-size: 13px;
color: #9ca3af;
margin: 0;
font-weight: 500;
}
.am-feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 24px;
margin: 36px 0;
}
.am-feature-card {
background: #fff;
border: 1px solid rgba(0,0,0,.06);
border-radius: 20px;
padding: 36px 30px;
box-shadow: 0 4px 20px rgba(0,0,0,.04);
transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
position: relative;
overflow: hidden;
}
.am-feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #FF6B35, #6366f1, #10b981, #EC5725);
background-size: 300% 100%;
animation: amFeatureBorder 6s linear infinite;
}
@keyframes amFeatureBorder {
0% { background-position: 0% 0% }
100% { background-position: 300% 0% }
}
.am-feature-card:hover {
transform: translateY(-6px);
box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.am-feature-card h3 {
font-size: 19px;
font-weight: 800;
margin: 0 0 14px;
color: #1a1a2e;
letter-spacing: -.01em;
}
.am-feature-card p {
font-size: 14.5px;
line-height: 1.7;
color: #6b7280;
margin: 0;
}
.am-info-box {
padding: 22px 28px;
border-radius: 16px;
margin: 28px 0;
font-size: 14.5px;
line-height: 1.7;
position: relative;
overflow: hidden;
}
.am-info-box::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: .04;
pointer-events: none;
background: repeating-linear-gradient(
45deg,
transparent,
transparent 10px,
currentColor 10px,
currentColor 10.5px
);
}
.am-info-box.info {
background: linear-gradient(135deg, #eff6ff, #f0f6ff);
border-left: 5px solid #3b82f6;
color: #1e3a5f;
box-shadow: 0 4px 16px rgba(59,130,246,.08);
}
.am-info-box.warning {
background: linear-gradient(135deg, #fffbeb, #fef3c7);
border-left: 5px solid #f59e0b;
color: #78350f;
box-shadow: 0 4px 16px rgba(245,158,11,.08);
}
.am-info-box.success {
background: linear-gradient(135deg, #ecfdf5, #d1fae5);
border-left: 5px solid #10b981;
color: #064e3b;
box-shadow: 0 4px 16px rgba(16,185,129,.08);
}
.am-info-box strong {
font-weight: 800;
}
.am-info-box a {
color: inherit;
font-weight: 700;
text-decoration: underline;
text-decoration-thickness: 2px;
text-underline-offset: 2px;
}
.am-info-box a:hover {
opacity: .8;
}
.am-divider {
display: flex;
align-items: center;
gap: 20px;
margin: 56px 0;
color: #d1d5db;
font-size: 14px;
font-weight: 600;
}
.am-divider::before,
.am-divider::after {
content: '';
flex: 1;
height: 2px;
background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
border-radius: 2px;
}
.entry-content ol ol {
list-style: lower-alpha;
margin-top: 10px;
}
.entry-content ol ol li::marker {
color: #9ca3af;
font-weight: 500;
}
.am-section {
margin-bottom: 48px;
}
.am-section-header {
display: flex;
align-items: center;
gap: 14px;
margin-bottom: 24px;
padding-bottom: 16px;
border-bottom: 2px solid #f3f4f6;
}
.am-section-icon {
width: 44px;
height: 44px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
flex-shrink: 0;
box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.am-section-icon.orange { background: linear-gradient(135deg, #fff5f2, #ffe8de); color: #EC5725; }
.am-section-icon.blue { background: linear-gradient(135deg, #eff6ff, #dbeafe); color: #3b82f6; }
.am-section-icon.green { background: linear-gradient(135deg, #ecfdf5, #d1fae5); color: #10b981; }
.page-content-single .entry-content > a {
color: #EC5725;
font-weight: 600;
text-decoration: none;
border-bottom: 1px solid rgba(236,87,37,.3);
transition: border-color .2s, color .2s;
}
.page-content-single .entry-content > a:hover {
color: #D93802;
border-bottom-color: #D93802;
}
@media (max-width: 768px) {
.page-content-single {
padding: 24px 16px 40px;
}
.page-content-single .entry-title {
font-size: 28px;
letter-spacing: -0.01em;
}
.page-content-single .entry-content {
font-size: 17px;
line-height: 30px;
}
.page-content-single .entry-content p {
font-size: 17px;
line-height: 30px;
}
.page-content-single .entry-content h2 {
font-size: 24px;
}
.page-content-single .entry-content h3 {
font-size: 20px;
}
.am-page-hero {
padding: 48px 24px;
border-radius: 18px;
}
.am-page-hero h2 {
font-size: 26px;
}
.am-page-hero p {
font-size: 16px;
}
.am-contact-info {
padding: 24px;
}
.am-stats-grid {
grid-template-columns: repeat(2, 1fr);
}
.am-btn {
padding: 14px 28px;
font-size: 14px;
}
.am-cards-grid {
grid-template-columns: 1fr;
}
.am-info-box {
padding: 18px 20px;
}
}
.cat-page-container {
max-width: 1200px;
padding: 0 16px;
}
.cat-breadcrumbs,
.article-breadcrumbs {
font-size: 12px;
font-weight: 600;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 0.5px;
padding: 20px 0 0;
margin-bottom: 20px;
}
.cat-breadcrumbs a,
.article-breadcrumbs a {
color: var(--text-muted);
text-decoration: none;
transition: color 0.2s;
}
.cat-breadcrumbs a:hover,
.article-breadcrumbs a:hover {
color: var(--primary-color);
}
.cat-breadcrumbs .sep,
.article-breadcrumbs .sep {
margin: 0 8px;
color: #ccc;
font-size: 14px;
}
.cat-breadcrumbs .current,
.article-breadcrumbs .current {
color: var(--text-main);
font-weight: 700;
}
.cat-header {
padding: 28px 0 24px;
border-bottom: 2px solid var(--border-light);
margin-bottom: 28px;
position: relative;
}
.cat-header::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 80px;
height: 2px;
background: var(--primary-color);
}
.cat-header-title {
font-size: 36px;
font-weight: 800;
color: var(--text-main);
margin: 0 0 8px;
line-height: 1.2;
letter-spacing: -0.5px;
}
.cat-header-description {
font-size: 16px;
line-height: 1.6;
color: var(--text-muted);
margin-bottom: 12px;
max-width: 600px;
}
.cat-header-description p {
margin: 0;
}
.cat-header-meta {
display: flex;
align-items: center;
gap: 16px;
}
.cat-post-count {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 13px;
font-weight: 600;
color: var(--primary-color);
background: rgba(217, 56, 2, 0.08);
padding: 5px 14px;
border-radius: 20px;
}
.cat-post-count i {
font-size: 12px;
}
.cat-hero {
background: var(--bg-card);
border-radius: var(--border-radius-lg);
box-shadow: var(--shadow-card);
overflow: hidden;
margin-bottom: 32px;
display: grid;
grid-template-columns: 1fr;
}
@media (min-width: 768px) {
.cat-hero {
grid-template-columns: 1.2fr 1fr;
}
}
.cat-hero-image {
display: block;
position: relative;
overflow: hidden;
}
.cat-hero-image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
aspect-ratio: 16 / 10;
transition: transform 0.5s ease;
}
.cat-hero:hover .cat-hero-image img {
transform: scale(1.04);
}
.cat-hero-badge {
position: absolute;
top: 16px;
left: 16px;
background: var(--primary-color);
color: #fff;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
padding: 5px 14px;
border-radius: 20px;
box-shadow: 0 2px 8px rgba(217, 56, 2, 0.35);
}
.cat-hero-body {
padding: 28px 28px 24px;
display: flex;
flex-direction: column;
justify-content: center;
}
.cat-hero-meta {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 14px;
font-size: 12px;
color: var(--text-muted);
flex-wrap: wrap;
}
.cat-hero-category {
font-weight: 700;
color: var(--primary-color);
text-transform: uppercase;
letter-spacing: 0.5px;
font-size: 11px;
}
.cat-hero-read {
display: inline-flex;
align-items: center;
gap: 4px;
}
.cat-hero-title {
font-size: 26px;
font-weight: 700;
line-height: 1.3;
margin: 0 0 12px;
color: var(--text-main);
}
.cat-hero-title a {
color: inherit;
text-decoration: none;
transition: color 0.2s;
}
.cat-hero-title a:hover {
color: var(--primary-color);
}
.cat-hero-excerpt {
font-size: 15px;
line-height: 1.6;
color: var(--text-muted);
margin: 0 0 16px;
}
.cat-hero-author {
display: flex;
align-items: center;
gap: 10px;
font-size: 13px;
color: var(--text-muted);
}
.cat-hero-avatar {
width: 36px;
height: 36px;
border-radius: 50%;
object-fit: cover;
border: 2px solid var(--primary-color);
}
.cat-hero-author strong {
color: var(--text-main);
}
.cat-trending {
margin-bottom: 36px;
}
.cat-trending-header {
margin-bottom: 16px;
}
.cat-trending-header h3 {
font-size: 18px;
font-weight: 700;
color: var(--text-main);
margin: 0;
display: flex;
align-items: center;
gap: 8px;
}
.cat-trending-header h3 i {
color: #F59E0B;
font-size: 16px;
}
.cat-trending-strip {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
}
@media (max-width: 991px) {
.cat-trending-strip {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 480px) {
.cat-trending-strip {
grid-template-columns: 1fr;
}
}
.cat-trending-card {
background: var(--bg-card);
border-radius: 16px;
box-shadow: var(--shadow-card);
display: flex;
align-items: center;
gap: 14px;
padding: 14px;
text-decoration: none;
transition: transform 0.25s, box-shadow 0.25s;
position: relative;
overflow: hidden;
}
.cat-trending-card:hover {
transform: translateY(-3px);
box-shadow: 0 -2px 25px rgba(51, 51, 51, 0.14);
}
.cat-trending-number {
font-size: 28px;
font-weight: 800;
color: rgba(217, 56, 2, 0.12);
line-height: 1;
flex-shrink: 0;
width: 32px;
text-align: center;
font-family: var(--font-stack);
}
.cat-trending-card:hover .cat-trending-number {
color: rgba(217, 56, 2, 0.3);
}
.cat-trending-thumb {
width: 96px;
aspect-ratio: 16 / 9;
border-radius: 10px;
overflow: hidden;
flex-shrink: 0;
}
.cat-trending-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.cat-trending-text h4 {
font-size: 14px;
font-weight: 700;
line-height: 1.35;
color: var(--text-main);
margin: 0 0 4px;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.cat-trending-date {
font-size: 11px;
color: var(--text-muted);
}
.cat-main-layout {
display: grid;
grid-template-columns: 1fr;
gap: 36px;
margin-bottom: 40px;
}
@media (min-width: 992px) {
.cat-main-layout {
grid-template-columns: 1fr 320px;
}
}
.cat-grid-header {
margin-bottom: 20px;
padding-bottom: 14px;
border-bottom: 2px solid var(--border-light);
}
.cat-grid-header h3 {
font-size: 18px;
font-weight: 700;
color: var(--text-main);
margin: 0;
}
.cat-grid {
display: grid;
grid-template-columns: 1fr;
gap: 24px;
}
@media (min-width: 600px) {
.cat-grid {
grid-template-columns: repeat(2, 1fr);
}
}
.cat-grid > .r34c8-lazy-ad,
.cat-grid > .r34c8-ic-ad,
.cat-grid > .ad-hide-mobile,
.cat-grid > .r34c8-ad-fw,
.cat-grid > [id^="_mgwidget"],
.cat-grid > [data-type="_mgwidget"],
.cat-grid > ins.adsbygoogle {
grid-column: 1 / -1;
width: 100%;
}
.cat-grid-card {
background: var(--bg-card);
border-radius: var(--border-radius);
box-shadow: var(--shadow-card);
overflow: hidden;
display: flex;
flex-direction: column;
transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cat-grid-card:hover {
transform: translateY(-4px);
box-shadow: 0 -2px 30px rgba(51, 51, 51, 0.15);
}
.cat-gc-image {
display: block;
overflow: hidden;
}
.cat-gc-image img {
width: 100%;
display: block;
object-fit: cover;
aspect-ratio: 16 / 9;
transition: transform 0.4s ease;
}
.cat-grid-card:hover .cat-gc-image img {
transform: scale(1.05);
}
.cat-gc-body {
padding: 16px 20px 18px;
flex-grow: 1;
display: flex;
flex-direction: column;
}
.cat-gc-meta {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
}
.cat-gc-category {
font-size: 10px;
font-weight: 700;
color: var(--primary-color);
text-transform: uppercase;
letter-spacing: 0.5px;
}
.cat-gc-read {
font-size: 11px;
color: var(--text-muted);
display: inline-flex;
align-items: center;
gap: 4px;
}
.cat-gc-title {
font-size: 17px;
font-weight: 700;
line-height: 1.35;
color: var(--text-main);
margin: 0 0 8px;
}
.cat-gc-title a {
color: inherit;
text-decoration: none;
transition: color 0.2s;
}
.cat-gc-title a:hover {
color: var(--primary-color);
}
.cat-gc-excerpt {
font-size: 13px;
line-height: 1.5;
color: var(--text-muted);
margin: 0 0 12px;
flex-grow: 1;
}
.cat-gc-footer {
font-size: 12px;
color: #aaa;
margin-top: auto;
display: flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
}
.cat-gc-author,
.cat-gc-comments {
display: inline-flex;
align-items: center;
gap: 4px;
font-size: 12px;
color: var(--text-muted);
}
.cat-gc-author i,
.cat-gc-comments i {
font-size: 10px;
}
.cat-sidebar {
display: flex;
flex-direction: column;
gap: 24px;
}
@media (min-width: 992px) {
.cat-sidebar {
position: sticky;
top: 80px;
align-self: start;
}
}
.cat-sidebar-block {
background: var(--bg-card);
border-radius: var(--border-radius);
box-shadow: var(--shadow-card);
padding: 20px;
}
.cat-sidebar-title {
font-size: 15px;
font-weight: 700;
color: var(--text-main);
margin: 0 0 16px;
display: flex;
align-items: center;
gap: 8px;
padding-bottom: 12px;
border-bottom: 2px solid var(--border-light);
}
.cat-sidebar-title i {
color: var(--primary-color);
font-size: 14px;
}
.cat-sidebar-list {
display: flex;
flex-direction: column;
}
.cat-sidebar-item {
display: flex;
align-items: flex-start;
gap: 12px;
padding: 12px 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
text-decoration: none;
transition: background 0.2s;
}
.cat-sidebar-item:last-child {
border-bottom: none;
padding-bottom: 0;
}
.cat-sidebar-item:first-child {
padding-top: 0;
}
.cat-sidebar-item:hover {
background: rgba(217, 56, 2, 0.02);
border-radius: 8px;
}
.cat-si-number {
width: 28px;
height: 28px;
border-radius: 50%;
background: rgba(217, 56, 2, 0.08);
color: var(--primary-color);
font-size: 12px;
font-weight: 800;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-top: 2px;
}
.cat-si-text h5 {
font-size: 14px;
font-weight: 600;
line-height: 1.35;
color: var(--text-main);
margin: 0 0 3px;
transition: color 0.2s;
}
.cat-sidebar-item:hover .cat-si-text h5 {
color: var(--primary-color);
}
.cat-si-date {
font-size: 11px;
color: var(--text-muted);
}
.cat-sidebar-categories {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.cat-sidebar-pill {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 7px 14px;
background: #f5f5f5;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
color: var(--text-main);
text-decoration: none;
transition: all 0.2s;
}
.cat-sidebar-pill:hover {
background: var(--primary-color);
color: #fff;
}
.cat-pill-count {
font-size: 11px;
color: var(--text-muted);
font-weight: 700;
}
.cat-sidebar-pill:hover .cat-pill-count {
color: rgba(255, 255, 255, 0.8);
}
.cat-sidebar-cta {
background: linear-gradient(135deg, #FFF5F2 0%, #FEE2D9 100%);
text-align: center;
padding: 28px 24px;
}
.cat-cta-icon {
width: 52px;
height: 52px;
border-radius: 50%;
background: var(--primary-color);
color: #fff;
margin: 0 auto 14px;
display: flex;
align-items: center;
justify-content: center;
font-size: 22px;
box-shadow: 0 4px 15px rgba(217, 56, 2, 0.3);
}
.cat-sidebar-cta h4 {
font-size: 18px;
font-weight: 700;
color: var(--text-main);
margin: 0 0 8px;
}
.cat-sidebar-cta p {
font-size: 13px;
line-height: 1.5;
color: var(--text-muted);
margin: 0 0 16px;
}
.cat-cta-btn {
display: inline-block;
padding: 10px 28px;
background: var(--primary-color);
color: #fff;
font-size: 14px;
font-weight: 700;
border-radius: 30px;
text-decoration: none;
transition: all 0.25s;
box-shadow: 0 3px 12px rgba(217, 56, 2, 0.3);
}
.cat-cta-btn:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(217, 56, 2, 0.4);
color: #fff;
}
.cat-dontmiss {
margin-bottom: 40px;
background: var(--bg-peach);
border-radius: var(--border-radius-lg);
padding: 30px;
}
.cat-dontmiss-header {
margin-bottom: 20px;
}
.cat-dontmiss-header h3 {
font-size: 18px;
font-weight: 700;
color: var(--text-main);
margin: 0;
display: flex;
align-items: center;
gap: 8px;
}
.cat-dontmiss-header h3 i {
color: var(--primary-color);
}
.cat-dontmiss-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 16px;
}
@media (max-width: 991px) {
.cat-dontmiss-grid {
grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 600px) {
.cat-dontmiss-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 400px) {
.cat-dontmiss-grid {
grid-template-columns: 1fr;
}
}
.cat-dm-card {
display: flex;
flex-direction: column;
text-decoration: none;
background: var(--bg-card);
border-radius: 16px;
overflow: hidden;
box-shadow: var(--shadow-card);
transition: transform 0.25s, box-shadow 0.25s;
}
.cat-dm-card:hover {
transform: translateY(-3px);
box-shadow: 0 -2px 25px rgba(51, 51, 51, 0.14);
}
.cat-dm-thumb {
aspect-ratio: 4 / 3;
overflow: hidden;
}
.cat-dm-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.4s;
}
.cat-dm-card:hover .cat-dm-thumb img {
transform: scale(1.06);
}
.cat-dm-text {
padding: 12px 14px;
}
.cat-dm-text h4 {
font-size: 14px;
font-weight: 700;
line-height: 1.35;
color: var(--text-main);
margin: 0 0 4px;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.cat-dm-date {
font-size: 11px;
color: var(--text-muted);
}
.cat-pagination {
margin-top: 36px;
padding-top: 24px;
border-top: 1px solid var(--border-light);
}
.cat-pagination .nav-links {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
flex-wrap: wrap;
}
.cat-pagination .page-numbers {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 42px;
height: 42px;
padding: 0 12px;
border-radius: 12px;
font-size: 14px;
font-weight: 600;
color: var(--text-main);
text-decoration: none;
background: #f5f5f5;
transition: all 0.2s;
gap: 6px;
}
.cat-pagination .page-numbers:hover {
background: var(--primary-color);
color: #fff;
}
.cat-pagination .page-numbers.current {
background: var(--primary-color);
color: #fff;
box-shadow: 0 3px 10px rgba(217, 56, 2, 0.3);
}
.cat-pagination .page-numbers.dots {
background: transparent;
color: var(--text-muted);
pointer-events: none;
}
.cat-pagination .prev.page-numbers,
.cat-pagination .next.page-numbers {
background: var(--text-main);
color: #fff;
padding: 0 20px;
gap: 8px;
}
.cat-pagination .prev.page-numbers:hover,
.cat-pagination .next.page-numbers:hover {
background: var(--primary-color);
}
.cat-empty {
text-align: center;
padding: 80px 24px;
}
.cat-empty-icon {
font-size: 56px;
color: #ddd;
margin-bottom: 20px;
}
.cat-empty h2 {
font-size: 24px;
font-weight: 700;
color: var(--text-main);
margin: 0 0 12px;
}
.cat-empty p {
font-size: 16px;
color: var(--text-muted);
margin: 0 0 24px;
}
.cat-empty-btn {
display: inline-block;
padding: 12px 32px;
background: var(--primary-color);
color: #fff;
font-size: 14px;
font-weight: 700;
border-radius: 30px;
text-decoration: none;
transition: all 0.25s;
box-shadow: 0 4px 14px rgba(217, 56, 2, 0.3);
}
.cat-empty-btn:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(217, 56, 2, 0.4);
color: #fff;
}
@media (max-width: 768px) {
.cat-header-title {
font-size: 28px;
}
.cat-hero {
grid-template-columns: 1fr;
}
.cat-hero-image img {
aspect-ratio: 16 / 9;
}
.cat-hero-title {
font-size: 22px;
}
.cat-hero-body {
padding: 20px;
}
.cat-trending-strip {
grid-template-columns: 1fr 1fr;
}
.cat-main-layout {
grid-template-columns: 1fr;
}
.cat-dontmiss-grid {
grid-template-columns: repeat(2, 1fr);
}
.cat-dontmiss {
padding: 20px;
}
.cat-page-container {
padding: 0 10px;
}
}
@media (max-width: 480px) {
.cat-header-title {
font-size: 24px;
}
.cat-trending-strip {
grid-template-columns: 1fr;
}
.cat-grid {
grid-template-columns: 1fr;
}
.cat-dontmiss-grid {
grid-template-columns: 1fr;
}
}
.cat-header--accent {
background: var(--primary-color);
padding: 28px 24px 24px;
border-radius: var(--border-radius);
border-bottom: none;
margin-bottom: 28px;
}
.cat-header--accent::after {
display: none;
}
.cat-header--accent .cat-header-title {
color: #fff;
}
.cat-header--accent .cat-header-description,
.cat-header--accent .cat-header-description p {
color: rgba(255, 255, 255, 0.85);
}
.cat-header--accent .cat-post-count {
background: rgba(255, 255, 255, 0.2);
color: #fff;
}
.cat-header--dark {
background: #1a1a1a;
padding: 28px 24px 24px;
border-radius: var(--border-radius);
border-bottom: none;
margin-bottom: 28px;
}
.cat-header--dark::after {
display: none;
}
.cat-header--dark .cat-header-title {
color: #fff;
}
.cat-header--dark .cat-header-description,
.cat-header--dark .cat-header-description p {
color: rgba(255, 255, 255, 0.7);
}
.cat-header--dark .cat-post-count {
background: rgba(217, 56, 2, 0.2);
color: var(--primary-color);
}
@media (min-width: 600px) {
.cat-grid--3col {
grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 768px) {
.cat-grid--3col {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 480px) {
.cat-grid--3col {
grid-template-columns: 1fr;
}
}
.cat-main-layout--full {
grid-template-columns: 1fr !important;
}
@media (min-width: 600px) {
.cat-main-layout--full .cat-grid {
grid-template-columns: repeat(3, 1fr);
}
}
@media (min-width: 480px) {
.cat-cards--horizontal .cat-grid-card {
flex-direction: row;
align-items: stretch;
}
.cat-cards--horizontal .cat-gc-image {
width: 42%;
flex-shrink: 0;
}
.cat-cards--horizontal .cat-gc-image img {
height: 100%;
aspect-ratio: auto;
min-height: 150px;
}
}
.cat-cards--compact .cat-gc-body {
padding: 12px 16px 14px;
}
.cat-cards--compact .cat-gc-title {
font-size: 15px;
margin-bottom: 4px;
}
@media (min-width: 600px) {
.cat-cards--magazine .cat-grid {
grid-template-columns: repeat(3, 1fr) !important;
}
.cat-cards--magazine .cat-grid-card:first-child {
grid-column: 1 / -1;
flex-direction: row;
align-items: stretch;
}
.cat-cards--magazine .cat-grid-card:first-child .cat-gc-image {
width: 55%;
flex-shrink: 0;
}
.cat-cards--magazine .cat-grid-card:first-child .cat-gc-image img {
height: 100%;
aspect-ratio: auto;
min-height: 260px;
}
.cat-cards--magazine .cat-grid-card:first-child .cat-gc-title {
font-size: 22px;
}
.cat-cards--magazine .cat-grid-card:first-child .cat-gc-body {
padding: 24px 28px;
justify-content: center;
}
}
@media (max-width: 599px) {
.cat-cards--horizontal .cat-grid-card,
.cat-cards--magazine .cat-grid-card:first-child {
flex-direction: column;
}
.cat-cards--horizontal .cat-gc-image,
.cat-cards--magazine .cat-grid-card:first-child .cat-gc-image {
width: 100%;
}
.cat-cards--magazine .cat-grid-card:first-child .cat-gc-image img {
aspect-ratio: 16/9;
min-height: 0;
height: auto;
}
}
.cat-ratio--43 .cat-gc-image img  { aspect-ratio: 4/3; }
.cat-ratio--32 .cat-gc-image img  { aspect-ratio: 3/2; }
.cat-ratio--11 .cat-gc-image img  { aspect-ratio: 1/1; }
.cat-cards--horizontal.cat-ratio--43 .cat-gc-image img,
.cat-cards--horizontal.cat-ratio--32 .cat-gc-image img,
.cat-cards--horizontal.cat-ratio--11 .cat-gc-image img { aspect-ratio: auto; }
.cat-radius--sharp .cat-grid-card,
.cat-radius--sharp .cat-gc-image img  { border-radius: 0; }
.cat-radius--rounded .cat-grid-card   { border-radius: 24px; }
.cat-shadow--none   .cat-grid-card { box-shadow: none; border: 1px solid var(--border-light); }
.cat-shadow--strong .cat-grid-card { box-shadow: 0 6px 28px rgba(0,0,0,0.16); }
.cat-hover--none  .cat-grid-card:hover { transform: none; box-shadow: var(--shadow-card); }
.cat-hover--none.cat-shadow--none .cat-grid-card:hover { box-shadow: none; }
.cat-hover--scale .cat-grid-card:hover { transform: scale(1.025); box-shadow: 0 8px 32px rgba(0,0,0,0.14); }
.cat-hover--glow  .cat-grid-card:hover { transform: translateY(-3px); box-shadow: 0 0 0 2px var(--primary-color), 0 8px 24px rgba(0,0,0,0.1); }
.cat-hero--compact .cat-hero .cat-hero-image img { min-height: 180px; }
.cat-hero--tall    .cat-hero .cat-hero-image img { min-height: 440px; }
@media (min-width: 768px) {
.cat-hero--compact .cat-hero .cat-hero-image img { min-height: 220px; }
.cat-hero--tall    .cat-hero .cat-hero-image img { min-height: 480px; }
}
.cat-hero--stacked .cat-hero {
grid-template-columns: 1fr !important;
}
.cat-hero--stacked .cat-hero .cat-hero-image img {
aspect-ratio: 21/9;
max-height: 400px;
}
.cat-hero--stacked .cat-hero .cat-hero-body {
padding: 24px 28px;
}
.cat-hero--overlay .cat-hero {
position: relative;
grid-template-columns: 1fr !important;
min-height: 380px;
overflow: hidden;
}
.cat-hero--overlay .cat-hero .cat-hero-image {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
}
.cat-hero--overlay .cat-hero .cat-hero-image img {
width: 100%;
height: 100%;
object-fit: cover;
aspect-ratio: auto;
}
.cat-hero--overlay .cat-hero .cat-hero-body {
position: relative;
z-index: 1;
min-height: 380px;
background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 55%, transparent 100%);
padding: 200px 32px 36px;
justify-content: flex-end;
}
.cat-hero--overlay .cat-hero .cat-hero-title a,
.cat-hero--overlay .cat-hero .cat-hero-excerpt,
.cat-hero--overlay .cat-hero .cat-hero-author strong { color: #fff; }
.cat-hero--overlay .cat-hero .cat-hero-author,
.cat-hero--overlay .cat-hero .cat-hero-meta time { color: rgba(255,255,255,0.75); }
.cat-hero--overlay .cat-hero .cat-hero-read,
.cat-hero--overlay .cat-hero .cat-hero-category    { color: rgba(255,255,255,0.8); }
.cat-hero--overlay .cat-hero .cat-hero-avatar      { border-color: rgba(255,255,255,0.5); }
.layout-hero-wrap {
display: grid;
grid-template-columns: 1.6fr 1fr;
gap: 24px;
align-items: start;
}
.block-hero-main {
background: #fff;
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: 0 2px 12px rgba(0,0,0,.06);
transition: box-shadow .3s, transform .3s;
}
.block-hero-main:hover {
box-shadow: 0 6px 24px rgba(0,0,0,.1);
transform: translateY(-3px);
}
.block-hero-image {
display: block;
overflow: hidden;
}
.block-hero-image img {
width: 100%;
height: 340px;
object-fit: cover;
transition: transform .4s;
}
.block-hero-main:hover .block-hero-image img {
transform: scale(1.04);
}
.block-hero-body {
padding: 20px 22px 22px;
}
.block-hero-cat {
display: inline-block;
background: var(--primary-color);
color: #fff;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .04em;
padding: 3px 10px;
border-radius: 4px;
margin-bottom: 10px;
}
.block-hero-title {
font-size: 1.35rem;
font-weight: 800;
line-height: 1.3;
margin: 0 0 8px;
}
.block-hero-title a {
color: #111;
text-decoration: none;
transition: color .2s;
}
.block-hero-title a:hover {
color: var(--primary-color);
}
.block-hero-excerpt {
color: #666;
font-size: .92rem;
line-height: 1.55;
margin: 0 0 12px;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.block-hero-meta time {
color: #999;
font-size: .82rem;
}
.block-hero-sidebar {
display: flex;
flex-direction: column;
gap: 0;
}
.block-hero-side-card {
display: flex;
gap: 14px;
align-items: center;
padding: 14px 0;
border-bottom: 1px solid #f0f0f0;
text-decoration: none;
transition: background .2s, padding-left .2s;
}
.block-hero-side-card:first-child {
padding-top: 0;
}
.block-hero-side-card:last-child {
border-bottom: none;
}
.block-hero-side-card:hover {
background: #fafafa;
padding-left: 6px;
border-radius: 8px;
}
.bhsc-thumb {
width: 100px;
aspect-ratio: 16 / 9;
border-radius: 8px;
overflow: hidden;
flex-shrink: 0;
}
.bhsc-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
}
.bhsc-text h4 {
font-size: .9rem;
font-weight: 700;
color: #222;
margin: 0 0 4px;
line-height: 1.35;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
transition: color .2s;
}
.block-hero-side-card:hover .bhsc-text h4 {
color: var(--primary-color);
}
.bhsc-date {
color: #999;
font-size: .78rem;
}
@media (max-width: 768px) {
.layout-hero-wrap {
grid-template-columns: 1fr;
}
.block-hero-image img {
height: 220px;
}
.block-hero-sidebar {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
}
.block-hero-side-card {
border-bottom: none;
background: #fafafa;
border-radius: 10px;
padding: 10px;
}
.bhsc-thumb {
width: 80px;
aspect-ratio: 16 / 9;
}
}
@media (max-width: 480px) {
.block-hero-sidebar {
grid-template-columns: 1fr;
}
.block-hero-title {
font-size: 1.15rem;
}
}
.layout-full-wrap {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 20px;
}
@media (min-width: 768px) {
.layout-full-wrap {
grid-template-columns: repeat(3, 1fr);
}
}
.full-card {
position: relative;
display: block;
border-radius: var(--border-radius);
overflow: hidden;
aspect-ratio: 16 / 10;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.full-card::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0) 100%);
pointer-events: none;
z-index: 1;
}
.full-card-image {
width: 100%;
height: 100%;
}
.full-card-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}
.full-card:hover .full-card-image img {
transform: scale(1.05);
}
.full-card-title {
position: absolute;
bottom: 20px;
left: 20px;
right: 20px;
z-index: 2;
color: #fff;
margin: 0;
font-size: 1.15rem;
font-weight: 700;
line-height: 1.35;
text-shadow: 0 2px 4px rgba(0,0,0,0.5);
display: -webkit-box;
-webkit-line-clamp: 3;
line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
transition: color 0.2s;
}
.full-card:hover .full-card-title {
color: var(--primary-color);
}
.layout-featured-wrap {
display: flex;
flex-wrap: wrap;
gap: 24px;
}
.featured-main {
flex: 1 1 55%;
min-width: 300px;
}
.featured-main-image {
display: block;
border-radius: var(--border-radius);
overflow: hidden;
margin-bottom: 12px;
}
.featured-main-image img {
width: 100%;
height: 320px;
object-fit: cover;
transition: transform 0.4s;
}
.featured-main:hover .featured-main-image img {
transform: scale(1.04);
}
.featured-main-title {
margin: 0;
font-size: 1.4rem;
font-weight: 800;
line-height: 1.3;
}
.featured-main-title a {
color: #111;
text-decoration: none;
}
.featured-main-title a:hover {
color: var(--primary-color);
}
.featured-headlines-container {
flex: 1 1 35%;
min-width: 280px;
display: flex;
flex-direction: column;
justify-content: flex-start;
}
.featured-headline {
font-size: 1.1rem;
font-weight: 700;
color: #222;
text-decoration: none;
padding: 14px 0;
border-bottom: 1px solid #eaeaea;
transition: color 0.2s, padding-left 0.2s;
line-height: 1.4;
}
.featured-headline:hover {
color: var(--primary-color);
padding-left: 8px;
border-color: var(--primary-color);
}
.layout-list-wrap {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 16px;
}
@media (min-width: 900px) {
.layout-list-wrap {
grid-template-columns: repeat(3, 1fr);
}
}
.list-item {
display: flex;
align-items: center;
gap: 14px;
padding: 12px;
background: #fff;
border-radius: 10px;
border: 1px solid #f0f0f0;
text-decoration: none;
transition: transform 0.2s, box-shadow 0.2s;
}
.list-item:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
border-color: #e4e4e4;
}
.list-item-thumb {
width: 70px;
height: 70px;
border-radius: 8px;
overflow: hidden;
flex-shrink: 0;
}
.list-item-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
}
.list-item-title {
font-size: 0.95rem;
font-weight: 700;
color: #222;
line-height: 1.35;
display: -webkit-box;
-webkit-line-clamp: 3;
line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
transition: color 0.2s;
}
.list-item:hover .list-item-title {
color: var(--primary-color);
}
.share-btn-whatsapp { color: #25D366; }
.share-btn-telegram { color: #0088cc; }
.share-btn-pinterest { color: #E60023; }
.r34c8-toc {
background: #f8f9fa;
border: 1px solid #e0e0e0;
border-left: 4px solid var(--primary-color, #D93802);
border-radius: 8px;
padding: 20px 24px;
margin: 24px 0 32px;
font-size: 15px;
}
.r34c8-toc-title {
font-weight: 800;
font-size: 16px;
margin-bottom: 12px;
color: #222;
display: flex;
align-items: center;
gap: 8px;
}
.r34c8-toc ol {
list-style: decimal;
margin: 0;
padding-left: 20px;
}
.r34c8-toc li {
margin-bottom: 6px;
line-height: 1.5;
}
.r34c8-toc a {
color: #444;
text-decoration: none;
transition: color 0.2s;
}
.r34c8-toc a:hover {
color: var(--primary-color, #D93802);
}
.r34c8-toc ol ol {
margin-top: 4px;
padding-left: 18px;
list-style: lower-alpha;
}
@media print {
.site-header,
.category-nav-wrapper,
.sidebar,
.site-footer,
.back-to-top-btn,
.ad-slot,
.ad-slot-sticky-bottom,
.share-buttons,
.post-navigation,
.related-articles,
.comments-area,
.search-overlay,
.mobile-menu,
.mobile-menu-backdrop,
#reading-progress-container,
.r34c8-cr-overlay,
.r34c8-toc,
.floating-share-bar,
.author-bio-box,
.am-lightbox,
.dark-mode-toggle { display: none !important; }
body, .main-content, .container, .entry-content {
color: #000 !important;
background: #fff !important;
font-size: 12pt !important;
line-height: 1.6 !important;
}
.single-layout { grid-template-columns: 1fr !important; max-width: 100% !important; }
.entry-content img { max-width: 100% !important; page-break-inside: avoid; }
a { color: #000 !important; text-decoration: underline !important; }
a[href]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #666; }
a[href^="#"]::after, a[href^="javascript"]::after { content: ""; }
.article-content::after {
content: "Printed from: " attr(data-url);
display: block;
margin-top: 24pt;
font-size: 9pt;
color: #666;
border-top: 1px solid #ccc;
padding-top: 8pt;
}
}
body.dark-mode {
--bg-main: #080808;
--bg-card: #141414;
--bg-surface: #1f1f1f;
--text-main: #f9fafb;
--text-muted: #9ca3af;
--border-light: #2a2a2a;
--shadow-card: 0 8px 30px rgba(0,0,0,0.8);
}
body.dark-mode { background: var(--bg-main) !important; color: var(--text-main); }
html.dark-mode { background: var(--bg-main); color: var(--text-main); }
body.dark-mode .main-content,
body.dark-mode .single-post .main-content { background: var(--bg-main); }
body.dark-mode .container { background: transparent; }
body.dark-mode .single-layout { background: transparent; }
body.dark-mode .category-nav-wrapper {  }
body.dark-mode .article-content { background: #0a0a0a; color: var(--text-main); border-color: var(--border-light); box-shadow: var(--shadow-card); }
body.dark-mode .entry-content { color: var(--text-main); }
body.dark-mode .entry-content a { color: #60a5fa; text-decoration-color: rgba(96, 165, 250, 0.4); }
body.dark-mode .entry-content a:hover { text-decoration-color: #60a5fa; }
body.dark-mode .entry-content blockquote {
border-left-color: var(--primary-color, #fbbf24);
background: var(--bg-surface);
color: var(--text-main);
}
body.dark-mode .entry-content pre,
body.dark-mode .entry-content code { background: #000; color: #e5e7eb; border: 1px solid var(--border-light); }
body.dark-mode .article-title-single { color: #ffffff; }
body.dark-mode .article-author-row { border-color: var(--border-light); background: var(--bg-card); }
body.dark-mode .author-name, body.dark-mode .author-link { color: #ffffff; }
body.dark-mode .article-date-time { color: var(--text-muted); }
body.dark-mode .article-breadcrumbs, body.dark-mode .article-breadcrumbs a { color: var(--text-muted) !important; }
body.dark-mode .site-header { background: #000000 !important; border-bottom: 1px solid var(--border-light); }
body.dark-mode .site-footer { background: #000000 !important; border-top: 1px solid var(--border-light); }
body.dark-mode .sidebar { background: transparent; box-shadow: none; border: none; }
body.dark-mode .sidebar-widget { background: var(--bg-card); border-color: var(--border-light); box-shadow: var(--shadow-card); }
body.dark-mode .sidebar-widget-title,
body.dark-mode .sidebar .widget-title { color: #ffffff; border-bottom-color: var(--border-light); }
body.dark-mode .sidebar a { color: var(--text-main); }
body.dark-mode .popular-post-info .popular-post-title { color: #ffffff; }
body.dark-mode .card,
body.dark-mode .content-grid .card,
body.dark-mode .list-item { background: var(--bg-card); border-color: var(--border-light); box-shadow: var(--shadow-card); }
body.dark-mode .card-title, body.dark-mode .card-title a,
body.dark-mode .list-item-title, body.dark-mode .featured-headline { color: #ffffff; }
body.dark-mode .list-item:hover .list-item-title, body.dark-mode .featured-headline:hover { color: var(--primary-color); }
body.dark-mode .card-date, body.dark-mode .card-meta { color: var(--text-muted); }
body.dark-mode .hero-main,
body.dark-mode .hero-sidebar .card,
body.dark-mode .block-hero-main,
body.dark-mode .block-hero-side-card { background: var(--bg-card); border-color: var(--border-light); }
body.dark-mode .hero-sidebar .card-title a,
body.dark-mode .block-hero-title a,
body.dark-mode .bhsc-text h4 { color: #ffffff; }
body.dark-mode .featured-main-title a { color: #ffffff; }
body.dark-mode .bhsc-date { color: var(--text-muted); }
body.dark-mode .category-section { border-color: var(--border-light); }
body.dark-mode .category-section-header h2 a { color: #ffffff; }
body.dark-mode .cat-pagination a { color: var(--text-muted); border-color: var(--border-light); background: var(--bg-card); }
body.dark-mode .cat-pagination a:hover { background: var(--bg-surface); color: #fff; }
body.dark-mode .related-articles { background: var(--bg-card); border-color: var(--border-light); }
body.dark-mode .related-title a { color: #ffffff; }
body.dark-mode .related-date { color: var(--text-muted); }
body.dark-mode .post-navigation { border-color: var(--border-light); background: var(--bg-card); }
body.dark-mode .post-navigation a { color: #ffffff; }
body.dark-mode .comments-area { background: var(--bg-card); border-color: var(--border-light); color: var(--text-main); }
body.dark-mode .tag-badges a { background: var(--bg-surface); color: var(--text-muted); border-color: var(--border-light); }
body.dark-mode .share-buttons .share-btn { background: var(--bg-surface); border-color: var(--border-light); color: var(--text-muted); }
body.dark-mode .r34c8-toc { background: var(--bg-surface); border-color: var(--border-light); color: var(--text-main); }
body.dark-mode .r34c8-toc a { color: #60a5fa; }
body.dark-mode .article-lead,
body.dark-mode.has-lead-paragraph .entry-content > p:first-of-type { color: var(--text-main); border-color: var(--border-light); background: var(--bg-surface); }
body.dark-mode figure figcaption { color: var(--text-muted); }
body.dark-mode .search-overlay { background: rgba(0,0,0,0.98); backdrop-filter: blur(10px); }
body.dark-mode input, body.dark-mode textarea, body.dark-mode select {
background: var(--bg-surface); color: #ffffff; border-color: var(--border-light);
}
body.dark-mode input:focus, body.dark-mode textarea:focus { border-color: #60a5fa; box-shadow: 0 0 0 3px rgba(96,165,250,0.2); }
body.dark-mode .search-input-wrap {
background: #1f1f1f;
border-color: var(--border-light);
}
body.dark-mode .search-input-wrap input {
background: transparent;
color: #ffffff;
}
body.dark-mode .search-input-wrap:focus-within {
border-color: #60a5fa;
box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.2);
}
body.dark-mode .search-input-wrap i { color: #9ca3af; }
body.dark-mode .header-actions button {
background: none;
border: none;
outline: none;
box-shadow: none;
}
body.dark-mode #header-search-btn {
background: transparent;
border: none;
box-shadow: none;
}
body.dark-mode .r34c8-cr-overlay {
background: linear-gradient(to bottom, rgba(10,10,10,0) 0%, rgba(10,10,10,0.8) 50%, rgba(10,10,10,1) 100%);
}
body.dark-mode .r34c8-comment-form input[type="text"],
body.dark-mode .r34c8-comment-form input[type="email"],
body.dark-mode .r34c8-comment-form input[type="url"],
body.dark-mode .r34c8-comment-form textarea,
body.dark-mode .comment-form input[type="text"],
body.dark-mode .comment-form input[type="email"],
body.dark-mode .comment-form input[type="url"],
body.dark-mode .comment-form textarea {
background: var(--bg-surface);
color: #ffffff;
border-color: var(--border-light);
}
body.dark-mode .r34c8-comment-form input:focus,
body.dark-mode .r34c8-comment-form textarea:focus,
body.dark-mode .comment-form input:focus,
body.dark-mode .comment-form textarea:focus {
border-color: #60a5fa;
box-shadow: 0 0 0 3px rgba(96,165,250,0.2);
background: var(--bg-card);
}
body.dark-mode .r34c8-comment-form input::placeholder,
body.dark-mode .r34c8-comment-form textarea::placeholder {
color: #6b7280;
}
body.dark-mode .category-section.section-odd { background-color: var(--bg-card); }
body.dark-mode .category-section.section-even { background-color: var(--bg-surface); box-shadow: none; }
body.dark-mode .cat-pill { background-color: var(--bg-surface); color: var(--text-main); }
body.dark-mode .cat-pill.active,
body.dark-mode .cat-pill:hover { background-color: var(--primary-color); color: #fff; }
body.dark-mode .comments-title,
body.dark-mode .comment-reply-title { color: #f4f4f5; }
body.dark-mode .comment-author .fn { color: #f4f4f5; }
body.dark-mode .comment-content p { color: var(--text-main); }
body.dark-mode .comment-metadata a { color: var(--text-muted); }
body.dark-mode .cf-note { color: var(--text-muted); }
body.dark-mode .cf-field label,
body.dark-mode .r34c8-comment-form .cf-field > label,
body.dark-mode .comment-form label { color: #f4f4f5; }
body.dark-mode .cf-cookies-label,
body.dark-mode .comment-form-cookies-consent label { color: var(--text-muted) !important; }
body.dark-mode .no-comments { color: var(--text-muted); }
body.dark-mode .comment-reply-link { color: var(--primary-color); border-color: var(--primary-color); }
body.dark-mode .comment-reply-link:hover { background: var(--primary-color); color: #fff; }
body.dark-mode .srl-item { background: var(--bg-surface); border-color: var(--border-light); }
body.dark-mode .srl-title { color: #f4f4f5; }
body.dark-mode .srl-date { color: var(--text-muted); }
body.dark-mode .srl-no-results,
body.dark-mode .srl-loading { color: var(--text-muted); }
.dark-mode-toggle {
background: none;
border: 1px solid rgba(255,255,255,0.15);
color: #fff;
width: 36px; height: 36px;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
transition: all 0.25s ease;
flex-shrink: 0;
}
.dark-mode-toggle:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
body.dark-mode .dark-mode-toggle { color: #fbbf24; border-color: rgba(251,191,36,0.3); background: rgba(251,191,36,0.05); }
body.dark-mode .dark-mode-toggle:hover { background: rgba(251,191,36,0.15); }
.am-lightbox {
position: fixed;
top: 0; left: 0; right: 0; bottom: 0;
background: rgba(0,0,0,0.95);
z-index: 999999;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s;
cursor: zoom-out;
backdrop-filter: blur(12px);
}
.am-lightbox.active { opacity: 1; visibility: visible; }
.am-lightbox img {
max-width: 92vw;
max-height: 90vh;
object-fit: contain;
border-radius: 4px;
box-shadow: 0 20px 60px rgba(0,0,0,0.8);
transition: transform 0.3s ease;
cursor: default;
}
.am-lightbox-close {
position: absolute;
top: 16px; right: 20px;
background: rgba(255,255,255,0.1);
border: 1px solid rgba(255,255,255,0.3);
color: #fff;
width: 44px; height: 44px;
border-radius: 50%;
font-size: 20px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s;
}
.am-lightbox-close:hover { background: rgba(255,255,255,0.25); transform: scale(1.1); }
.am-lightbox-caption {
position: absolute;
bottom: 24px;
left: 50%;
transform: translateX(-50%);
color: #fff;
font-size: 14px;
max-width: 600px;
text-align: center;
padding: 10px 20px;
background: rgba(0,0,0,0.7);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 8px;
backdrop-filter: blur(4px);
}
.entry-content img:not(.author-avatar):not(.wp-smiley) { cursor: zoom-in; }
.floating-share-bar {
position: fixed;
left: calc(50% - 470px);
top: 50%;
transform: translateY(-50%);
display: flex;
flex-direction: column;
gap: 6px;
z-index: 9990;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s, visibility 0.3s;
}
.floating-share-bar.visible { opacity: 1; visibility: visible; }
.floating-share-bar a {
display: flex;
align-items: center;
justify-content: center;
width: 40px; height: 40px;
border-radius: 50%;
color: #fff;
font-size: 15px;
transition: transform 0.2s, box-shadow 0.2s;
text-decoration: none;
}
.floating-share-bar a:hover { transform: scale(1.15); box-shadow: 0 4px 12px rgba(0,0,0,0.25); }
.floating-share-bar .fsb-facebook { background: #1877f2; }
.floating-share-bar .fsb-twitter { background: #1da1f2; }
.floating-share-bar .fsb-whatsapp { background: #25d366; }
.floating-share-bar .fsb-email { background: #6b7280; }
.floating-share-bar .fsb-copy { background: #374151; }
.floating-share-bar .fsb-divider {
width: 24px; height: 1px;
background: rgba(0,0,0,0.15);
margin: 2px auto;
}
body.dark-mode .floating-share-bar .fsb-divider { background: rgba(255,255,255,0.15); }
@media (max-width: 1200px) { .floating-share-bar { display: none !important; } }
.author-bio-box {
display: flex;
gap: 20px;
padding: 24px;
background: #f9fafb;
border: 1px solid #e5e7eb;
border-radius: 12px;
margin: 32px 0;
}
.author-bio-box .abb-avatar {
width: 72px; height: 72px;
border-radius: 50%;
object-fit: cover;
flex-shrink: 0;
border: 3px solid #e5e7eb;
}
.author-bio-box .abb-info { flex: 1; min-width: 0; }
.author-bio-box .abb-name {
font-size: 17px;
font-weight: 700;
color: #111827;
margin: 0 0 4px;
}
.author-bio-box .abb-name a { color: inherit; text-decoration: none; }
.author-bio-box .abb-name a:hover { color: #EC5725; }
.author-bio-box .abb-meta {
font-size: 12px;
color: #6b7280;
margin-bottom: 8px;
}
.author-bio-box .abb-bio {
font-size: 14px;
color: #374151;
line-height: 1.6;
margin: 0;
}
body.dark-mode .author-bio-box {
background: var(--bg-surface);
border-color: var(--border-light);
}
body.dark-mode .author-bio-box .abb-name { color: #f4f4f5; }
body.dark-mode .author-bio-box .abb-name a:hover { color: #fbbf24; }
body.dark-mode .author-bio-box .abb-meta { color: var(--text-muted); }
body.dark-mode .author-bio-box .abb-bio { color: var(--text-main); }
body.dark-mode .author-bio-box .abb-avatar { border-color: var(--border-light); }
.abb-avatar-initials {
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary-color), #ff7043);
color: #fff;
font-size: 28px;
font-weight: 700;
letter-spacing: 0.5px;
text-decoration: none;
padding: 0;
border: 3px solid rgba(255, 255, 255, 0.3) !important;
box-shadow: 0 4px 12px rgba(217, 56, 2, 0.2);
flex-shrink: 0;
}
body.dark-mode .abb-avatar-initials {
border-color: rgba(255, 255, 255, 0.15) !important;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
body.dark-mode .author-avatar-initials {
border-color: rgba(255, 255, 255, 0.15);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
@media (max-width: 480px) {
.author-bio-box { flex-direction: column; align-items: center; text-align: center; }
}
.search-results-live {
max-height: 420px;
overflow-y: auto;
margin-top: 16px;
display: flex;
flex-direction: column;
gap: 8px;
}
.search-results-live::-webkit-scrollbar { width: 4px; }
.search-results-live::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }
.srl-item {
display: flex;
align-items: center;
gap: 14px;
padding: 12px 16px;
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 10px;
color: #fff;
text-decoration: none;
transition: background 0.2s, border-color 0.2s;
}
.srl-item:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); }
.srl-thumb {
width: 72px;
height: 48px;
border-radius: 4px;
object-fit: contain;
flex-shrink: 0;
background: rgba(255,255,255,0.05);
}
.srl-info { flex: 1; min-width: 0; text-align: left; }
.srl-title {
font-size: 14px;
font-weight: 600;
color: #f4f4f5;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
line-clamp: 2;
overflow: hidden;
line-height: 1.4;
}
.srl-thumb-placeholder {
display: flex;
align-items: center;
justify-content: center;
color: rgba(255,255,255,0.2);
font-size: 20px;
}
.srl-date { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.srl-no-results {
text-align: center;
padding: 24px;
color: rgba(255,255,255,0.5);
font-size: 14px;
}
.srl-loading {
text-align: center;
padding: 16px;
color: rgba(255,255,255,0.5);
}
.post-views-count {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: 12px;
font-weight: 600;
color: #374151;
background: linear-gradient(135deg, rgba(236, 87, 37, 0.08), rgba(255, 112, 67, 0.06));
border: 1px solid rgba(236, 87, 37, 0.12);
padding: 3px 10px;
border-radius: 20px;
letter-spacing: 0.2px;
transition: all 0.25s ease;
}
.post-views-count:hover {
background: linear-gradient(135deg, rgba(236, 87, 37, 0.14), rgba(255, 112, 67, 0.10));
border-color: rgba(236, 87, 37, 0.2);
transform: scale(1.03);
}
.post-views-count i {
font-size: 11px;
color: var(--primary-color);
transition: transform 0.3s ease;
}
.post-views-count:hover i {
transform: scale(1.15);
}
body.dark-mode .post-views-count {
color: rgba(255, 255, 255, 0.75);
background: linear-gradient(135deg, rgba(236, 87, 37, 0.12), rgba(255, 112, 67, 0.08));
border-color: rgba(236, 87, 37, 0.18);
}
body.dark-mode .post-views-count:hover {
background: linear-gradient(135deg, rgba(236, 87, 37, 0.2), rgba(255, 112, 67, 0.14));
}
body.dark-mode .post-views-count i {
color: #ff7043;
}
.popular-posts-widget { margin-top: 24px; }
.popular-post-item {
display: flex;
gap: 12px;
padding: 12px 0;
border-bottom: 1px solid #f3f4f6;
text-decoration: none;
transition: opacity 0.2s;
}
.popular-post-item:last-child { border-bottom: none; }
.popular-post-item:hover { opacity: 0.85; }
.popular-post-rank {
font-size: 22px;
font-weight: 800;
color: #e5e7eb;
min-width: 28px;
line-height: 1;
display: flex;
align-items: flex-start;
padding-top: 2px;
}
.popular-post-item:first-child .popular-post-rank { color: #EC5725; }
.popular-post-info { flex: 1; min-width: 0; }
.popular-post-title {
font-size: 13px;
font-weight: 600;
color: #111827;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
line-clamp: 2;
overflow: hidden;
line-height: 1.4;
}
.popular-post-meta {
font-size: 11px;
color: #6b7280;
margin-top: 3px;
}
body.dark-mode .popular-post-item { border-color: var(--border-light); }
body.dark-mode .popular-post-title { color: #f4f4f5; }
body.dark-mode .popular-post-meta { color: var(--text-muted); }
body.dark-mode .popular-post-rank { color: #6b7280; }
@media (max-width: 768px) {
.header-actions { gap: 10px; }
.dark-mode-toggle {
width: 32px; height: 32px;
font-size: 14px;
}
}
@media (max-width: 768px) {
.am-lightbox img {
max-width: 96vw;
max-height: 80vh;
border-radius: 2px;
}
.am-lightbox-close {
top: 10px; right: 10px;
width: 44px; height: 44px;
font-size: 24px;
}
.am-lightbox-caption {
bottom: 12px;
font-size: 12px;
max-width: 90vw;
padding: 6px 12px;
}
}
@media (max-width: 768px) {
.search-results-live {
max-height: 320px;
margin-top: 12px;
gap: 6px;
}
.srl-item {
padding: 10px 12px;
gap: 10px;
}
.srl-thumb {
width: 60px;
height: 40px;
border-radius: 3px;
}
.srl-title { font-size: 13px; }
}
@media (max-width: 768px) {
.author-bio-box {
padding: 18px;
gap: 14px;
margin: 24px 0;
border-radius: 10px;
}
.author-bio-box .abb-avatar {
width: 56px; height: 56px;
}
.author-bio-box .abb-name { font-size: 15px; }
.author-bio-box .abb-bio { font-size: 13px; }
}
@media (max-width: 768px) {
.popular-post-item { padding: 10px 0; gap: 10px; }
.popular-post-rank {
font-size: 18px;
min-width: 24px;
}
.popular-post-title { font-size: 13px; }
}
@media (max-width: 480px) {
.post-views-count { font-size: 11px; padding: 2px 8px; gap: 3px; }
.post-views-count i { font-size: 10px; }
}
body.dark-mode .mobile-menu {
background: #0f0f1a;
border-color: var(--border-light);
}
body.dark-mode .mobile-menu-header {
border-color: var(--border-light);
color: var(--text-main);
}
body.dark-mode .mobile-menu-title { color: var(--text-main); }
body.dark-mode .mobile-menu-links li a {
color: var(--text-main);
border-color: var(--border-light);
}
body.dark-mode .mobile-menu-links li a:hover {
background: var(--bg-surface);
}
body.dark-mode .mobile-menu-search input {
background: var(--bg-surface);
color: var(--text-main);
border-color: var(--border-light);
}
body.dark-mode .mobile-menu-backdrop {
background: rgba(0,0,0,0.7);
}
body.dark-mode .category-nav-wrapper {
background: #0a0a14;
border-color: var(--border-light);
}
body.dark-mode .category-nav-wrapper a {
color: var(--text-muted);
}
body.dark-mode .category-nav-wrapper a:hover,
body.dark-mode .category-nav-wrapper a.active {
color: #f4f4f5;
}
body.dark-mode .footer-top { background: #0a0a14; border-color: var(--border-light); }
body.dark-mode .footer-bottom { background: #070710; border-color: var(--border-light); }
body.dark-mode .site-footer .footer-description,
body.dark-mode .site-footer .footer-copyright { color: var(--text-muted); }
body.dark-mode .site-footer a { color: var(--text-muted); }
body.dark-mode .site-footer a:hover { color: #f4f4f5; }
body.dark-mode .grid-card,
body.dark-mode .cat-grid-card,
body.dark-mode .sidebar-card {
background: var(--bg-card);
border-color: var(--border-light);
}
body.dark-mode .hero-title,
body.dark-mode .hero-title a { color: #f4f4f5; }
body.dark-mode .hero-excerpt { color: var(--text-muted); }
body.dark-mode .cat-pagination .current {
background: var(--bg-surface);
border-color: var(--border-light);
color: #f4f4f5;
}
body.dark-mode .cat-pagination .prev.page-numbers,
body.dark-mode .cat-pagination .next.page-numbers {
background: var(--bg-surface);
color: #f4f4f5;
}
body.dark-mode .cat-pagination .prev.page-numbers:hover,
body.dark-mode .cat-pagination .next.page-numbers:hover {
background: var(--primary-color);
color: #fff;
}
body.dark-mode .error-404 h1,
body.dark-mode .error-404-content h1,
body.dark-mode .error-404-content .error-code { color: #f4f4f5; }
body.dark-mode .error-404 p,
body.dark-mode .error-404-content p { color: var(--text-muted); }
body.dark-mode .error-404-content h2 { color: #f0f0f0; }
body.dark-mode .r34c8-cr-btn {
background: var(--bg-surface);
color: #f4f4f5;
border: 1px solid var(--border-light);
box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}
body.dark-mode .r34c8-cr-btn--classic {
background: linear-gradient(135deg, #FF7A1A, var(--primary-color));
color: #fff;
border: none;
}
body.dark-mode .r34c8-cr-btn--keep {
background: transparent;
color: #E5E7EB;
border: none;
box-shadow: none;
}
body.dark-mode .r34c8-cr-btn--next {
background: transparent;
color: #FF8A50;
border: none;
box-shadow: none;
}
body.dark-mode .r34c8-cr-btn--book,
body.dark-mode .r34c8-cr-btn--outline {
background: var(--bg-surface, #1f1f1f);
color: #F4F4F5;
border-color: rgba(255, 255, 255, 0.25);
}
body.dark-mode .r34c8-cr-btn--soft {
background: rgba(217, 56, 2, 0.16);
color: #FFD9C4;
border: none;
}
body.dark-mode .r34c8-cr-btnrow--keep::before,
body.dark-mode .r34c8-cr-btnrow--keep::after { border-top-color: #4B5563; }
body.dark-mode .r34c8-cr-btnrow--book::before,
body.dark-mode .r34c8-cr-btnrow--book::after,
body.dark-mode .r34c8-cr-btnrow--soft::before,
body.dark-mode .r34c8-cr-btnrow--soft::after { background: #3F3F46; }
body.dark-mode .r34c8-cr-end { color: #6B7280; }
body.dark-mode .r34c8-cr-btn--link,
body.dark-mode .r34c8-cr-btn--divider {
background: transparent;
color: #FF8A50;
border: none;
box-shadow: none;
}
body.dark-mode .r34c8-cr-btn--bordered {
background: var(--bg-surface, #1f1f1f);
color: #FF8A50;
border-color: #FF8A50;
}
body.dark-mode .r34c8-cr-btnrow--solid::before,
body.dark-mode .r34c8-cr-btnrow--solid::after,
body.dark-mode .r34c8-cr-btnrow--divider::before,
body.dark-mode .r34c8-cr-btnrow--divider::after,
body.dark-mode .r34c8-cr-btnrow--bordered::before,
body.dark-mode .r34c8-cr-btnrow--bordered::after,
body.dark-mode .r34c8-cr-btnrow--label::before,
body.dark-mode .r34c8-cr-btnrow--label::after { background: #3F3F46; }
body.dark-mode .r34c8-cr-btnrow--tab::before {
background: #202024;
border-top-color: #3F3F46;
box-shadow: inset 0 8px 12px -8px rgba(0, 0, 0, 0.65);
}
body.dark-mode .r34c8-cr-btn--tab::before,
body.dark-mode .r34c8-cr-btn--tab::after {
background: #3F3F46;
}
body.dark-mode .r34c8-cr-btn--double,
body.dark-mode .r34c8-cr-btn--dotted,
body.dark-mode .r34c8-cr-btn--bookline,
body.dark-mode .r34c8-cr-btn--arrowcircle,
body.dark-mode .r34c8-cr-btn--chevron,
body.dark-mode .r34c8-cr-btn--underline,
body.dark-mode .r34c8-cr-btn--sidebars {
background: transparent;
color: #FF8A50;
border: none;
box-shadow: none;
}
body.dark-mode .r34c8-cr-btn--underline { border-bottom: 3px solid #FF8A50; }
body.dark-mode .r34c8-cr-btn--arrowcircle::before { background: rgba(217, 56, 2, 0.20); color: #FF8A50; }
body.dark-mode .r34c8-cr-btn--sidebars::before,
body.dark-mode .r34c8-cr-btn--sidebars::after { background: #FF8A50; }
body.dark-mode .r34c8-cr-btnrow--double::before,
body.dark-mode .r34c8-cr-btnrow--double::after {
border-top-color: rgba(255, 138, 80, 0.55);
border-bottom-color: rgba(255, 138, 80, 0.55);
}
body.dark-mode .r34c8-cr-btnrow--dotted::before,
body.dark-mode .r34c8-cr-btnrow--dotted::after { border-top-color: rgba(255, 138, 80, 0.45); }
body.dark-mode .r34c8-cr-overlay.r34c8-cr-btnrow--bookline::before,
body.dark-mode .r34c8-cr-overlay.r34c8-cr-btnrow--bookline::after { background: rgba(255, 138, 80, 0.5); }
body.dark-mode .r34c8-cr-btn--softbg {
background: rgba(217, 56, 2, 0.16);
color: #FFD9C4;
border: none;
}
body.dark-mode .r34c8-cr-btn--badge,
body.dark-mode .r34c8-cr-btn--fade {
background: var(--primary-color);
color: #fff;
border: none;
}
body.dark-mode .r34c8-cr-overlay.r34c8-cr-btnrow--badge::before,
body.dark-mode .r34c8-cr-overlay.r34c8-cr-btnrow--badge::after { background: #3F3F46; }
body.dark-mode .r34c8-cr-overlay.r34c8-cr-btnrow--fade {
background: linear-gradient(to bottom,
rgba(22, 22, 22, 0) 0%,
rgba(22, 22, 22, 0.9) 45%,
rgba(22, 22, 22, 1) 80%);
}
body.dark-mode .r34c8-cr-btn--glassfloat {
background: rgba(255, 138, 80, 0.14);
border-color: rgba(255, 138, 80, 0.32);
color: #FFD9C4;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}
body.dark-mode .r34c8-cr-btn--glassfloat:hover {
background: rgba(255, 138, 80, 0.20);
border-color: rgba(255, 138, 80, 0.5);
box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
}
body.dark-mode .r34c8-cr-btn--readingarc { color: #F4F4F5; }
body.dark-mode .r34c8-cr-btn--readingarc::before {
background: conic-gradient(var(--primary-color) 0% 62%, #3F3F46 62% 100%);
}
body.dark-mode .r34c8-cr-btn--readingarc svg { stroke: #FF8A50; }
body.dark-mode .r34c8-cr-btn--shine {
background: linear-gradient(135deg, #FF7A1A, var(--primary-color));
color: #fff;
border: none;
}
body.dark-mode .r34c8-cr-btn--edge {
background-image: linear-gradient(#1f1f1f, #1f1f1f),
conic-gradient(from var(--r34c8-edge-ang, 0deg), #D93802, #FF7A1A, #FFB380, #D93802);
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}
body.dark-mode .r34c8-cr-btn--edge:hover {
background-image: linear-gradient(#2a2a2a, #2a2a2a),
conic-gradient(from var(--r34c8-edge-ang, 0deg), #D93802, #FF7A1A, #FFB380, #D93802);
}
body.dark-mode .cookie-popup {
background: #1a1a2e;
border-color: var(--border-light);
color: var(--text-main);
}
body.dark-mode .ad-slot-sticky-bottom {
background: #0a0a14;
border-color: var(--border-light);
}
body.dark-mode .back-to-top-btn {
background: var(--bg-surface);
border-color: var(--border-light);
color: var(--text-main);
}
.story-continue-wrap {
text-align: center;
margin: 12px 0 0;
padding: 0;
}
.story-continue-wrap:last-child {
margin-bottom: -32px;
padding-bottom: 0;
}
.story-nav-buttons {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
flex-wrap: wrap;
}
.entry-content .story-continue-btn,
.story-continue-btn {
display: inline-flex !important;
align-items: center;
justify-content: center;
gap: 8px;
background: linear-gradient(135deg, var(--primary-color), #e64a19) !important;
color: #fff !important;
font-size: 14px;
font-weight: 700;
padding: 11px 28px;
border-radius: 10px;
text-decoration: none !important;
box-shadow: 0 3px 12px rgba(236, 87, 37, 0.25);
transition: all 0.25s ease;
border: none !important;
cursor: pointer;
line-height: 1.3;
letter-spacing: 0.2px;
}
.entry-content .story-continue-btn:hover,
.story-continue-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(236, 87, 37, 0.35);
color: #fff !important;
text-decoration: none !important;
}
.entry-content .story-continue-btn-prev,
.story-continue-btn-prev {
background: #374151 !important;
box-shadow: 0 3px 12px rgba(55, 65, 81, 0.2);
}
.entry-content .story-continue-btn-prev:hover,
.story-continue-btn-prev:hover {
background: #4B5563 !important;
box-shadow: 0 6px 20px rgba(55, 65, 81, 0.3);
}
.story-continue-btn i {
font-size: 13px;
transition: transform 0.3s ease;
}
.story-continue-btn:hover i {
transform: translateX(3px);
}
.story-continue-btn-prev:hover i {
transform: translateX(-3px);
}
.story-continue-meta {
display: block;
margin-top: 4px;
margin-bottom: 0;
font-size: 12px;
font-weight: 600;
color: #9CA3AF;
}
.entry-content .story-continue-back,
.story-continue-back {
display: inline-block;
margin-top: 8px;
font-size: 13px;
font-weight: 600;
color: var(--primary-color) !important;
text-decoration: none !important;
}
.story-continue-back:hover { text-decoration: underline !important; }
body.dark-mode .story-continue-meta { color: #6B7280; }
body.dark-mode .story-continue-back { color: #ff7043 !important; }
body.dark-mode .entry-content .story-continue-btn,
body.dark-mode .story-continue-btn {
background: linear-gradient(135deg, var(--primary-color), #e64a19) !important;
color: #fff !important;
}
body.dark-mode .entry-content .story-continue-btn-prev,
body.dark-mode .story-continue-btn-prev {
background: #4B5563 !important;
}
@media (max-width: 600px) {
.story-layout-stacked .story-nav-buttons {
flex-direction: column;
gap: 8px;
}
.story-layout-stacked .story-nav-buttons .story-continue-btn {
width: 100%;
}
.story-continue-btn {
font-size: 14px;
padding: 11px 24px;
}
}
.story-layout-side .story-nav-buttons {
flex-direction: row;
}
.story-layout-side .story-nav-buttons .story-continue-btn {
flex: 1;
min-width: 0;
}
.story-style-card.story-layout-side {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.story-style-card.story-layout-side .story-continue-meta {
grid-column: 1 / -1;
}
.story-style-card.story-layout-side .story-btn-card-prev {
margin-bottom: 0;
}
.story-style-netflix.story-layout-side {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.story-style-netflix.story-layout-side .story-btn-netflix-prev {
margin-bottom: 0;
}
.story-style-magazine.story-layout-side {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.story-style-magazine.story-layout-side .story-btn-magazine-prev {
margin-bottom: 0;
}
@media (max-width: 600px) {
.story-style-card.story-layout-stacked,
.story-style-netflix.story-layout-stacked,
.story-style-magazine.story-layout-stacked {
grid-template-columns: 1fr;
}
}
.story-style-card {
margin: 12px 0 0;
}
.story-btn-card {
display: flex !important;
align-items: center;
justify-content: space-between;
padding: 20px 24px;
background: var(--bg-card, #fff);
border: 1px solid var(--border-light, #E5E7EB);
border-left: 4px solid var(--primary-color, #D93802);
border-radius: 12px;
text-decoration: none !important;
color: var(--text-main, #1F2937) !important;
box-shadow: 0 2px 12px rgba(0,0,0,0.06);
transition: all 0.25s ease;
}
.story-btn-card:hover {
transform: translateY(-2px);
box-shadow: 0 8px 28px rgba(0,0,0,0.12);
border-left-color: #e64a19;
text-decoration: none !important;
color: var(--text-main, #1F2937) !important;
}
.story-btn-card-body {
display: flex;
align-items: center;
gap: 16px;
flex: 1;
min-width: 0;
}
.story-btn-card-icon {
width: 44px;
height: 44px;
background: linear-gradient(135deg, var(--primary-color, #D93802), #e64a19);
color: #fff;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
flex-shrink: 0;
}
.story-btn-card-text {
display: flex;
flex-direction: column;
min-width: 0;
}
.story-btn-card-title {
font-size: 16px;
font-weight: 700;
color: var(--text-main, #1F2937);
line-height: 1.3;
}
.story-btn-card-sub {
font-size: 13px;
color: var(--text-muted, #6B7280);
margin-top: 2px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.story-btn-card-chevron {
color: var(--text-muted, #9CA3AF);
font-size: 14px;
flex-shrink: 0;
margin-left: 12px;
transition: transform 0.2s;
}
.story-btn-card:hover .story-btn-card-chevron {
transform: translateX(4px);
color: var(--primary-color, #D93802);
}
body.dark-mode .story-btn-card {
background: var(--bg-card);
border-color: var(--border-light);
border-left-color: var(--primary-color, #ff7043);
}
body.dark-mode .story-btn-card-title { color: var(--text-main); }
body.dark-mode .story-btn-card-sub { color: var(--text-muted); }
@media (max-width: 600px) {
.story-btn-card { padding: 16px 18px; }
.story-btn-card-title { font-size: 15px; }
.story-btn-card-sub { font-size: 12px; }
.story-btn-card-icon { width: 38px; height: 38px; font-size: 14px; }
}
.story-btn-card-prev {
border-left: 4px solid #9CA3AF;
margin-bottom: 8px;
}
.story-btn-card-prev:hover {
border-left-color: #6B7280;
}
.story-btn-card-icon-prev {
background: linear-gradient(135deg, #6B7280, #9CA3AF) !important;
}
.story-btn-card-chevron-left {
margin-left: 0;
margin-right: 12px;
}
.story-btn-card-prev:hover .story-btn-card-chevron-left {
transform: translateX(-4px);
}
body.dark-mode .story-btn-card-prev {
border-left-color: #6B7280;
}
.story-floating-bar-btn-prev {
background: rgba(255,255,255,0.12) !important;
border: 1px solid rgba(255,255,255,0.15);
}
.story-floating-bar-btn-prev:hover {
background: rgba(255,255,255,0.2) !important;
}
.story-floating-bar-btn-prev i {
transition: transform 0.2s;
}
.story-floating-bar-btn-prev:hover i {
transform: translateX(-3px);
}
.story-btn-netflix-prev {
margin-bottom: 8px;
border-color: #333;
}
.story-btn-netflix-prev .story-btn-netflix-label {
color: #9CA3AF;
}
.story-btn-netflix-prev:hover {
border-color: #555;
}
.story-btn-magazine-prev {
margin-bottom: 8px;
background: linear-gradient(135deg, #1E293B, #334155) !important;
}
.story-btn-magazine-prev .story-btn-magazine-label {
color: #94A3B8;
}
.story-btn-magazine-arrow-left {
order: -1;
}
.story-btn-magazine-prev:hover .story-btn-magazine-arrow-left {
transform: translateX(-4px);
color: #94A3B8;
}
.story-style-floating-inline {
text-align: center;
margin: 12px 0 0;
}
.story-floating-bar {
position: fixed;
bottom: -80px;
left: 0;
right: 0;
z-index: 998;
background: rgba(17, 17, 17, 0.95);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
padding: 0 20px;
transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
padding-bottom: env(safe-area-inset-bottom, 0px);
}
.story-floating-bar.visible {
bottom: 0;
}
.story-floating-bar-inner {
max-width: 720px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
padding: 14px 0;
gap: 16px;
}
.story-floating-bar-left {
display: flex;
flex-direction: column;
gap: 6px;
flex: 1;
min-width: 0;
}
.story-floating-bar-progress {
color: #9CA3AF;
font-size: 12px;
font-weight: 600;
letter-spacing: 0.3px;
}
.story-floating-bar-track {
width: 100%;
max-width: 200px;
height: 3px;
background: #333;
border-radius: 3px;
overflow: hidden;
}
.story-floating-bar-fill {
height: 100%;
background: linear-gradient(90deg, var(--primary-color, #D93802), #e64a19);
border-radius: 3px;
transition: width 0.3s ease;
}
.story-floating-bar-btn {
display: inline-flex;
align-items: center;
gap: 8px;
background: linear-gradient(135deg, var(--primary-color, #D93802), #e64a19);
color: #fff !important;
font-size: 14px;
font-weight: 700;
padding: 12px 24px;
border-radius: 10px;
text-decoration: none !important;
white-space: nowrap;
transition: all 0.2s;
flex-shrink: 0;
}
.story-floating-bar-btn:hover {
transform: scale(1.03);
box-shadow: 0 4px 16px rgba(236, 87, 37, 0.4);
text-decoration: none !important;
color: #fff !important;
}
.story-floating-bar-btn i {
font-size: 12px;
transition: transform 0.2s;
}
.story-floating-bar-btn:hover i {
transform: translateX(3px);
}
@media (max-width: 600px) {
.story-floating-bar-inner { padding: 12px 0; }
.story-floating-bar-btn { font-size: 13px; padding: 10px 18px; }
.story-floating-bar-progress { font-size: 11px; }
.story-floating-bar-track { max-width: 120px; }
}
.story-style-netflix {
margin: 12px 0 0;
}
.story-btn-netflix {
display: flex !important;
align-items: center;
gap: 0;
background: #141414;
border-radius: 8px;
overflow: hidden;
text-decoration: none !important;
color: #fff !important;
box-shadow: 0 4px 20px rgba(0,0,0,0.4);
transition: all 0.3s ease;
border: 1px solid #2a2a2a;
}
.story-btn-netflix:hover {
transform: scale(1.01);
box-shadow: 0 8px 36px rgba(0,0,0,0.5);
border-color: #E50914;
text-decoration: none !important;
color: #fff !important;
}
.story-btn-netflix-thumb {
width: 160px;
height: 100px;
flex-shrink: 0;
position: relative;
overflow: hidden;
}
.story-btn-netflix-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}
.story-btn-netflix:hover .story-btn-netflix-thumb img {
transform: scale(1.08);
}
.story-btn-netflix-play {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 36px;
height: 36px;
background: rgba(229, 9, 20, 0.9);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 12px;
opacity: 0;
transition: opacity 0.2s;
border: 2px solid rgba(255,255,255,0.3);
}
.story-btn-netflix:hover .story-btn-netflix-play {
opacity: 1;
}
.story-btn-netflix-info {
flex: 1;
padding: 16px 20px;
min-width: 0;
display: flex;
flex-direction: column;
gap: 4px;
}
.story-btn-netflix-label {
font-size: 11px;
font-weight: 800;
color: #E50914;
letter-spacing: 1.5px;
text-transform: uppercase;
}
.story-btn-netflix-title {
font-size: 15px;
font-weight: 600;
color: #fff;
line-height: 1.3;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.story-btn-netflix-bar {
width: 100%;
height: 3px;
background: #333;
border-radius: 2px;
margin-top: 8px;
overflow: hidden;
}
.story-btn-netflix-bar-fill {
height: 100%;
width: 0%;
background: #E50914;
border-radius: 2px;
animation: netflix-bar-fill 8s linear forwards;
}
@keyframes netflix-bar-fill {
0% { width: 0%; }
100% { width: 100%; }
}
.story-btn-netflix-meta {
padding: 16px 20px 16px 0;
flex-shrink: 0;
}
.story-btn-netflix-meta span {
font-size: 12px;
color: #6B7280;
font-weight: 700;
font-variant-numeric: tabular-nums;
}
@media (max-width: 600px) {
.story-btn-netflix-thumb { width: 100px; height: 75px; }
.story-btn-netflix-info { padding: 12px 14px; }
.story-btn-netflix-title { font-size: 14px; }
.story-btn-netflix-label { font-size: 10px; }
.story-btn-netflix-meta { padding: 12px 14px 12px 0; }
.story-btn-netflix-play { width: 30px; height: 30px; font-size: 10px; }
}
.story-style-magazine {
margin: 12px 0 0;
}
.story-btn-magazine {
display: flex !important;
align-items: center;
gap: 0;
background: linear-gradient(135deg, #0F172A, #1E293B);
border-radius: 12px;
overflow: hidden;
text-decoration: none !important;
color: #fff !important;
box-shadow: 0 4px 20px rgba(15, 23, 42, 0.35);
transition: all 0.3s ease;
border: 1px solid rgba(255,255,255,0.06);
}
.story-btn-magazine:hover {
transform: translateY(-2px);
box-shadow: 0 10px 36px rgba(15, 23, 42, 0.5);
text-decoration: none !important;
color: #fff !important;
}
.story-btn-magazine-thumb {
width: 120px;
height: 90px;
flex-shrink: 0;
overflow: hidden;
}
.story-btn-magazine-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}
.story-btn-magazine:hover .story-btn-magazine-thumb img {
transform: scale(1.05);
}
.story-btn-magazine-content {
flex: 1;
padding: 16px 20px;
min-width: 0;
display: flex;
flex-direction: column;
gap: 6px;
}
.story-btn-magazine-label {
font-size: 11px;
font-weight: 700;
color: #F59E0B;
letter-spacing: 1px;
text-transform: uppercase;
}
.story-btn-magazine-title {
font-size: 15px;
font-weight: 600;
color: #F1F5F9;
line-height: 1.3;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.story-btn-magazine-arrow {
padding: 16px 24px;
flex-shrink: 0;
color: rgba(255,255,255,0.4);
font-size: 18px;
transition: all 0.2s;
}
.story-btn-magazine:hover .story-btn-magazine-arrow {
color: #F59E0B;
transform: translateX(4px);
}
@media (max-width: 600px) {
.story-btn-magazine-thumb { width: 90px; height: 72px; }
.story-btn-magazine-content { padding: 12px 14px; }
.story-btn-magazine-title { font-size: 14px; }
.story-btn-magazine-label { font-size: 10px; }
.story-btn-magazine-arrow { padding: 12px 16px; font-size: 16px; }
}
.emo-highlight {
transition: all 0.2s ease;
-webkit-box-decoration-break: clone;
box-decoration-break: clone;
}
.emo-highlight:hover {
filter: brightness(1.12);
transform: scale(1.01);
}
body.dark-mode .emo-highlight {
filter: brightness(1.2);
}
body.dark-mode .emo-highlight:hover {
filter: brightness(1.4);
}
.emo-highlight.emo-style-bubble {
--emo-color: #E11D48;
display: inline-block;
position: relative;
box-sizing: border-box;
max-width: 100%;
margin: 0.22em 0 0.55em;
padding: 0.52em 1.05em 0.56em;
color: #292929;
background: #FFFFFF;
background: linear-gradient(135deg, #FFFFFF 0%, color-mix(in srgb, var(--emo-color) 11%, #FFFFFF) 100%);
border: 1px solid var(--emo-color);
border-color: color-mix(in srgb, var(--emo-color) 30%, transparent);
border-radius: 1.15em;
box-shadow: 0 8px 22px rgba(15, 23, 42, 0.09);
box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08), 0 2px 5px color-mix(in srgb, var(--emo-color) 16%, transparent);
font-size: 0.98em;
font-weight: 700;
line-height: 1.45;
text-decoration: none;
vertical-align: middle;
white-space: normal;
overflow: visible;
-webkit-box-decoration-break: slice;
box-decoration-break: slice;
filter: none;
transform: none;
}
.emo-highlight.emo-style-bubble::before,
.emo-highlight.emo-style-bubble::after {
content: "";
position: absolute;
width: 0;
height: 0;
pointer-events: none;
}
.emo-highlight.emo-style-bubble::before {
left: 18px;
bottom: -11px;
border-style: solid;
border-width: 11px 13px 0 0;
border-color: var(--emo-color) transparent transparent transparent;
border-top-color: color-mix(in srgb, var(--emo-color) 30%, transparent);
}
.emo-highlight.emo-style-bubble::after {
left: 19px;
bottom: -9px;
border-style: solid;
border-width: 10px 11px 0 0;
border-color: #FFFFFF transparent transparent transparent;
border-top-color: color-mix(in srgb, var(--emo-color) 4%, #FFFFFF);
}
.emo-highlight.emo-style-bubble .emo-bubble-mark {
display: inline-block;
margin-right: 0.04em;
color: var(--emo-color);
font-size: 1.65em;
font-weight: 900;
line-height: 0.7;
vertical-align: -0.08em;
}
.emo-highlight.emo-style-bubble .emo-style-bubble-nested {
color: inherit;
font-weight: 800;
border-radius: 2px;
box-shadow: inset 0 -0.18em 0 color-mix(in srgb, var(--emo-color) 18%, transparent);
}
.emo-highlight.emo-style-bubble:hover {
filter: none;
transform: translateY(-1px);
box-shadow: 0 11px 27px rgba(15, 23, 42, 0.11), 0 3px 7px color-mix(in srgb, var(--emo-color) 20%, transparent);
}
body.dark-mode .emo-highlight.emo-style-bubble {
color: #F4F4F5;
background: #202020;
background: linear-gradient(135deg, #202020 0%, color-mix(in srgb, var(--emo-color) 17%, #202020) 100%);
border-color: color-mix(in srgb, var(--emo-color) 48%, transparent);
box-shadow: 0 9px 24px rgba(0, 0, 0, 0.34);
filter: none;
}
body.dark-mode .emo-highlight.emo-style-bubble::before {
border-top-color: color-mix(in srgb, var(--emo-color) 48%, transparent);
}
body.dark-mode .emo-highlight.emo-style-bubble::after {
border-top-color: #202020;
border-top-color: color-mix(in srgb, var(--emo-color) 7%, #202020);
}
body.dark-mode .emo-highlight.emo-style-bubble .emo-bubble-mark {
color: var(--emo-color);
color: color-mix(in srgb, var(--emo-color) 62%, #FFFFFF);
}
body.dark-mode .emo-highlight.emo-style-bubble:hover {
filter: none;
box-shadow: 0 12px 29px rgba(0, 0, 0, 0.42);
}
@media (max-width: 600px) {
.emo-highlight.emo-style-bubble {
padding: 0.48em 0.82em 0.52em;
border-radius: 1em;
}
}
@media (prefers-reduced-motion: reduce) {
.emo-highlight.emo-style-bubble {
transition: none;
}
.emo-highlight.emo-style-bubble:hover {
transform: none;
}
}
.category-section,
.related-articles,
.comments-area,
.site-footer,
.cat-dontmiss {
content-visibility: auto;
contain-intrinsic-size: auto 500px;
}
body.dark-mode {
--bg-main: #0d0d0d;
--bg-card: #161616;
--text-main: #e0e0e0;
--text-muted: #888888;
--border-light: #2a2a2a;
--bg-peach: #1a1210;
--dark-bg: #0a0a0a;
--shadow-card: 0 2px 20px rgba(0, 0, 0, 0.4);
background-color: var(--bg-main);
color: var(--text-main);
}
body.dark-mode .site-header {
background-color: #111111;
}
body.dark-mode .category-nav-wrapper {
background-color: #111111;
}
body.dark-mode .cat-pill {
background-color: #222222;
color: var(--text-main);
}
body.dark-mode .cat-pill.active,
body.dark-mode .cat-pill:hover {
background-color: var(--primary-color);
color: #fff;
}
body.dark-mode .grid-card,
body.dark-mode .hero-main,
body.dark-mode .sidebar-card,
body.dark-mode .article-content,
body.dark-mode .sidebar-widget,
body.dark-mode .story-card {
background-color: var(--bg-card);
box-shadow: var(--shadow-card);
}
body.dark-mode .category-section.section-odd {
background-color: #1a1210;
}
body.dark-mode .category-section.section-even {
background-color: var(--bg-card);
box-shadow: var(--shadow-card);
}
body.dark-mode .hero-main .hero-title,
body.dark-mode .grid-card .card-title,
body.dark-mode .sidebar-card .card-title,
body.dark-mode .hero-main .hero-excerpt,
body.dark-mode .grid-card .card-excerpt {
color: var(--text-main);
}
body.dark-mode .hero-main .hero-title a,
body.dark-mode .grid-card .card-title a,
body.dark-mode .sidebar-card .card-title a {
color: var(--text-main);
}
body.dark-mode .hero-main .hero-title a:hover,
body.dark-mode .grid-card .card-title a:hover,
body.dark-mode .sidebar-card .card-title a:hover {
color: var(--primary-color);
}
body.dark-mode .single-post .main-content {
background-color: var(--bg-main);
}
body.dark-mode .article-title-single {
color: var(--text-main);
}
body.dark-mode .author-details .author-name,
body.dark-mode .author-details .author-link {
color: var(--text-main);
}
body.dark-mode .entry-content {
color: var(--text-main);
}
body.dark-mode .entry-content h1,
body.dark-mode .entry-content h2,
body.dark-mode .entry-content h3,
body.dark-mode .entry-content h4 {
color: var(--text-main);
}
body.dark-mode .entry-content blockquote {
background: #1a1510;
border-left-color: var(--primary-color);
color: var(--text-main);
}
body.dark-mode .entry-content a {
color: #ff8a65;
}
body.dark-mode .article-lead,
body.dark-mode.has-lead-paragraph .entry-content > p:first-of-type {
color: var(--text-main);
background: #1a1510;
}
body.dark-mode .r34c8-cr-overlay {
background: linear-gradient(to bottom,
rgba(22, 22, 22, 0) 0%,
rgba(22, 22, 22, 1) 30%,
rgba(22, 22, 22, 1) 100%);
}
body.dark-mode .related-articles {
border-top-color: var(--border-light);
}
body.dark-mode .related-grid-card {
background: var(--bg-card);
box-shadow: var(--shadow-card);
}
body.dark-mode .related-grid-title,
body.dark-mode .related-item .related-text .related-title {
color: var(--text-main);
}
body.dark-mode .related-minimal-item {
border-bottom-color: var(--border-light);
}
body.dark-mode .sidebar-widget {
background: var(--bg-card);
}
body.dark-mode .top-news-item {
border-bottom-color: var(--border-light);
}
body.dark-mode .top-news-item .news-title {
color: var(--text-main);
}
body.dark-mode .post-navigation {
border-top-color: var(--border-light);
}
body.dark-mode .post-navigation .nav-previous a,
body.dark-mode .post-navigation .nav-next a {
background: #1a1a1a;
}
body.dark-mode .post-navigation .nav-title {
color: var(--text-main);
}
body.dark-mode .comments-area {
border-top-color: var(--border-light);
}
body.dark-mode .comments-title,
body.dark-mode .comment-reply-title,
body.dark-mode .comment-author .fn,
body.dark-mode .comment-content p {
color: var(--text-main);
}
body.dark-mode .comment-body {
border-bottom-color: var(--border-light);
}
body.dark-mode .r34c8-comment-form input[type="text"],
body.dark-mode .r34c8-comment-form input[type="email"],
body.dark-mode .r34c8-comment-form input[type="url"],
body.dark-mode .r34c8-comment-form textarea {
background: #1a1a1a;
color: var(--text-main);
border-color: var(--border-light);
}
body.dark-mode .r34c8-comment-form input:focus,
body.dark-mode .r34c8-comment-form textarea:focus {
border-color: var(--primary-color);
background: #111111;
}
body.dark-mode .post-tags {
border-top-color: var(--border-light);
}
body.dark-mode .site-footer {
background-color: #050505;
}
body.dark-mode .page-content-single {
background: var(--bg-card);
}
body.dark-mode .page-content-single .entry-title {
color: var(--text-main);
}
body.dark-mode .page-content-single .entry-content {
color: var(--text-main);
}
body.dark-mode .page-content-single .entry-content h2 {
color: var(--text-main);
border-bottom-color: var(--border-light);
}
body.dark-mode .page-content-single .entry-content strong {
color: var(--text-main);
}
body.dark-mode .ad-slot-divider::before,
body.dark-mode .ad-slot-divider::after {
background-color: var(--border-light);
}
body.dark-mode .search-input-wrap {
background: #1a1a1a;
border-color: #333;
}
body.dark-mode .search-input-wrap input {
color: var(--text-main);
}
body.dark-mode .cat-header--dark {
background: #111;
}
body.dark-mode .cat-grid-card {
background: var(--bg-card);
}
body.dark-mode .cat-gc-title a,
body.dark-mode .cat-hero-title a {
color: var(--text-main);
}
body.dark-mode .nav-links .page-numbers {
background: var(--bg-card);
color: var(--text-main);
}
body.dark-mode .am-placeholder-img {
background: linear-gradient(145deg, #1a1a1a, #222222);
color: #555;
}
body.dark-mode .error-404-content h2 {
color: var(--text-main);
}
body.dark-mode .ad-slot-sticky-bottom {
background: #111;
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}
body.dark-mode .page-title {
color: var(--text-main);
}
body.dark-mode .layout-featured-wrap .featured-headline {
color: var(--text-main);
border-bottom-color: var(--border-light);
}
body.dark-mode .layout-featured-wrap .featured-main-title a {
color: var(--text-main);
}
body.dark-mode .layout-list-wrap .list-item {
border-bottom-color: var(--border-light);
}
body.dark-mode .layout-list-wrap .list-item-title {
color: var(--text-main);
}
body.dark-mode .layout-full-wrap .full-card {
background: var(--bg-card);
box-shadow: var(--shadow-card);
}
body.dark-mode .layout-full-wrap .full-card-title {
color: var(--text-main);
}
@media (min-width: 768px) and (max-width: 991px) {
.single-layout {
max-width: 720px;
margin: 0 auto;
}
.container {
padding: 0 20px;
}
.hero-section {
grid-template-columns: 1fr;
}
}
@media (pointer: coarse) {
.share-btn {
min-width: 44px;
min-height: 44px;
display: inline-flex;
align-items: center;
justify-content: center;
}
.top-nav-item a,
.category-nav a {
padding: 10px 16px;
min-height: 44px;
display: inline-flex;
align-items: center;
}
}
@media (pointer: coarse) {
.ad-sticky-close {
width: 32px !important;
height: 32px !important;
font-size: 18px !important;
top: 2px !important;
right: 6px !important;
}
}
.r34c8-upnext {
display: flex;
gap: 16px;
align-items: stretch;
margin: 28px 0;
padding: 14px;
border: 1px solid var(--border-light, #EAEAEA);
border-left: 4px solid var(--primary-color, #D93802);
border-radius: 14px;
background: var(--bg-card, #fff);
text-decoration: none;
color: inherit;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.r34c8-upnext:hover {
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
transform: translateY(-2px);
}
.r34c8-upnext-media {
flex: 0 0 132px;
border-radius: 10px;
overflow: hidden;
align-self: center;
}
.r34c8-upnext-media img {
display: block;
width: 132px;
height: 88px;
object-fit: cover;
}
.r34c8-upnext-media .am-placeholder-img {
width: 132px;
height: 88px;
}
.r34c8-upnext-body {
display: flex;
flex-direction: column;
justify-content: center;
gap: 4px;
min-width: 0;
}
.r34c8-upnext-kicker {
font-size: 12px;
font-weight: 800;
letter-spacing: 1px;
text-transform: uppercase;
color: var(--primary-color, #D93802);
}
.r34c8-upnext-cat {
color: var(--text-muted, #757575);
font-weight: 600;
text-transform: none;
letter-spacing: 0;
}
.r34c8-upnext-title {
font-weight: 700;
font-size: 17px;
line-height: 1.35;
color: var(--text-main, #292929);
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
line-clamp: 2;
overflow: hidden;
}
.r34c8-upnext-cta {
font-size: 13px;
font-weight: 700;
color: var(--primary-color, #D93802);
margin-top: 2px;
}
body.dark-mode .r34c8-upnext {
background: #1d1d1d;
border-color: #333;
border-left-color: var(--primary-color, #D93802);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
body.dark-mode .r34c8-upnext-title {
color: #eee;
}
@media screen and (max-width: 480px) {
.r34c8-upnext {
gap: 12px;
padding: 12px;
}
.r34c8-upnext-media,
.r34c8-upnext-media img,
.r34c8-upnext-media .am-placeholder-img {
flex-basis: 104px;
width: 104px;
height: 74px;
}
.r34c8-upnext-title {
font-size: 15px;
}
}
.share-btn-native {
background-color: var(--primary-color, #D93802);
}
.share-btn-native:hover {
opacity: 0.85;
}
.amx-hero {
position: relative;
overflow: hidden;
border-radius: 18px;
padding: 56px 40px;
margin: 8px 0 36px;
text-align: center;
color: #fff;
background: linear-gradient(135deg, var(--dark-bg, #292929) 0%, #3d3d3d 55%, var(--primary-color, #D93802) 160%);
}
.amx-hero--slim {
padding: 40px 32px;
}
.amx-hero .amx-hero-img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.35;
}
.amx-hero > :not(.amx-hero-img) {
position: relative;
z-index: 1;
}
.amx-hero-kicker {
display: inline-block;
font-size: 12px;
font-weight: 800;
letter-spacing: 2.5px;
text-transform: uppercase;
color: #fff;
background: var(--primary-color, #D93802);
padding: 6px 14px;
border-radius: 999px;
margin-bottom: 18px;
}
.amx-hero-title {
font-size: 40px;
line-height: 1.15;
font-weight: 800;
margin: 0 0 14px;
letter-spacing: -0.5px;
}
.amx-hero-sub {
font-size: 18px;
line-height: 1.6;
opacity: 0.92;
max-width: 640px;
margin: 0 auto;
}
.entry-content .amx-hero:has(+ .am-latest-news),
.entry-content .amx-hero:has(+ p > .am-latest-news),
.entry-content .am-page-hero:has(+ .am-latest-news),
.entry-content .am-page-hero:has(+ p > .am-latest-news) {
padding: 0;
margin: -4px 0 20px;
background: none;
border-radius: 0;
color: inherit;
text-align: left;
min-height: 0;
box-shadow: none;
}
.entry-content .amx-hero:has(+ .am-latest-news) :is(.amx-hero-title, .amx-hero-kicker, h1, h2),
.entry-content .amx-hero:has(+ p > .am-latest-news) :is(.amx-hero-title, .amx-hero-kicker, h1, h2),
.entry-content .am-page-hero:has(+ .am-latest-news) :is(.amx-hero-title, .amx-hero-kicker, h1, h2),
.entry-content .am-page-hero:has(+ p > .am-latest-news) :is(.amx-hero-title, .amx-hero-kicker, h1, h2) {
display: none;
}
.page-content-single .entry-content .amx-hero:has(+ .am-latest-news) :is(.amx-hero-sub, p),
.page-content-single .entry-content .amx-hero:has(+ p > .am-latest-news) :is(.amx-hero-sub, p),
.page-content-single .entry-content .am-page-hero:has(+ .am-latest-news) :is(.amx-hero-sub, p),
.page-content-single .entry-content .am-page-hero:has(+ p > .am-latest-news) :is(.amx-hero-sub, p) {
margin: 0;
max-width: 62ch;
color: var(--text-muted, #777) !important;
font-size: 16px;
line-height: 1.55;
font-weight: 500;
text-align: left;
opacity: 1;
text-shadow: none;
}
.amx-badge {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 13px;
font-weight: 700;
color: var(--primary-color, #D93802);
background: rgba(217, 56, 2, 0.08);
background: color-mix(in srgb, var(--primary-color, #D93802) 10%, transparent);
border: 1px solid rgba(217, 56, 2, 0.22);
border-color: color-mix(in srgb, var(--primary-color, #D93802) 25%, transparent);
padding: 7px 14px;
border-radius: 999px;
margin: 0 0 24px;
}
.amx-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.amx-lede {
font-size: 20px;
line-height: 1.7;
color: var(--text-main, #292929);
margin: 0 0 28px;
}
.amx-toc {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin: 0 0 34px;
padding: 16px;
border: 1px solid var(--border-light, #EAEAEA);
border-radius: 14px;
background: var(--bg-card, #fff);
}
.amx-toc a {
font-size: 13px;
font-weight: 700;
text-decoration: none;
color: var(--text-main, #292929);
background: #f4f4f4;
border-radius: 999px;
padding: 7px 14px;
transition: background 0.15s ease, color 0.15s ease;
}
.amx-toc a:hover {
background: var(--primary-color, #D93802);
color: #fff;
}
.amx-grid-2, .amx-grid-3, .amx-grid-4 {
display: grid;
gap: 18px;
margin: 26px 0 34px;
}
.amx-grid-2 { grid-template-columns: repeat(2, 1fr); }
.amx-grid-3 { grid-template-columns: repeat(3, 1fr); }
.amx-grid-4 { grid-template-columns: repeat(4, 1fr); }
.amx-card {
border: 1px solid var(--border-light, #EAEAEA);
border-radius: 16px;
background: var(--bg-card, #fff);
padding: 26px 22px;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.amx-card:hover {
transform: translateY(-3px);
box-shadow: 0 14px 34px rgba(0, 0, 0, 0.09);
}
.amx-card h3, .amx-card h4 {
margin: 0 0 8px;
font-size: 17px;
}
.amx-card p {
margin: 0;
font-size: 14.5px;
line-height: 1.65;
color: var(--text-muted, #757575);
}
.amx-card > a {
display: inline-block;
margin-top: 14px;
font-size: 14px;
font-weight: 700;
color: var(--primary-color, #D93802);
text-decoration: none;
}
.amx-ico {
display: inline-flex;
align-items: center;
justify-content: center;
width: 46px;
height: 46px;
border-radius: 13px;
margin-bottom: 14px;
color: var(--primary-color, #D93802);
background: rgba(217, 56, 2, 0.09);
background: color-mix(in srgb, var(--primary-color, #D93802) 10%, transparent);
}
.amx-ico svg { width: 24px; height: 24px; }
.amx-stat {
text-align: center;
padding: 26px 14px;
border: 1px solid var(--border-light, #EAEAEA);
border-radius: 16px;
background: var(--bg-card, #fff);
}
.amx-stat-number {
display: block;
font-size: 34px;
font-weight: 800;
letter-spacing: -1px;
color: var(--primary-color, #D93802);
line-height: 1.1;
}
.amx-stat-label {
display: block;
margin-top: 6px;
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--text-muted, #757575);
}
.amx-h {
display: flex;
align-items: center;
gap: 12px;
margin: 40px 0 14px;
scroll-margin-top: 90px;
}
.amx-h .amx-h-num {
flex: 0 0 34px;
width: 34px;
height: 34px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 10px;
font-size: 15px;
font-weight: 800;
color: #fff;
background: var(--primary-color, #D93802);
}
.amx-h h2, .amx-h h3 {
margin: 0;
font-size: 22px;
}
.amx-note {
display: flex;
gap: 14px;
align-items: flex-start;
border-radius: 14px;
padding: 18px 20px;
margin: 22px 0;
font-size: 15px;
line-height: 1.65;
border: 1px solid;
}
.amx-note svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.amx-note--info  { background: #eff6ff; border-color: #bfdbfe; color: #1e3a5f; }
.amx-note--info svg { color: #2563eb; }
.amx-note--warn  { background: #fffbeb; border-color: #fde68a; color: #713f12; }
.amx-note--warn svg { color: #d97706; }
.amx-note--ok    { background: #ecfdf5; border-color: #a7f3d0; color: #064e3b; }
.amx-note--ok svg { color: #059669; }
.amx-steps {
counter-reset: amxstep;
margin: 26px 0 34px;
padding: 0;
list-style: none;
}
.amx-steps li {
position: relative;
padding: 0 0 26px 58px;
counter-increment: amxstep;
}
.amx-steps li::before {
content: counter(amxstep);
position: absolute;
left: 0;
top: 0;
width: 38px;
height: 38px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-weight: 800;
font-size: 16px;
color: #fff;
background: var(--primary-color, #D93802);
}
.amx-steps li::after {
content: "";
position: absolute;
left: 18px;
top: 44px;
bottom: 6px;
width: 2px;
background: var(--border-light, #EAEAEA);
}
.amx-steps li:last-child { padding-bottom: 0; }
.amx-steps li:last-child::after { display: none; }
.amx-steps strong { display: block; font-size: 16px; margin-bottom: 4px; }
.amx-steps p { margin: 0; color: var(--text-muted, #757575); font-size: 14.5px; line-height: 1.6; }
.amx-table-wrap { overflow-x: auto; margin: 24px 0 32px; }
.amx-table {
width: 100%;
border-collapse: separate;
border-spacing: 0;
font-size: 14.5px;
border: 1px solid var(--border-light, #EAEAEA);
border-radius: 14px;
overflow: hidden;
}
.amx-table th {
text-align: left;
font-size: 12.5px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 1px;
color: #fff;
background: var(--dark-bg, #292929);
padding: 13px 16px;
}
.amx-table td {
padding: 13px 16px;
border-top: 1px solid var(--border-light, #EAEAEA);
vertical-align: top;
line-height: 1.55;
}
.amx-table tr:nth-child(even) td { background: #fafafa; }
.amx-check {
list-style: none;
padding: 0;
margin: 20px 0 30px;
}
.amx-check li {
position: relative;
padding: 6px 0 6px 34px;
line-height: 1.6;
}
.amx-check li::before {
content: "\2713";
position: absolute;
left: 0;
top: 6px;
width: 22px;
height: 22px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-size: 13px;
font-weight: 800;
color: #fff;
background: var(--primary-color, #D93802);
}
.amx-cta {
text-align: center;
border-radius: 18px;
padding: 44px 32px;
margin: 44px 0 10px;
color: #fff;
background: linear-gradient(135deg, var(--dark-bg, #292929), #3d3d3d);
}
.amx-cta h3 { margin: 0 0 10px; font-size: 24px; color: #fff; }
.amx-cta p { margin: 0 auto 22px; max-width: 520px; opacity: 0.9; }
.amx-btn {
display: inline-block;
padding: 13px 30px;
margin: 4px 6px;
border-radius: 999px;
font-size: 15px;
font-weight: 700;
text-decoration: none;
color: #fff;
background: var(--primary-color, #D93802);
transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.amx-btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
color: #fff;
}
.amx-btn--ghost {
background: transparent;
border: 2px solid rgba(255, 255, 255, 0.55);
}
.amx-contact-list {
border: 1px solid var(--border-light, #EAEAEA);
border-radius: 16px;
background: var(--bg-card, #fff);
margin: 24px 0 32px;
overflow: hidden;
}
.amx-contact-list .amx-contact-row {
display: flex;
align-items: center;
gap: 16px;
padding: 16px 20px;
border-top: 1px solid var(--border-light, #EAEAEA);
}
.amx-contact-list .amx-contact-row:first-child { border-top: 0; }
.amx-contact-row .amx-ico { margin-bottom: 0; flex-shrink: 0; }
.amx-contact-row strong {
display: block;
font-size: 12.5px;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--text-muted, #757575);
margin-bottom: 2px;
}
.amx-contact-row a { color: var(--primary-color, #D93802); font-weight: 600; text-decoration: none; }
.amx-divider {
text-align: center;
color: var(--primary-color, #D93802);
font-size: 18px;
letter-spacing: 14px;
margin: 40px 0;
}
.amx-sitemap {
display: grid;
grid-template-columns: 1fr 1.4fr;
gap: 26px;
margin: 26px 0;
}
.amx-sitemap-col {
border: 1px solid var(--border-light, #EAEAEA);
border-radius: 16px;
background: var(--bg-card, #fff);
padding: 24px;
}
.amx-sitemap-col h3 {
margin: 0 0 14px;
padding-bottom: 12px;
border-bottom: 2px solid var(--primary-color, #D93802);
font-size: 17px;
}
.amx-sitemap-col h3 + h3, .amx-sitemap-col ul + h3 { margin-top: 28px; }
.amx-sitemap-col ul { list-style: none; margin: 0; padding: 0; }
.amx-sitemap-col li { padding: 7px 0; border-bottom: 1px dashed var(--border-light, #EAEAEA); line-height: 1.5; }
.amx-sitemap-col li:last-child { border-bottom: 0; }
.amx-sitemap-col a { text-decoration: none; color: var(--text-main, #292929); font-weight: 600; }
.amx-sitemap-col a:hover { color: var(--primary-color, #D93802); }
body.dark-mode .amx-lede { color: #ddd; }
body.dark-mode .amx-toc,
body.dark-mode .amx-card,
body.dark-mode .amx-stat,
body.dark-mode .amx-contact-list,
body.dark-mode .amx-sitemap-col {
background: #1d1d1d;
border-color: #333;
}
body.dark-mode .amx-toc a { background: #2a2a2a; color: #ddd; }
body.dark-mode .amx-toc a:hover { background: var(--primary-color, #D93802); color: #fff; }
body.dark-mode .amx-card p,
body.dark-mode .amx-steps p { color: #a5a5a5; }
body.dark-mode .amx-sitemap-col a { color: #ddd; }
body.dark-mode .amx-table { border-color: #333; }
body.dark-mode .amx-table td { border-color: #333; }
body.dark-mode .amx-table tr:nth-child(even) td { background: #222; }
body.dark-mode .amx-contact-list .amx-contact-row { border-color: #333; }
body.dark-mode .amx-sitemap-col li { border-color: #333; }
body.dark-mode .amx-note--info { background: #17222f; border-color: #1e3a5f; color: #b9d5f5; }
body.dark-mode .amx-note--warn { background: #2b2113; border-color: #6b4c12; color: #f3d9a4; }
body.dark-mode .amx-note--ok   { background: #12261e; border-color: #14532d; color: #ade8c9; }
@media screen and (max-width: 860px) {
.amx-grid-4 { grid-template-columns: repeat(2, 1fr); }
.amx-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 600px) {
.amx-hero { padding: 38px 22px; border-radius: 14px; }
.amx-hero-title { font-size: 28px; }
.amx-hero-sub { font-size: 16px; }
.amx-grid-2, .amx-grid-3 { grid-template-columns: 1fr; }
.amx-grid-4 { grid-template-columns: repeat(2, 1fr); }
.amx-stat-number { font-size: 27px; }
.amx-sitemap { grid-template-columns: 1fr; }
.amx-lede { font-size: 18px; }
.amx-cta { padding: 34px 20px; }
}
.page-content-single .entry-content .amx-hero h2,
.page-content-single .entry-content .amx-h h2,
.page-content-single .entry-content .amx-h h3,
.page-content-single .entry-content .amx-card h3,
.page-content-single .entry-content .amx-card h4,
.page-content-single .entry-content .amx-cta h3,
.page-content-single .entry-content .amx-sitemap-col h3 {
padding: 0;
border-bottom: 0;
text-transform: none;
letter-spacing: normal;
color: inherit;
font-weight: 800;
}
.page-content-single .entry-content .amx-hero h2::before,
.page-content-single .entry-content .amx-hero h2::after,
.page-content-single .entry-content .amx-h h2::before,
.page-content-single .entry-content .amx-h h2::after,
.page-content-single .entry-content .amx-h h3::before,
.page-content-single .entry-content .amx-h h3::after,
.page-content-single .entry-content .amx-card h3::before,
.page-content-single .entry-content .amx-card h3::after,
.page-content-single .entry-content .amx-card h4::before,
.page-content-single .entry-content .amx-card h4::after,
.page-content-single .entry-content .amx-cta h3::before,
.page-content-single .entry-content .amx-cta h3::after,
.page-content-single .entry-content .amx-sitemap-col h3::before,
.page-content-single .entry-content .amx-sitemap-col h3::after {
content: none;
}
.page-content-single .entry-content .amx-hero h2 {
font-size: 40px;
line-height: 1.15;
letter-spacing: -0.5px;
margin: 0 0 14px;
}
.page-content-single .entry-content .amx-h h2,
.page-content-single .entry-content .amx-h h3 {
font-size: 22px;
font-weight: 700;
margin: 0;
}
.page-content-single .entry-content .amx-card h3,
.page-content-single .entry-content .amx-card h4 {
font-size: 17px;
font-weight: 700;
margin: 0 0 8px;
}
.page-content-single .entry-content .amx-cta h3 {
font-size: 24px;
margin: 0 0 10px;
color: #fff;
}
.page-content-single .entry-content .amx-sitemap-col h3 {
font-size: 17px;
font-weight: 700;
margin: 0 0 14px;
padding-bottom: 12px;
border-bottom: 2px solid var(--primary-color, #D93802);
}
.page-content-single .entry-content .amx-sitemap-col h3 + h3,
.page-content-single .entry-content .amx-sitemap-col ul + h3 {
margin-top: 28px;
}
.page-content-single .entry-content .amx-hero-sub {
margin: 0 auto;
}
.page-content-single .entry-content ul.amx-check {
list-style: none;
padding: 0;
margin: 20px 0 30px;
}
.page-content-single .entry-content ul.amx-check li {
padding: 6px 0 6px 34px;
margin: 0;
position: relative;
}
.page-content-single .entry-content ul.amx-check li::before {
content: "\2713";
position: absolute;
left: 0;
top: 6px;
width: 22px;
height: 22px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-size: 13px;
font-weight: 800;
color: #fff;
background: var(--primary-color, #D93802);
}
.page-content-single .entry-content ol.amx-steps {
list-style: none;
padding: 0;
margin: 26px 0 34px;
}
.page-content-single .entry-content ol.amx-steps li {
padding: 0 0 26px 58px;
margin: 0;
position: relative;
}
.page-content-single .entry-content ol.amx-steps li:last-child {
padding-bottom: 0;
}
.page-content-single .entry-content ol.amx-steps li::marker {
content: none;
}
.page-content-single .entry-content .amx-sitemap-col ul {
list-style: none;
padding: 0;
margin: 0;
}
.page-content-single .entry-content .amx-sitemap-col ul li {
padding: 7px 0;
margin: 0;
border-bottom: 1px dashed var(--border-light, #EAEAEA);
}
.page-content-single .entry-content .amx-sitemap-col ul li::before {
content: none;
}
.page-content-single .entry-content .amx-toc a {
color: var(--text-main, #292929);
text-decoration: none;
font-weight: 700;
}
.page-content-single .entry-content .amx-toc a:hover {
color: #fff;
}
.page-content-single .entry-content a.amx-btn {
color: #fff;
text-decoration: none;
font-weight: 700;
}
.page-content-single .entry-content a.amx-btn:hover {
color: #fff;
}
.page-content-single .entry-content .amx-card > a {
text-decoration: none;
color: var(--primary-color, #D93802);
}
.page-content-single .entry-content .amx-sitemap-col a {
color: var(--text-main, #292929);
text-decoration: none;
font-weight: 600;
}
.page-content-single .entry-content .amx-sitemap-col a:hover {
color: var(--primary-color, #D93802);
}
.page-content-single .entry-content .amx-contact-row a {
text-decoration: none;
}
.page-content-single .entry-content .amx-contact-row strong {
color: var(--text-muted, #757575);
}
body.dark-mode .page-content-single .entry-content .amx-toc a { color: #ddd; }
body.dark-mode .page-content-single .entry-content .amx-toc a:hover { color: #fff; }
body.dark-mode .page-content-single .entry-content .amx-sitemap-col a { color: #ddd; }
body.dark-mode .page-content-single .entry-content .amx-sitemap-col a:hover { color: var(--primary-color, #D93802); }
@media screen and (max-width: 600px) {
.page-content-single .entry-content .amx-hero h2 {
font-size: 28px;
}
}
.amx-page {
--amx-ink: #151515;
--amx-paper: #ffffff;
--amx-soft: #f6f4f1;
--amx-line: rgba(21, 21, 21, 0.1);
--amx-shadow: 0 24px 70px rgba(28, 22, 18, 0.1);
position: relative;
isolation: isolate;
color: var(--text-main, var(--amx-ink));
}
body.amx-generated-page .page-content-single {
max-width: 1080px;
padding: 28px 28px 72px;
background: transparent;
border-radius: 0;
box-shadow: none;
}
body.amx-generated-page .page-content-single > .entry-header {
display: none;
}
body.amx-generated-page .page-content-single > .entry-content {
font-size: 17px;
line-height: 1.78;
}
body.amx-generated-page .article-breadcrumbs {
max-width: 1024px;
margin-right: auto;
margin-left: auto;
}
.amx-page::before {
content: "";
position: absolute;
z-index: -1;
top: 300px;
left: 50%;
width: min(1100px, calc(100vw - 24px));
height: 560px;
transform: translateX(-50%);
pointer-events: none;
background:
radial-gradient(circle at 12% 22%, color-mix(in srgb, var(--primary-color, #D93802) 9%, transparent), transparent 34%),
radial-gradient(circle at 91% 58%, rgba(18, 91, 134, 0.07), transparent 31%);
filter: blur(10px);
}
.amx-page .amx-hero {
min-height: 360px;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: flex-start;
text-align: left;
padding: 64px 54px 58px;
margin: 0 0 42px;
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 28px;
box-shadow: 0 28px 80px rgba(16, 12, 10, 0.22);
background:
radial-gradient(circle at 82% 4%, color-mix(in srgb, var(--primary-color, #D93802) 78%, #ffb38f), transparent 28%),
linear-gradient(128deg, #151515 0%, #24201e 59%, color-mix(in srgb, var(--primary-color, #D93802) 58%, #151515) 145%);
}
.amx-page .amx-hero::before {
content: "";
position: absolute;
inset: 0;
z-index: 0;
pointer-events: none;
opacity: 0.34;
background-image: radial-gradient(rgba(255, 255, 255, 0.32) 0.8px, transparent 0.8px);
background-size: 17px 17px;
-webkit-mask-image: linear-gradient(105deg, transparent 25%, #000 100%);
mask-image: linear-gradient(105deg, transparent 25%, #000 100%);
}
.amx-page .amx-hero::after {
content: "";
position: absolute;
z-index: 0;
width: 250px;
height: 250px;
right: -92px;
bottom: -122px;
border: 44px solid rgba(255, 255, 255, 0.08);
border-radius: 50%;
pointer-events: none;
}
.amx-page .amx-hero--slim {
min-height: 300px;
padding-top: 52px;
}
.amx-page .amx-hero .amx-hero-img {
z-index: 0;
left: auto;
width: 52%;
opacity: 0.68;
filter: saturate(0.8) contrast(1.08);
-webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.6) 35%, #000 100%);
mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.6) 35%, #000 100%);
}
.amx-page .amx-hero:has(.amx-hero-img)::before {
opacity: 0.18;
}
.amx-page .amx-hero > :not(.amx-hero-img) {
max-width: 690px;
}
.amx-page .amx-hero-kicker {
display: inline-flex;
align-items: center;
gap: 9px;
margin-bottom: 22px;
padding: 8px 13px;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 8px;
color: #fff;
background: rgba(255, 255, 255, 0.1);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
backdrop-filter: blur(12px);
font-size: 11px;
letter-spacing: 0.19em;
}
.amx-page .amx-hero-kicker::before {
content: "";
width: 7px;
height: 7px;
border-radius: 50%;
background: var(--primary-color, #D93802);
box-shadow: 0 0 0 5px color-mix(in srgb, var(--primary-color, #D93802) 22%, transparent);
}
.page-content-single .entry-content .amx-page .amx-hero h2,
.amx-page .amx-hero-title {
max-width: 740px;
margin: 0 0 18px;
font-size: clamp(44px, 5.8vw, 66px);
line-height: 0.98;
letter-spacing: -0.055em;
font-weight: 850;
text-wrap: balance;
}
.page-content-single .entry-content .amx-page .amx-hero-sub,
.amx-page .amx-hero-sub {
max-width: 650px;
margin: 0;
font-size: 18px;
line-height: 1.6;
color: rgba(255, 255, 255, 0.82);
opacity: 1;
text-wrap: pretty;
}
.page-content-single .entry-content .amx-page > p.amx-lede,
.amx-page > .amx-lede {
position: relative;
max-width: 780px;
margin: 0 0 38px;
padding: 5px 0 5px 28px;
font-size: 22px;
line-height: 1.65;
letter-spacing: -0.015em;
}
.amx-page > .amx-lede::before {
content: "";
position: absolute;
inset: 0 auto 0 0;
width: 5px;
border-radius: 9px;
background: linear-gradient(180deg, var(--primary-color, #D93802), color-mix(in srgb, var(--primary-color, #D93802) 28%, #f6b96b));
}
.page-content-single .entry-content .amx-page > p:not(.amx-lede),
.amx-page > p:not(.amx-lede) {
max-width: 850px;
margin-bottom: 24px;
font-size: 17px;
line-height: 1.82;
}
.page-content-single .entry-content .amx-page li strong {
color: inherit;
}
.amx-page .amx-badge {
padding: 9px 14px;
margin: -18px 0 28px;
border-radius: 9px;
background: color-mix(in srgb, var(--primary-color, #D93802) 8%, var(--amx-paper));
box-shadow: 0 8px 25px rgba(28, 22, 18, 0.05);
letter-spacing: 0.015em;
}
.amx-page > .amx-grid-3:has(.amx-stat),
.amx-page > .amx-grid-4:has(.amx-stat) {
position: relative;
gap: 0;
overflow: hidden;
margin: 28px 0 48px;
padding: 10px;
border: 1px solid var(--amx-line);
border-radius: 24px;
background: linear-gradient(135deg, #fff, #f8f5f1);
box-shadow: var(--amx-shadow);
}
.amx-page .amx-stat {
position: relative;
border: 0;
border-radius: 16px;
padding: 28px 12px;
background: transparent;
}
.amx-page .amx-stat + .amx-stat::before {
content: "";
position: absolute;
top: 19%;
bottom: 19%;
left: 0;
width: 1px;
background: var(--amx-line);
}
.amx-page .amx-stat-number {
font-size: 38px;
letter-spacing: -0.055em;
}
.amx-page .amx-stat-label {
margin-top: 9px;
font-size: 11px;
letter-spacing: 0.13em;
}
.page-content-single .entry-content .amx-page .amx-h,
.amx-page .amx-h {
position: relative;
gap: 15px;
margin: 58px 0 22px;
padding-bottom: 15px;
border-bottom: 1px solid var(--amx-line);
}
.amx-page .amx-h::after {
content: "";
position: absolute;
left: 0;
bottom: -1px;
width: 84px;
height: 3px;
border-radius: 3px;
background: var(--primary-color, #D93802);
}
.amx-page .amx-h .amx-h-num {
flex-basis: 38px;
width: 38px;
height: 38px;
border-radius: 12px;
color: var(--primary-color, #D93802);
background: color-mix(in srgb, var(--primary-color, #D93802) 10%, transparent);
box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--primary-color, #D93802) 19%, transparent);
font-size: 13px;
}
.page-content-single .entry-content .amx-page .amx-h h2,
.page-content-single .entry-content .amx-page .amx-h h3 {
font-size: clamp(23px, 3vw, 29px);
letter-spacing: -0.035em;
font-weight: 800;
}
.amx-page .amx-grid-2,
.amx-page .amx-grid-3,
.amx-page .amx-grid-4 {
gap: 20px;
margin: 24px 0 42px;
}
.amx-page .amx-card {
position: relative;
overflow: hidden;
min-height: 100%;
padding: 30px 26px 27px;
border-color: var(--amx-line);
border-radius: 20px;
background: linear-gradient(150deg, var(--amx-paper) 0%, color-mix(in srgb, var(--primary-color, #D93802) 2.8%, var(--amx-paper)) 100%);
box-shadow: 0 12px 34px rgba(28, 22, 18, 0.055);
transition: transform 0.28s cubic-bezier(.2,.8,.2,1), box-shadow 0.28s ease, border-color 0.28s ease;
}
.amx-page .amx-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
opacity: 0.72;
background: linear-gradient(90deg, var(--primary-color, #D93802), transparent 78%);
}
.amx-page .amx-card::after {
content: "";
position: absolute;
z-index: 0;
right: -42px;
top: -52px;
width: 120px;
height: 120px;
border-radius: 50%;
background: color-mix(in srgb, var(--primary-color, #D93802) 6%, transparent);
}
.amx-page .amx-card > * {
position: relative;
z-index: 1;
}
.amx-page .amx-card:hover {
transform: translateY(-6px);
border-color: color-mix(in srgb, var(--primary-color, #D93802) 30%, var(--amx-line));
box-shadow: 0 22px 48px rgba(28, 22, 18, 0.12);
}
.amx-page .amx-card .amx-ico {
width: 50px;
height: 50px;
margin-bottom: 22px;
border-radius: 15px;
background: color-mix(in srgb, var(--primary-color, #D93802) 10%, #fff);
box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--primary-color, #D93802) 13%, transparent), 0 8px 18px rgba(28, 22, 18, 0.06);
}
.page-content-single .entry-content .amx-page .amx-card h3,
.page-content-single .entry-content .amx-page .amx-card h4 {
margin-bottom: 10px;
font-size: 18px;
line-height: 1.3;
letter-spacing: -0.02em;
}
.page-content-single .entry-content .amx-page .amx-card p,
.amx-page .amx-card p {
font-size: 14.5px;
line-height: 1.72;
}
.page-content-single .entry-content .amx-page .amx-card > a,
.amx-page .amx-card > a {
display: inline-flex;
align-items: center;
min-height: 42px;
margin-top: 20px;
padding: 0 15px;
border-radius: 10px;
background: color-mix(in srgb, var(--primary-color, #D93802) 9%, transparent);
}
.amx-page .amx-toc {
position: sticky;
top: 76px;
z-index: 20;
gap: 7px;
margin: 0 0 42px;
padding: 13px;
border-color: var(--amx-line);
border-radius: 16px;
background: rgba(255, 255, 255, 0.88);
box-shadow: 0 14px 40px rgba(28, 22, 18, 0.09);
backdrop-filter: blur(18px) saturate(1.25);
}
.amx-page .amx-toc::before {
content: "On this page";
display: inline-flex;
align-items: center;
padding: 8px 10px;
color: var(--text-muted, #757575);
font-size: 10px;
font-weight: 800;
letter-spacing: 0.12em;
text-transform: uppercase;
}
.page-content-single .entry-content .amx-page .amx-toc a,
.amx-page .amx-toc a {
padding: 8px 12px;
border: 1px solid transparent;
border-radius: 9px;
background: transparent;
font-size: 12px;
}
.page-content-single .entry-content .amx-page .amx-toc a:hover,
.amx-page .amx-toc a:hover {
border-color: color-mix(in srgb, var(--primary-color, #D93802) 22%, transparent);
color: var(--primary-color, #D93802);
background: color-mix(in srgb, var(--primary-color, #D93802) 8%, transparent);
}
.amx-page > ol:not(.amx-steps),
.amx-page > ul:not(.amx-check) {
margin: 16px 0 34px;
padding: 24px 28px 12px 50px;
border: 1px solid var(--amx-line);
border-radius: 18px;
background: color-mix(in srgb, var(--primary-color, #D93802) 2.5%, var(--amx-paper));
}
.amx-page > ol:not(.amx-steps) li,
.amx-page > ul:not(.amx-check) li {
margin-bottom: 12px;
}
.page-content-single .entry-content .amx-page ol.amx-steps,
.amx-page .amx-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 16px;
margin: 26px 0 42px;
}
.page-content-single .entry-content .amx-page ol.amx-steps li,
.amx-page .amx-steps li {
min-height: 178px;
padding: 66px 22px 22px;
border: 1px solid var(--amx-line);
border-radius: 18px;
background: var(--amx-paper);
box-shadow: 0 10px 30px rgba(28, 22, 18, 0.05);
}
.amx-page .amx-steps li::before {
top: 20px;
left: 22px;
width: 34px;
height: 34px;
border-radius: 11px;
font-size: 13px;
box-shadow: 0 8px 18px color-mix(in srgb, var(--primary-color, #D93802) 27%, transparent);
}
.amx-page .amx-steps li::after {
display: none;
}
.amx-page .amx-steps strong {
font-size: 17px;
letter-spacing: -0.015em;
}
.amx-page .amx-check {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
margin: 22px 0 42px;
}
.page-content-single .entry-content .amx-page ul.amx-check li,
.amx-page .amx-check li {
margin: 0;
padding: 18px 18px 18px 52px;
border: 1px solid var(--amx-line);
border-radius: 15px;
background: var(--amx-paper);
font-size: 15px;
}
.page-content-single .entry-content .amx-page ul.amx-check li::before,
.amx-page .amx-check li::before {
top: 19px;
left: 18px;
}
.amx-page .amx-note {
position: relative;
overflow: hidden;
gap: 16px;
padding: 21px 23px;
margin: 24px 0;
border-width: 1px 1px 1px 4px;
border-radius: 14px;
box-shadow: 0 10px 30px rgba(28, 22, 18, 0.045);
}
.amx-page .amx-note > svg {
width: 25px;
height: 25px;
}
.amx-page .amx-contact-list {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0;
margin: 24px 0 42px;
border-radius: 20px;
box-shadow: 0 16px 44px rgba(28, 22, 18, 0.07);
}
.amx-page .amx-contact-list .amx-contact-row {
min-height: 94px;
padding: 20px 22px;
border-top: 0;
border-left: 1px solid var(--amx-line);
border-bottom: 1px solid var(--amx-line);
}
.amx-page .amx-contact-list .amx-contact-row:nth-child(odd) {
border-left: 0;
}
.amx-page .amx-contact-list .amx-contact-row:nth-last-child(-n + 2) {
border-bottom: 0;
}
.amx-page .amx-table-wrap {
margin: 26px 0 42px;
border-radius: 18px;
box-shadow: 0 18px 46px rgba(28, 22, 18, 0.08);
}
.amx-page .amx-table {
min-width: 760px;
table-layout: fixed;
border: 0;
border-radius: 18px;
}
.amx-page .amx-table th,
.amx-page .amx-table td {
overflow-wrap: normal;
word-wrap: normal;
word-break: normal;
hyphens: none;
}
.amx-page .amx-table th:nth-child(1),
.amx-page .amx-table td:nth-child(1) { width: 13%; }
.amx-page .amx-table th:nth-child(2),
.amx-page .amx-table td:nth-child(2) { width: 43%; }
.amx-page .amx-table th:nth-child(3),
.amx-page .amx-table td:nth-child(3) { width: 15%; }
.amx-page .amx-table th:nth-child(4),
.amx-page .amx-table td:nth-child(4) { width: 29%; }
.amx-page .amx-table td:first-child strong {
white-space: nowrap;
}
.amx-page .amx-table th {
padding: 17px 18px;
background: #191919;
}
.amx-page .amx-table td {
padding: 17px 18px;
}
.amx-page .amx-sitemap {
grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.55fr);
gap: 22px;
margin-top: 0;
}
.amx-page .amx-sitemap-col {
padding: 28px;
border-color: var(--amx-line);
border-radius: 20px;
box-shadow: 0 15px 40px rgba(28, 22, 18, 0.06);
}
.page-content-single .entry-content .amx-page .amx-sitemap-col h3 {
display: flex;
align-items: center;
justify-content: space-between;
padding-bottom: 14px;
border-bottom-width: 1px;
font-size: 19px;
}
.page-content-single .entry-content .amx-page .amx-sitemap-col ul li {
padding: 11px 2px;
border-bottom-style: solid;
}
.amx-page .amx-cta {
position: relative;
overflow: hidden;
padding: 58px 40px;
margin-top: 54px;
border-radius: 26px;
background:
radial-gradient(circle at 80% 0%, color-mix(in srgb, var(--primary-color, #D93802) 78%, #ffbb92), transparent 32%),
linear-gradient(135deg, #151515 0%, #292421 100%);
box-shadow: 0 28px 70px rgba(18, 14, 12, 0.2);
}
.amx-page .amx-cta::before,
.amx-page .amx-cta::after {
content: "";
position: absolute;
border: 1px solid rgba(255, 255, 255, 0.13);
border-radius: 50%;
}
.amx-page .amx-cta::before {
width: 240px;
height: 240px;
right: -96px;
top: -128px;
}
.amx-page .amx-cta::after {
width: 160px;
height: 160px;
left: -92px;
bottom: -105px;
}
.page-content-single .entry-content .amx-page .amx-cta h3 {
position: relative;
z-index: 1;
font-size: 30px;
letter-spacing: -0.035em;
}
.amx-page .amx-cta p,
.amx-page .amx-cta a {
position: relative;
z-index: 1;
}
.page-content-single .entry-content .amx-page a.amx-btn,
.amx-page .amx-btn {
min-height: 48px;
padding: 13px 25px;
border: 1px solid transparent;
border-radius: 12px;
box-shadow: 0 12px 24px color-mix(in srgb, var(--primary-color, #D93802) 25%, transparent);
}
.page-content-single .entry-content .amx-page a.amx-btn--ghost,
.amx-page .amx-btn--ghost {
border-color: rgba(255, 255, 255, 0.38);
box-shadow: none;
}
.amx-page--latest-news .am-ln-head {
padding: 14px 18px;
border-radius: 14px;
box-shadow: 0 12px 34px rgba(28, 22, 18, 0.07);
}
.amx-page--latest-news .am-ln-hero {
border: 1px solid var(--amx-line);
border-radius: 22px;
box-shadow: 0 22px 58px rgba(28, 22, 18, 0.11);
}
.amx-page--latest-news .am-ln-hero-body {
padding: 34px;
}
.page-content-single .entry-content .amx-page--latest-news .am-ln-hero-title {
font-size: clamp(24px, 3.4vw, 34px);
line-height: 1.16;
letter-spacing: -0.035em;
}
.amx-page--latest-news .am-ln-more {
min-height: 50px;
padding-inline: 28px;
border-radius: 12px;
}
.amx-page a:focus-visible,
.amx-page button:focus-visible {
outline: 3px solid color-mix(in srgb, var(--primary-color, #D93802) 55%, #fff);
outline-offset: 3px;
}
body.dark-mode .amx-page {
--amx-ink: #f3f0ed;
--amx-paper: #1d1c1b;
--amx-soft: #252321;
--amx-line: rgba(255, 255, 255, 0.1);
--amx-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}
body.dark-mode .amx-page > .amx-grid-3:has(.amx-stat),
body.dark-mode .amx-page > .amx-grid-4:has(.amx-stat),
body.dark-mode .amx-page .amx-card,
body.dark-mode .amx-page .amx-steps li,
body.dark-mode .amx-page .amx-check li,
body.dark-mode .amx-page .amx-contact-list,
body.dark-mode .amx-page .amx-sitemap-col {
background: linear-gradient(150deg, #1f1e1d, #191817);
border-color: var(--amx-line);
}
body.dark-mode .amx-page .amx-toc {
background: rgba(25, 24, 23, 0.9);
border-color: var(--amx-line);
}
body.dark-mode .page-content-single .entry-content .amx-page .amx-toc a:hover {
color: #fff;
}
body.dark-mode .amx-page > ol:not(.amx-steps),
body.dark-mode .amx-page > ul:not(.amx-check) {
background: #1d1c1b;
border-color: var(--amx-line);
}
body.dark-mode .amx-page .amx-table tr:nth-child(even) td {
background: #242220;
}
@media (max-width: 860px) {
.amx-page .amx-hero {
min-height: 330px;
padding: 52px 38px 44px;
}
.page-content-single .entry-content .amx-page .amx-hero h2,
.amx-page .amx-hero-title {
font-size: clamp(39px, 7vw, 52px);
}
.amx-page .amx-grid-4:has(.amx-stat) {
grid-template-columns: repeat(4, 1fr);
}
.amx-page .amx-stat-number {
font-size: 29px;
}
}
@media (max-width: 600px) {
body.amx-generated-page .page-content-single {
margin: 0 -16px;
padding: 18px 16px 52px;
border-radius: 0;
box-shadow: none;
}
.amx-page::before {
display: none;
}
.amx-page .amx-hero,
.amx-page .amx-hero--slim {
min-height: 330px;
padding: 42px 24px 34px;
margin-bottom: 30px;
border-radius: 20px;
}
.amx-page .amx-hero .amx-hero-img {
width: 100%;
opacity: 0.4;
-webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
}
.amx-page .amx-hero::after {
width: 190px;
height: 190px;
}
.page-content-single .entry-content .amx-page .amx-hero h2,
.amx-page .amx-hero-title {
font-size: 39px;
line-height: 1.02;
}
.page-content-single .entry-content .amx-page .amx-hero-sub,
.amx-page .amx-hero-sub {
font-size: 15.5px;
line-height: 1.55;
}
.page-content-single .entry-content .amx-page > p.amx-lede,
.amx-page > .amx-lede {
padding-left: 20px;
font-size: 18px;
}
.amx-page > .amx-grid-3:has(.amx-stat),
.amx-page > .amx-grid-4:has(.amx-stat) {
grid-template-columns: repeat(2, 1fr);
padding: 6px;
border-radius: 18px;
}
.amx-page .amx-stat {
padding: 22px 8px;
}
.amx-page .amx-stat + .amx-stat::before {
display: none;
}
.amx-page .amx-stat:nth-child(2n)::before {
content: "";
position: absolute;
display: block;
top: 19%;
bottom: 19%;
left: 0;
width: 1px;
background: var(--amx-line);
}
.page-content-single .entry-content .amx-page .amx-h,
.amx-page .amx-h {
margin-top: 46px;
}
.page-content-single .entry-content .amx-page .amx-h h2,
.page-content-single .entry-content .amx-page .amx-h h3 {
font-size: 23px;
}
.amx-page .amx-card {
padding: 27px 22px 24px;
}
.amx-page .amx-toc {
position: relative;
top: auto;
z-index: 1;
flex-wrap: nowrap;
overflow-x: auto;
margin-left: -4px;
margin-right: -4px;
padding: 10px;
scrollbar-width: none;
}
.amx-page .amx-toc::-webkit-scrollbar {
display: none;
}
.amx-page .amx-toc::before,
.amx-page .amx-toc a {
flex: 0 0 auto;
}
.page-content-single .entry-content .amx-page ol.amx-steps,
.amx-page .amx-steps,
.amx-page .amx-check,
.amx-page .amx-contact-list,
.amx-page .amx-sitemap {
grid-template-columns: 1fr;
}
.page-content-single .entry-content .amx-page ol.amx-steps li,
.amx-page .amx-steps li {
min-height: 0;
}
.amx-page .amx-contact-list .amx-contact-row,
.amx-page .amx-contact-list .amx-contact-row:nth-child(odd),
.amx-page .amx-contact-list .amx-contact-row:nth-last-child(-n + 2) {
border-left: 0;
border-bottom: 1px solid var(--amx-line);
}
.amx-page .amx-contact-list .amx-contact-row:last-child {
border-bottom: 0;
}
.amx-page .amx-cta {
padding: 42px 22px;
border-radius: 20px;
}
.page-content-single .entry-content .amx-page .amx-cta h3 {
font-size: 26px;
}
.page-content-single .entry-content .amx-page a.amx-btn,
.amx-page .amx-btn {
width: 100%;
justify-content: center;
margin: 5px 0;
}
.amx-page--latest-news .am-ln-hero-body {
padding: 23px 20px 26px;
}
}
@media (prefers-reduced-motion: reduce) {
.amx-page *,
.amx-page *::before,
.amx-page *::after {
scroll-behavior: auto !important;
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}
body.r34c8-card-style-clean {
--r34-card-bg-color: var(--bg-card, #fff);
--r34-card-bg-image: linear-gradient(145deg, #fff, #fbfbfc);
--r34-card-border: 1px solid rgba(25, 30, 38, .08);
--r34-card-radius: 16px;
--r34-card-shadow: 0 10px 28px rgba(25, 30, 38, .07);
--r34-card-hover-shadow: 0 18px 42px rgba(25, 30, 38, .12);
}
body.r34c8-card-style-mesh {
--r34-card-bg-color: var(--bg-card, #fff);
--r34-card-bg-image:
radial-gradient(circle at 14% 18%, color-mix(in srgb, var(--primary-color, #D93802) 16%, transparent) 0, transparent 36%),
radial-gradient(circle at 88% 16%, rgba(69, 142, 181, .12) 0, transparent 34%),
radial-gradient(circle at 72% 90%, rgba(247, 174, 104, .15) 0, transparent 38%),
linear-gradient(145deg, color-mix(in srgb, var(--primary-color, #D93802) 2%, var(--bg-card, #fff)), var(--bg-card, #fff));
--r34-card-border: 1px solid color-mix(in srgb, var(--primary-color, #D93802) 10%, rgba(25, 30, 38, .08));
--r34-card-radius: 18px;
--r34-card-shadow: 0 14px 36px rgba(30, 27, 24, .09);
--r34-card-hover-shadow: 0 22px 50px rgba(30, 27, 24, .14);
--r34-card-animation: r34c8CardMeshLoop 16s ease-in-out infinite alternate;
}
body.r34c8-card-style-glass {
--r34-card-bg-color: rgba(255, 255, 255, .64);
--r34-card-bg-image:
linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.38)),
radial-gradient(circle at 10% 5%, color-mix(in srgb, var(--primary-color, #D93802) 13%, transparent), transparent 42%),
radial-gradient(circle at 92% 96%, rgba(82, 153, 190, .12), transparent 42%);
--r34-card-border: 1px solid rgba(255, 255, 255, .78);
--r34-card-radius: 22px;
--r34-card-shadow: inset 0 1px 0 rgba(255,255,255,.86), 0 16px 40px rgba(54, 65, 83, .12);
--r34-card-hover-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 24px 56px rgba(54, 65, 83, .18);
--r34-card-backdrop: blur(18px) saturate(1.25);
}
body.r34c8-card-style-editorial {
--r34-card-bg-color: #fff;
--r34-card-bg-image: linear-gradient(to bottom, var(--primary-color, #D93802) 0 5px, #fff 5px 100%);
--r34-card-border: 1px solid #191919;
--r34-card-radius: 6px;
--r34-card-shadow: 6px 6px 0 #191919;
--r34-card-hover-shadow: 9px 9px 0 color-mix(in srgb, var(--primary-color, #D93802) 72%, #191919);
--r34-card-hover-transform: translate(-2px, -2px);
}
body.r34c8-card-style-linen {
--r34-card-bg-color: #fffaf1;
--r34-card-bg-image:
repeating-linear-gradient(0deg, rgba(91, 69, 47, .025) 0 1px, transparent 1px 4px),
repeating-linear-gradient(90deg, rgba(91, 69, 47, .016) 0 1px, transparent 1px 5px),
linear-gradient(145deg, #fffaf1, #f3e9d9);
--r34-card-border: 1px solid #ded3c3;
--r34-card-radius: 17px;
--r34-card-shadow: 0 12px 28px rgba(88, 64, 40, .09);
--r34-card-hover-shadow: 0 20px 42px rgba(88, 64, 40, .15);
}
body.r34c8-card-style-midnight {
--r34-card-bg-color: #181716;
--r34-card-bg-image:
radial-gradient(circle at 92% 0, color-mix(in srgb, var(--primary-color, #D93802) 28%, transparent), transparent 38%),
linear-gradient(145deg, #111, #292522);
--r34-card-border: 1px solid rgba(255,255,255,.11);
--r34-card-radius: 20px;
--r34-card-shadow: 0 18px 45px rgba(0,0,0,.28);
--r34-card-hover-shadow: 0 26px 60px rgba(0,0,0,.4), 0 0 0 1px color-mix(in srgb, var(--primary-color, #D93802) 26%, transparent);
}
body.r34c8-card-style-aurora {
--r34-card-bg-color: #f9fdff;
--r34-card-bg-image:
radial-gradient(circle at 5% 30%, rgba(45, 212, 191, .25), transparent 40%),
radial-gradient(circle at 95% 15%, rgba(168, 85, 247, .21), transparent 40%),
radial-gradient(circle at 65% 100%, color-mix(in srgb, var(--primary-color, #D93802) 18%, transparent), transparent 45%),
linear-gradient(145deg, #fbffff, #f8f7ff);
--r34-card-border: 1px solid rgba(99, 102, 241, .17);
--r34-card-radius: 21px;
--r34-card-shadow: 0 16px 42px rgba(73, 90, 125, .13);
--r34-card-hover-shadow: 0 24px 58px rgba(73, 90, 125, .2);
--r34-card-animation: r34c8CardAuroraLoop 14s ease-in-out infinite alternate;
}
body.r34c8-card-style-prism {
--r34-card-bg-color: #fff;
--r34-card-bg-image:
linear-gradient(#fff, #fff),
conic-gradient(from 30deg, var(--primary-color, #D93802), #f59e0b, #14b8a6, #6366f1, var(--primary-color, #D93802));
--r34-card-border: 3px solid transparent;
--r34-card-radius: 19px;
--r34-card-shadow: 0 14px 38px rgba(45, 50, 65, .11);
--r34-card-hover-shadow: 0 22px 52px rgba(45, 50, 65, .18);
}
body.r34c8-card-style-elevated {
--r34-card-bg-color: #fff;
--r34-card-bg-image: linear-gradient(145deg, #fff, #f8fafc);
--r34-card-border: 0 solid transparent;
--r34-card-radius: 26px;
--r34-card-shadow: 0 20px 50px rgba(15, 23, 42, .15);
--r34-card-hover-shadow: 0 30px 70px rgba(15, 23, 42, .22);
--r34-card-hover-transform: translateY(-7px);
}
body.r34c8-card-style-minimal {
--r34-card-bg-color: var(--bg-card, #fff);
--r34-card-bg-image: linear-gradient(var(--bg-card, #fff), var(--bg-card, #fff));
--r34-card-border: 0 solid transparent;
--r34-card-radius: 3px;
--r34-card-shadow: none;
--r34-card-hover-shadow: none;
--r34-card-hover-transform: translateX(4px);
}
body[class*="r34c8-card-style-"] :is(
.hero-main,
.sidebar-card,
.grid-card,
.layout-full-wrap .full-card,
.layout-list-wrap .list-item,
.story-card,
.related-grid-card,
.cat-grid-card,
.cat-trending-card,
.cat-sidebar-item,
.cat-dm-card,
.block-hero-side-card,
.am-ln-hero,
.related-item,
.related-minimal-item
) {
background-color: var(--r34-card-bg-color, var(--bg-card, #fff));
background-image: var(--r34-card-bg-image, none);
background-repeat: no-repeat;
background-size: 150% 150%, 155% 155%, 145% 145%, 100% 100%;
border: var(--r34-card-border, 0 solid transparent);
border-radius: var(--r34-card-radius, var(--border-radius, 16px));
box-shadow: var(--r34-card-shadow, var(--shadow-card));
-webkit-backdrop-filter: var(--r34-card-backdrop, none);
backdrop-filter: var(--r34-card-backdrop, none);
animation: var(--r34-card-animation, none);
transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
body[class*="r34c8-card-style-"] :is(
.hero-main,
.sidebar-card,
.grid-card,
.layout-full-wrap .full-card,
.layout-list-wrap .list-item,
.story-card,
.related-grid-card,
.cat-grid-card,
.cat-trending-card,
.cat-sidebar-item,
.cat-dm-card,
.block-hero-side-card,
.am-ln-hero,
.related-item,
.related-minimal-item
):hover {
transform: var(--r34-card-hover-transform, translateY(-4px));
box-shadow: var(--r34-card-hover-shadow, var(--r34-card-shadow));
}
body.r34c8-card-style-prism :is(
.hero-main, .sidebar-card, .grid-card, .layout-full-wrap .full-card,
.layout-list-wrap .list-item, .story-card, .related-grid-card,
.cat-grid-card, .cat-trending-card, .cat-sidebar-item, .cat-dm-card,
.block-hero-side-card, .am-ln-hero, .related-item, .related-minimal-item
) {
background-origin: border-box;
background-clip: padding-box, border-box;
}
body.r34c8-card-style-minimal :is(
.hero-main, .sidebar-card, .grid-card, .layout-full-wrap .full-card,
.layout-list-wrap .list-item, .story-card, .related-grid-card,
.cat-grid-card, .cat-trending-card, .cat-sidebar-item, .cat-dm-card,
.block-hero-side-card, .am-ln-hero, .related-item, .related-minimal-item
) {
border-left: 4px solid var(--primary-color, #D93802);
}
body.r34c8-card-style-midnight :is(
.hero-main, .sidebar-card, .grid-card, .layout-full-wrap .full-card,
.layout-list-wrap .list-item, .story-card, .related-grid-card,
.cat-grid-card, .cat-trending-card, .cat-sidebar-item, .cat-dm-card,
.block-hero-side-card, .am-ln-hero, .related-item, .related-minimal-item
) {
--text-main: #f7f4f2;
--text-muted: #b8afa9;
color: #f7f4f2;
}
body.r34c8-card-style-midnight :is(
.card-title, .card-excerpt, .hero-title, .hero-excerpt, .full-card-title,
.full-card-excerpt, .list-item-title, .story-card-title, .story-card-excerpt,
.related-grid-title, .cat-gc-title, .cat-gc-excerpt, .cat-trending-text h4,
.cat-si-text h5, .cat-dm-text h4, .block-hero-title, .am-ln-hero-title a,
.am-ln-hero-excerpt, .related-title a, .related-minimal-title
) {
color: inherit;
}
body.r34c8-card-style-midnight :is(
.meta-date, .meta-read-time, .full-card-date, .list-item-date,
.story-card-date, .related-grid-date, .cat-gc-footer, .am-ln-hero-meta
) {
color: #b8afa9;
}
body.r34c8-card-style-mesh :is(.card-grid, .cat-grid, .cat-dontmiss-grid, .related-grid) > :nth-child(3n + 2),
body.r34c8-card-style-aurora :is(.card-grid, .cat-grid, .cat-dontmiss-grid, .related-grid) > :nth-child(3n + 2) {
animation-delay: -5.33s;
}
body.r34c8-card-style-mesh :is(.card-grid, .cat-grid, .cat-dontmiss-grid, .related-grid) > :nth-child(3n),
body.r34c8-card-style-aurora :is(.card-grid, .cat-grid, .cat-dontmiss-grid, .related-grid) > :nth-child(3n) {
animation-delay: -10.66s;
}
@keyframes r34c8CardAuroraLoop {
0% { background-position: 0% 30%, 100% 0%, 55% 100%, 0 0; }
50% { background-position: 65% 0%, 35% 65%, 0% 40%, 0 0; }
100% { background-position: 100% 80%, 0% 100%, 95% 5%, 0 0; }
}
body.dark-mode.r34c8-card-style-clean,
body.dark-mode.r34c8-card-style-elevated {
--r34-card-bg-color: #1d1d1d;
--r34-card-bg-image: linear-gradient(145deg, #222, #191919);
--r34-card-border: 1px solid rgba(255,255,255,.09);
--r34-card-shadow: 0 14px 38px rgba(0,0,0,.26);
--r34-card-hover-shadow: 0 22px 54px rgba(0,0,0,.38);
}
body.dark-mode.r34c8-card-style-mesh {
--r34-card-bg-color: #1d1d1d;
--r34-card-bg-image:
radial-gradient(circle at 14% 18%, color-mix(in srgb, var(--primary-color, #D93802) 22%, transparent) 0, transparent 36%),
radial-gradient(circle at 88% 16%, rgba(70, 143, 180, .12) 0, transparent 34%),
radial-gradient(circle at 72% 90%, rgba(210, 126, 74, .11) 0, transparent 38%),
linear-gradient(145deg, #22201f, #191817);
}
body.dark-mode.r34c8-card-style-glass {
--r34-card-bg-color: rgba(28, 28, 29, .7);
--r34-card-bg-image:
linear-gradient(135deg, rgba(42,42,44,.78), rgba(21,21,23,.52)),
radial-gradient(circle at 8% 4%, color-mix(in srgb, var(--primary-color, #D93802) 16%, transparent), transparent 42%),
radial-gradient(circle at 92% 96%, rgba(82,153,190,.11), transparent 42%);
--r34-card-border: 1px solid rgba(255,255,255,.12);
--r34-card-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 44px rgba(0,0,0,.3);
}
body.dark-mode.r34c8-card-style-editorial {
--r34-card-bg-color: #1b1b1b;
--r34-card-bg-image: linear-gradient(to bottom, var(--primary-color, #D93802) 0 5px, #1b1b1b 5px 100%);
--r34-card-border: 1px solid #e7e2de;
--r34-card-shadow: 6px 6px 0 #e7e2de;
}
body.dark-mode.r34c8-card-style-linen {
--r34-card-bg-color: #24201b;
--r34-card-bg-image:
repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0 1px, transparent 1px 4px),
linear-gradient(145deg, #2b251e, #1d1a17);
--r34-card-border: 1px solid #4b4034;
}
body.dark-mode.r34c8-card-style-aurora {
--r34-card-bg-color: #171b22;
--r34-card-bg-image:
radial-gradient(circle at 5% 30%, rgba(45,212,191,.17), transparent 40%),
radial-gradient(circle at 95% 15%, rgba(168,85,247,.18), transparent 40%),
radial-gradient(circle at 65% 100%, color-mix(in srgb, var(--primary-color, #D93802) 16%, transparent), transparent 45%),
linear-gradient(145deg, #171d22, #1b1721);
}
body.dark-mode.r34c8-card-style-prism {
--r34-card-bg-color: #1c1c1c;
--r34-card-bg-image:
linear-gradient(#1c1c1c, #1c1c1c),
conic-gradient(from 30deg, var(--primary-color, #D93802), #f59e0b, #14b8a6, #818cf8, var(--primary-color, #D93802));
}
body.dark-mode.r34c8-card-style-minimal {
--r34-card-bg-color: #1d1d1d;
--r34-card-bg-image: linear-gradient(#1d1d1d, #1d1d1d);
}
@media (prefers-reduced-motion: reduce) {
body.r34c8-card-style-mesh :is(
.hero-main, .sidebar-card, .grid-card, .layout-full-wrap .full-card,
.layout-list-wrap .list-item, .story-card, .related-grid-card,
.cat-grid-card, .cat-trending-card, .cat-sidebar-item, .cat-dm-card,
.block-hero-side-card, .am-ln-hero, .related-item, .related-minimal-item
),
body.r34c8-card-style-aurora :is(
.hero-main, .sidebar-card, .grid-card, .layout-full-wrap .full-card,
.layout-list-wrap .list-item, .story-card, .related-grid-card,
.cat-grid-card, .cat-trending-card, .cat-sidebar-item, .cat-dm-card,
.block-hero-side-card, .am-ln-hero, .related-item, .related-minimal-item
) {
animation: none;
background-position: 40% 30%, 70% 35%, 45% 75%, 0 0;
}
}
.am-ln-hero {
align-items: stretch;
}
.am-ln-hero > *,
.am-ln-hero-body {
min-width: 0;
}
.am-ln-hero-img {
min-height: 330px;
overflow: hidden;
background: color-mix(in srgb, var(--primary-color, #D93802) 7%, var(--bg-card, #fff));
}
.am-ln-hero-img img,
.am-ln-hero-img div.am-ln-hero-placeholder {
width: 100%;
height: 100%;
min-height: 330px;
object-fit: cover;
}
.am-ln-hero-img div.am-ln-hero-placeholder {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 10px;
padding: 32px;
color: color-mix(in srgb, var(--primary-color, #D93802) 70%, var(--text-main, #222));
background:
radial-gradient(circle at 18% 22%, color-mix(in srgb, var(--primary-color, #D93802) 22%, transparent), transparent 36%),
radial-gradient(circle at 82% 75%, rgba(35, 126, 165, 0.16), transparent 38%),
var(--bg-card, #fff);
}
.am-ln-hero-img div.am-ln-hero-placeholder svg {
width: 48px;
height: 48px;
}
.am-ln-hero-img div.am-ln-hero-placeholder span {
font-size: 13px;
font-weight: 700;
}
.page-content-single .entry-content .am-ln-hero-title,
.page-content-single .entry-content p.am-ln-hero-excerpt {
overflow-wrap: normal;
word-break: normal;
hyphens: none;
}
@keyframes r34c8CardMeshLoop {
0% {
background-position: 0% 0%, 100% 0%, 70% 100%, 0 0;
}
45% {
background-position: 42% 34%, 62% 48%, 25% 72%, 0 0;
}
100% {
background-position: 100% 72%, 8% 92%, 92% 12%, 0 0;
}
}
@media (max-width: 900px) {
.am-ln-hero {
grid-template-columns: 1fr;
}
.am-ln-hero-img,
.am-ln-hero-img img,
.am-ln-hero-img .am-ln-hero-placeholder {
min-height: 0;
aspect-ratio: 16 / 9;
}
}
.amx-page {
--amx-r: 10px;
--amx-hair: #e6e3df;
--amx-quiet: #6d6a66;
--amx-ink2: #1b1a19;
}
.amx-page .amx-hero,
.amx-page .amx-hero--slim {
min-height: 0;
padding: 4px 0 26px;
margin: 0 0 34px;
border: 0;
border-bottom: 1px solid var(--amx-hair);
border-radius: 0;
background: none;
color: inherit;
text-align: left;
overflow: visible;
}
.amx-page .amx-hero::before,
.amx-page .amx-hero::after { display: none; }
.amx-page .amx-hero .amx-hero-img {
position: relative;
inset: auto;
width: 100%;
height: 232px;
margin: 0 0 26px;
border-radius: var(--amx-r);
opacity: 1;
-webkit-mask-image: none;
mask-image: none;
}
.amx-page .amx-hero-kicker {
display: block;
margin: 0 0 14px;
padding: 0;
border-radius: 0;
background: none;
color: var(--primary-color, #EC5725);
font-size: 11.5px;
font-weight: 700;
letter-spacing: .16em;
text-transform: uppercase;
}
.page-content-single .entry-content .amx-page .amx-hero h2,
.amx-page .amx-hero-title {
max-width: 17ch;
margin: 0 0 16px;
color: var(--amx-ink2);
font-size: 42px;
font-weight: 800;
line-height: 1.08;
letter-spacing: -.022em;
text-wrap: balance;
}
.page-content-single .entry-content .amx-page .amx-hero-sub,
.amx-page .amx-hero-sub {
max-width: 62ch;
margin: 0;
color: var(--amx-quiet);
font-size: 17.5px;
font-weight: 400;
line-height: 1.62;
opacity: 1;
}
.page-content-single .entry-content .amx-page > p.amx-lede,
.amx-page > .amx-lede {
max-width: 64ch;
margin: 0 0 38px;
padding: 0;
border: 0;
color: var(--text-main, #24221f);
font-size: 18.5px;
line-height: 1.68;
}
.amx-page > .amx-grid-3:has(.amx-stat),
.amx-page > .amx-grid-4:has(.amx-stat),
.amx-page .amx-grid-3:has(.amx-stat),
.amx-page .amx-grid-4:has(.amx-stat) {
gap: 0;
margin: 0 0 44px;
padding: 22px 0;
border-top: 1px solid var(--amx-hair);
border-bottom: 1px solid var(--amx-hair);
border-radius: 0;
background: none;
}
.amx-page .amx-stat {
padding: 2px 20px;
border: 0;
border-radius: 0;
background: none;
text-align: left;
}
.amx-page .amx-stat:first-child { padding-left: 0; }
.amx-page .amx-stat + .amx-stat { border-left: 1px solid var(--amx-hair); }
.amx-page .amx-stat + .amx-stat::before,
.amx-page .amx-stat:nth-child(2n)::before { display: none; }
.amx-page .amx-stat-number {
color: var(--amx-ink2);
font-size: 27px;
font-weight: 800;
letter-spacing: -.02em;
font-variant-numeric: tabular-nums;
}
.amx-page .amx-stat-label {
margin-top: 5px;
color: var(--amx-quiet);
font-size: 11.5px;
font-weight: 600;
letter-spacing: .07em;
text-transform: uppercase;
}
.page-content-single .entry-content .amx-page .amx-h,
.amx-page .amx-h {
align-items: baseline;
gap: 12px;
margin: 52px 0 20px;
padding-bottom: 11px;
border-bottom: 1px solid var(--amx-hair);
}
.amx-page .amx-h .amx-h-num {
flex: 0 0 auto;
width: auto;
height: auto;
border-radius: 0;
background: none;
color: var(--amx-quiet);
font-size: 12px;
font-weight: 700;
letter-spacing: .06em;
font-variant-numeric: tabular-nums;
}
.page-content-single .entry-content .amx-page .amx-h h2,
.page-content-single .entry-content .amx-page .amx-h h3,
.amx-page .amx-h h2,
.amx-page .amx-h h3 {
color: var(--amx-ink2);
font-size: 20px;
font-weight: 700;
letter-spacing: -.01em;
}
.amx-page .amx-grid-2,
.amx-page .amx-grid-3,
.amx-page .amx-grid-4 {
gap: 30px 34px;
margin: 0 0 12px;
}
.amx-page .amx-card {
padding: 0;
border: 0;
border-radius: 0;
background: none;
transition: none;
}
.amx-page .amx-card:hover {
transform: none;
box-shadow: none;
}
.amx-page .amx-card h3,
.amx-page .amx-card h4 {
margin: 0 0 7px;
color: var(--amx-ink2);
font-size: 15.5px;
font-weight: 700;
letter-spacing: -.005em;
}
.amx-page .amx-card p {
color: var(--amx-quiet);
font-size: 14.5px;
line-height: 1.68;
}
.amx-page .amx-card > a {
margin-top: 10px;
font-size: 13.5px;
font-weight: 600;
text-decoration: underline;
text-underline-offset: 3px;
}
.amx-page .amx-ico,
.amx-page .amx-card .amx-ico,
.amx-page .amx-contact-row .amx-ico {
width: auto;
height: auto;
margin-bottom: 11px;
border-radius: 0;
background: none;
box-shadow: none;
color: #9c9691;
}
.amx-page .amx-ico svg,
.amx-page .amx-card .amx-ico svg { width: 19px; height: 19px; }
.page-content-single .entry-content .amx-page ol.amx-steps,
.amx-page .amx-steps {
gap: 0;
margin: 4px 0 12px;
padding-left: 0;
}
.amx-page .amx-steps li {
padding: 0 0 22px 34px;
min-height: 0;
}
.amx-page .amx-steps li::before {
width: 22px;
height: 22px;
border: 1px solid var(--amx-hair);
border-radius: 50%;
background: var(--bg-card, #fff);
color: var(--amx-quiet);
font-size: 11px;
font-weight: 700;
box-shadow: none;
}
.amx-page .amx-steps li::after {
left: 11px;
width: 1px;
background: var(--amx-hair);
}
.amx-page .amx-steps strong {
margin-bottom: 3px;
color: var(--amx-ink2);
font-size: 15px;
font-weight: 700;
}
.amx-page .amx-steps p {
color: var(--amx-quiet);
font-size: 14.5px;
line-height: 1.68;
}
.amx-page .amx-note {
gap: 12px;
margin: 34px 0;
padding: 0 0 0 18px;
border: 0;
border-left: 2px solid var(--primary-color, #EC5725);
border-radius: 0;
background: none;
color: var(--text-main, #24221f);
font-size: 15px;
line-height: 1.66;
}
.amx-page .amx-note svg { display: none; }
.amx-page .amx-note--info { border-left-color: #2563eb; }
.amx-page .amx-note--warn { border-left-color: #d97706; }
.amx-page .amx-note--ok   { border-left-color: #059669; }
.amx-page .amx-cta {
margin: 46px 0 8px;
padding: 30px 0 0;
border: 0;
border-top: 1px solid var(--amx-hair);
border-radius: 0;
background: none;
color: inherit;
text-align: left;
}
.page-content-single .entry-content .amx-page .amx-cta h3,
.amx-page .amx-cta h3 {
margin: 0 0 8px;
color: var(--amx-ink2);
font-size: 20px;
font-weight: 700;
}
.amx-page .amx-cta p {
max-width: 58ch;
margin: 0 0 20px;
color: var(--amx-quiet);
font-size: 15.5px;
opacity: 1;
}
.page-content-single .entry-content .amx-page a.amx-btn,
.amx-page .amx-btn {
padding: 11px 20px;
border-radius: 8px;
font-size: 14.5px;
font-weight: 600;
}
.amx-page .amx-btn--ghost {
border: 1px solid var(--amx-hair);
background: none;
color: var(--amx-ink2);
}
@media (max-width: 700px) {
.page-content-single .entry-content .amx-page .amx-hero h2,
.amx-page .amx-hero-title { font-size: 31px; max-width: none; }
.amx-page .amx-hero,
.amx-page .amx-hero--slim { padding: 2px 0 20px; margin-bottom: 26px; }
.amx-page .amx-hero .amx-hero-img { height: 168px; }
.page-content-single .entry-content .amx-page .amx-hero-sub,
.amx-page .amx-hero-sub { font-size: 16px; }
.page-content-single .entry-content .amx-page > p.amx-lede,
.amx-page > .amx-lede { font-size: 17px; }
.amx-page > .amx-grid-3:has(.amx-stat),
.amx-page > .amx-grid-4:has(.amx-stat),
.amx-page .amx-grid-4:has(.amx-stat) {
grid-template-columns: repeat(2, 1fr);
gap: 20px 0;
padding: 20px 0;
}
.amx-page .amx-stat { padding: 0 16px; }
.amx-page .amx-stat:nth-child(odd) { padding-left: 0; }
.amx-page .amx-stat:nth-child(odd) { border-left: 0; }
.amx-page .amx-grid-2,
.amx-page .amx-grid-3,
.amx-page .amx-grid-4 { gap: 26px; }
.page-content-single .entry-content .amx-page .amx-h,
.amx-page .amx-h { margin-top: 40px; }
.page-content-single .entry-content .amx-page a.amx-btn,
.amx-page .amx-btn { width: auto; }
}
.amx-page::before,
.amx-page .amx-hero::before,
.amx-page .amx-hero::after,
.amx-page .amx-hero-kicker::before,
.amx-page > .amx-lede::before,
.amx-page .amx-lede::before,
.amx-page .amx-h::after,
.amx-page .amx-card::before,
.amx-page .amx-card::after,
.amx-page .amx-toc::before,
.amx-page .amx-cta::before,
.amx-page .amx-cta::after {
content: none;
display: none;
}
.amx-page .amx-card {
position: static;
overflow: visible;
min-height: 0;
}
.amx-page > .amx-grid-3:has(.amx-stat),
.amx-page > .amx-grid-4:has(.amx-stat),
.amx-page .amx-grid-3:has(.amx-stat),
.amx-page .amx-grid-4:has(.amx-stat) {
border-right: 0;
border-left: 0;
box-shadow: none;
}
.page-content-single .entry-content .amx-page ul.amx-check,
.amx-page .amx-check {
margin: 4px 0 12px;
padding: 0;
list-style: none;
}
.page-content-single .entry-content .amx-page ul.amx-check li,
.amx-page .amx-check li {
position: relative;
min-height: 0;
margin: 0;
padding: 13px 0 13px 30px;
border: 0;
border-bottom: 1px solid var(--amx-hair, #e6e3df);
border-radius: 0;
background: none;
box-shadow: none;
font-size: 15px;
line-height: 1.68;
}
.amx-page .amx-check li:last-child { border-bottom: 0; }
.amx-page .amx-check li::before {
content: "";
position: absolute;
top: 21px;
left: 4px;
width: 7px;
height: 7px;
border: 0;
border-radius: 50%;
background: var(--primary-color, #EC5725);
box-shadow: none;
font-size: 0;
}
.amx-page .amx-contact-list {
border: 0;
border-radius: 0;
background: none;
box-shadow: none;
}
.amx-page .amx-contact-list .amx-contact-row,
.amx-page .amx-contact-row {
padding: 15px 0;
border: 0;
border-bottom: 1px solid var(--amx-hair, #e6e3df);
border-radius: 0;
background: none;
}
.amx-page .amx-contact-list .amx-contact-row:last-child { border-bottom: 0; }
.amx-page .amx-toc {
position: static;
gap: 6px 18px;
margin: 0 0 30px;
padding: 0 0 18px;
border: 0;
border-bottom: 1px solid var(--amx-hair, #e6e3df);
border-radius: 0;
background: none;
box-shadow: none;
}
.amx-page .amx-toc a {
padding: 0;
border: 0;
border-radius: 0;
background: none;
color: var(--amx-quiet, #6d6a66);
font-size: 13.5px;
font-weight: 600;
}
.amx-page .amx-toc a:hover {
background: none;
color: var(--primary-color, #EC5725);
text-decoration: underline;
text-underline-offset: 3px;
}
.amx-page .amx-sitemap-col {
padding: 0;
border: 0;
border-radius: 0;
background: none;
box-shadow: none;
}
.amx-page .amx-badge {
padding: 4px 0;
border: 0;
border-radius: 0;
background: none;
color: var(--amx-quiet, #6d6a66);
font-size: 12.5px;
}
.amx-page .amx-table-wrap {
margin: 18px 0 30px;
border: 0;
border-radius: 0;
box-shadow: none;
overflow-x: auto;
}
.amx-page .amx-table { border: 0; font-size: 14.5px; }
.amx-page .amx-table th {
padding: 10px 14px 10px 0;
border-bottom: 1px solid var(--amx-ink2, #1b1a19);
background: none;
color: var(--amx-ink2, #1b1a19);
font-size: 11.5px;
font-weight: 700;
letter-spacing: .07em;
text-transform: uppercase;
}
.amx-page .amx-table td {
padding: 11px 14px 11px 0;
border-bottom: 1px solid var(--amx-hair, #e6e3df);
background: none;
}
.amx-page .amx-table tr:nth-child(even) td { background: none; }
.amx-page .amx-steps li::before {
background: var(--bg-card, #fff);
color: var(--amx-quiet, #6d6a66);
}
body.dark-mode .amx-page > .amx-grid-3:has(.amx-stat),
body.dark-mode .amx-page > .amx-grid-4:has(.amx-stat),
body.dark-mode .amx-page .amx-card,
body.dark-mode .amx-page .amx-steps li,
body.dark-mode .amx-page .amx-check li,
body.dark-mode .amx-page .amx-contact-list,
body.dark-mode .amx-page .amx-sitemap-col {
background: none;
}
body.dark-mode .amx-page {
--amx-hair: #34302c;
--amx-quiet: #a8a29c;
--amx-ink2: #ece9e6;
}
body.dark-mode .amx-page .amx-steps li::before { background: #1f1e1d; }
@media (max-width: 700px) {
.amx-page > .amx-grid-3:has(.amx-stat),
.amx-page > .amx-grid-4:has(.amx-stat),
.amx-page .amx-grid-4:has(.amx-stat) {
border-right: 0;
border-left: 0;
}
.amx-page .amx-toc { margin-bottom: 24px; }
}
.amx-page .amx-hero,
.amx-page .amx-hero--slim,
.amx-page .amx-hero-kicker,
.amx-page .amx-badge,
.amx-page .amx-card,
.amx-page .amx-note,
.amx-page .amx-cta,
.amx-page .amx-h .amx-h-num,
.page-content-single .entry-content .amx-page ol.amx-steps li,
.amx-page .amx-steps li {
box-shadow: none;
}
.amx-page .amx-hero,
.amx-page .amx-hero--slim {
display: block;
}
.amx-page .amx-hero > :not(.amx-hero-img) {
max-width: none;
}
.amx-page .amx-hero-kicker {
border: 0;
-webkit-backdrop-filter: none;
backdrop-filter: none;
}
.amx-page .amx-badge {
margin: 0 0 26px;
}
.page-content-single .entry-content .amx-page ol.amx-steps,
.amx-page .amx-steps {
display: block;
grid-template-columns: none;
margin: 4px 0 12px;
}
.page-content-single .entry-content .amx-page ol.amx-steps li,
.amx-page .amx-steps li {
min-height: 0;
padding: 0 0 22px 34px;
border: 0;
border-radius: 0;
background: none;
}
.amx-page .amx-steps li::before {
top: 0;
left: 0;
}
.amx-page .amx-steps li::after {
display: block;
top: 26px;
bottom: 4px;
}
.amx-page .amx-steps li:last-child::after {
display: none;
}
.page-content-single .entry-content .amx-page ul.amx-check,
.amx-page .amx-check {
display: block;
grid-template-columns: none;
}
.page-content-single .entry-content .amx-page ul.amx-check li::before,
.amx-page .amx-check li::before {
content: "";
top: 21px;
left: 4px;
width: 7px;
height: 7px;
border: 0;
border-radius: 50%;
background: var(--primary-color, #EC5725);
box-shadow: none;
font-size: 0;
}
.amx-page .amx-contact-list {
display: block;
grid-template-columns: none;
}
.amx-page .amx-contact-list .amx-contact-row {
min-height: 0;
}
.amx-page .amx-contact-list .amx-contact-row:nth-last-child(-n + 2) {
border-bottom: 1px solid var(--amx-hair, #e6e3df);
}
.amx-page .amx-contact-list .amx-contact-row:last-child {
border-bottom: 0;
}
.page-content-single .entry-content .amx-page .amx-card > a,
.amx-page .amx-card > a {
display: inline-block;
min-height: 0;
padding: 0;
border-radius: 0;
background: none;
}
.amx-page > ol:not(.amx-steps),
.amx-page > ul:not(.amx-check) {
margin: 4px 0 26px;
padding: 0 0 0 22px;
border: 0;
border-radius: 0;
background: none;
}
.amx-page > ol:not(.amx-steps) li,
.amx-page > ul:not(.amx-check) li {
margin-bottom: 8px;
}
.page-content-single .entry-content .amx-page a.amx-btn,
.amx-page .amx-btn {
min-height: 0;
border: 1px solid transparent;
box-shadow: none;
}
.page-content-single .entry-content .amx-page a.amx-btn--ghost,
.amx-page .amx-btn--ghost {
border: 1px solid var(--amx-hair, #e6e3df);
background: none;
color: var(--amx-ink2, #1b1a19);
}
.page-content-single .entry-content .amx-page a.amx-btn--ghost:hover,
.amx-page .amx-btn--ghost:hover {
border-color: var(--primary-color, #EC5725);
background: none;
color: var(--primary-color, #EC5725);
}
.amx-page .amx-table {
border-radius: 0;
}
.amx-page > ol:not(.amx-steps),
.amx-page > ul:not(.amx-check),
.amx-page .amx-steps li,
.amx-page .amx-check li {
max-width: 850px;
}
body.dark-mode .amx-page .amx-note,
body.dark-mode .amx-page .amx-note--info,
body.dark-mode .amx-page .amx-note--warn,
body.dark-mode .amx-page .amx-note--ok {
background: none;
color: var(--text-main, #f9fafb);
}
body.dark-mode .amx-page .amx-note--info { border-left-color: #60a5fa; }
body.dark-mode .amx-page .amx-note--warn { border-left-color: #fbbf24; }
body.dark-mode .amx-page .amx-note--ok   { border-left-color: #34d399; }
@media (max-width: 700px) {
.amx-page .amx-toc {
flex-wrap: wrap;
overflow-x: visible;
}
}
body.amx-generated-page .main-content {
padding-top: clamp(28px, 4vw, 52px);
padding-bottom: 0;
background:
radial-gradient(circle at 8% 2%, color-mix(in srgb, var(--primary-color, #EC5725) 7%, transparent), transparent 24rem),
linear-gradient(180deg, #fbfaf8 0, #fff 34rem);
}
body.amx-generated-page .main-content > .container {
width: min(100%, 1280px);
}
body.amx-generated-page .page-content-single {
width: 100%;
max-width: 1180px;
margin: 0 auto;
padding: 0 30px 96px;
}
body.amx-generated-page .page-content-single > .entry-content {
font-size: 17px;
line-height: 1.76;
}
body.amx-generated-page .article-breadcrumbs {
max-width: 1100px;
margin: 0 auto 22px;
color: #6b665f !important;
}
body.amx-generated-page .article-breadcrumbs a:hover {
color: var(--primary-color, #EC5725) !important;
}
body.amx-generated-page .page-content-single .entry-content .amx-page {
--amx-surface: #ffffff;
--amx-soft: #f5f1ed;
--amx-soft-2: #fbf9f7;
--amx-line: #e6dfd8;
--amx-line-strong: #cfc5bc;
--amx-text: #211f1c;
--amx-muted: #68615a;
--amx-accent: var(--primary-color, #EC5725);
--amx-accent-soft: color-mix(in srgb, var(--primary-color, #EC5725) 11%, #fff);
--amx-radius: 16px;
--amx-shadow: 0 14px 40px rgba(42, 31, 23, .07);
width: 100%;
max-width: 1100px;
margin: 0 auto;
color: var(--amx-text);
}
body.amx-generated-page .page-content-single .entry-content .amx-page::before,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero::before,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero::after,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero-kicker::before,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card::before,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card::after,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc::before,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-cta::before,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-cta::after,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-h::after,
body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-lede::before {
content: none;
display: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page a {
color: var(--amx-accent);
text-decoration-thickness: 1px;
text-underline-offset: 3px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page a:hover {
color: var(--primary-dark, #D93802);
}
body.amx-generated-page .page-content-single .entry-content .amx-page a:focus-visible,
body.amx-generated-page .page-content-single .entry-content .amx-page button:focus-visible,
body.amx-generated-page .page-content-single .entry-content .amx-page input:focus-visible {
outline: 3px solid color-mix(in srgb, var(--amx-accent) 38%, transparent);
outline-offset: 3px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim {
position: relative;
display: block;
min-height: 0;
margin: 0 0 24px;
padding: clamp(38px, 5vw, 62px);
overflow: hidden;
border: 1px solid var(--amx-line);
border-radius: 22px;
background:
linear-gradient(115deg, var(--amx-soft) 0%, #fff 78%),
var(--amx-surface);
box-shadow: var(--amx-shadow);
color: var(--amx-text);
text-align: left;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim {
padding-block: clamp(34px, 4.5vw, 52px);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-img) {
display: grid;
grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
grid-template-rows: auto auto auto;
gap: 0 46px;
align-items: center;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero .amx-hero-img {
position: relative;
inset: auto;
grid-column: 2;
grid-row: 1 / 4;
width: 100%;
height: 100%;
min-height: 310px;
max-height: 410px;
margin: 0;
border-radius: 15px;
opacity: 1;
filter: none;
-webkit-mask-image: none;
mask-image: none;
box-shadow: 0 12px 34px rgba(36, 27, 20, .12);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero > :not(.amx-hero-img) {
grid-column: 1;
max-width: 720px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero-kicker,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-feed-masthead .amx-hero-kicker {
display: inline-flex;
width: fit-content;
margin: 0 0 16px;
padding: 0;
border: 0;
border-radius: 0;
background: none;
box-shadow: none;
color: var(--amx-accent);
font-size: 11px;
font-weight: 800;
line-height: 1.3;
letter-spacing: .17em;
text-transform: uppercase;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero h1.amx-hero-title,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero h2.amx-hero-title,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero-title {
max-width: 16ch;
margin: 0 0 18px;
padding: 0;
color: var(--amx-text);
font-family: var(--font-heading, var(--font-stack));
font-size: clamp(38px, 5.3vw, 62px);
font-weight: 800;
line-height: 1.02;
letter-spacing: -.045em;
text-wrap: balance;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero h1::before,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero h1::after,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero h2::before,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero h2::after {
content: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero .amx-hero-sub,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero-sub {
max-width: 62ch;
margin: 0;
color: var(--amx-muted);
font-size: clamp(16px, 1.8vw, 19px);
font-weight: 400;
line-height: 1.62;
opacity: 1;
text-wrap: pretty;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav {
display: flex;
align-items: flex-start;
gap: 24px;
margin: 0 0 44px;
padding: 13px 2px 14px;
border: 0;
border-bottom: 1px solid var(--amx-line);
background: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav-label {
flex: 0 0 auto;
padding-top: 7px;
color: var(--amx-muted);
font-size: 10.5px;
font-weight: 800;
letter-spacing: .12em;
text-transform: uppercase;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav-links {
display: flex;
flex: 1 1 auto;
flex-wrap: wrap;
gap: 4px 18px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav a {
position: relative;
min-height: 36px;
padding: 7px 0;
color: var(--amx-muted);
font-size: 13px;
font-weight: 650;
line-height: 1.55;
text-decoration: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav a:hover,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav a[aria-current="page"] {
color: var(--amx-text);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav a[aria-current="page"]::after {
content: "";
position: absolute;
right: 0;
bottom: 2px;
left: 0;
height: 2px;
border-radius: 2px;
background: var(--amx-accent);
}
body.amx-generated-page .page-content-single .entry-content .amx-page > p.amx-lede {
max-width: 66ch;
margin: 0 0 28px;
padding: 0;
border: 0;
color: var(--amx-text);
font-size: clamp(18px, 2.2vw, 22px);
font-weight: 500;
line-height: 1.62;
letter-spacing: -.012em;
}
body.amx-generated-page .page-content-single .entry-content .amx-page > p:not(.amx-lede),
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy > p {
max-width: 72ch;
margin: 0 0 22px;
color: var(--amx-text);
font-size: 16.5px;
line-height: 1.8;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-meta-bar,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-badge {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 10px 28px;
width: 100%;
margin: -18px 0 36px;
padding: 14px 16px;
border: 1px solid var(--amx-line);
border-radius: 11px;
background: var(--amx-soft-2);
box-shadow: none;
color: var(--amx-muted);
font-size: 12.5px;
line-height: 1.55;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-meta-bar span {
display: inline-flex;
align-items: center;
gap: 7px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-meta-bar svg,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-badge svg {
width: 15px;
height: 15px;
color: var(--amx-accent);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-meta-bar strong {
color: var(--amx-text);
}
body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-grid-3:has(.amx-stat),
body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-grid-4:has(.amx-stat),
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-3:has(.amx-stat),
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-4:has(.amx-stat) {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 0;
margin: 44px 0 58px;
padding: 0;
overflow: hidden;
border: 1px solid var(--amx-line);
border-radius: var(--amx-radius);
background: var(--amx-surface);
box-shadow: var(--amx-shadow);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-stat {
position: relative;
padding: 24px 22px;
border: 0;
border-left: 1px solid var(--amx-line);
border-radius: 0;
background: transparent;
box-shadow: none;
text-align: left;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-stat:first-child {
border-left: 0;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-stat::before {
content: none;
display: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-stat-number {
display: block;
color: var(--amx-text);
font-size: clamp(24px, 3vw, 32px);
font-weight: 800;
line-height: 1.1;
letter-spacing: -.035em;
font-variant-numeric: tabular-nums;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-stat-label {
display: block;
margin-top: 7px;
color: var(--amx-muted);
font-size: 10.5px;
font-weight: 750;
line-height: 1.4;
letter-spacing: .075em;
text-transform: uppercase;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-h {
display: flex;
align-items: baseline;
gap: 16px;
max-width: 100%;
margin: 64px 0 24px;
padding: 0 0 13px;
border: 0;
border-bottom: 1px solid var(--amx-line);
background: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-h .amx-h-num {
display: inline-block;
flex: 0 0 auto;
width: 2.15em;
min-width: 2.15em;
height: auto;
margin: 0;
padding: 0;
border: 0;
border-radius: 0;
background: none;
box-shadow: none;
color: var(--amx-accent);
font-size: clamp(15px, 1.65vw, 18px);
font-weight: 900;
line-height: 1;
letter-spacing: .045em;
font-variant-numeric: tabular-nums;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-h h2,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-h h3 {
flex: 1 1 auto;
min-width: 0;
max-width: 100%;
margin: 0;
padding: 0;
color: var(--amx-text);
font-size: clamp(23px, 3vw, 30px);
font-weight: 780;
line-height: 1.2;
letter-spacing: -.025em;
overflow-wrap: break-word;
text-wrap: balance;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-h h2::before,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-h h2::after,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-h h3::before,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-h h3::after {
content: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-2,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-3,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-4 {
display: grid;
gap: 20px;
margin: 0 0 18px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card {
position: relative;
min-width: 0;
padding: 26px 24px 25px;
border: 1px solid var(--amx-line);
border-radius: 14px;
background: var(--amx-surface);
box-shadow: 0 8px 28px rgba(42, 31, 23, .045);
transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card:hover {
transform: none;
border-color: var(--amx-line-strong);
box-shadow: 0 10px 30px rgba(42, 31, 23, .06);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card .amx-ico,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-row .amx-ico {
display: grid;
place-items: center;
width: 38px;
height: 38px;
margin: 0 0 18px;
padding: 0;
border: 0;
border-radius: 50%;
background: var(--amx-accent-soft);
box-shadow: none;
color: var(--amx-accent);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-ico svg,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card .amx-ico svg {
width: 18px;
height: 18px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card h3,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card h4 {
margin: 0 0 9px;
padding: 0;
color: var(--amx-text);
font-size: 17px;
font-weight: 760;
line-height: 1.32;
letter-spacing: -.012em;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card h3::before,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card h3::after,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card h4::before,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card h4::after {
content: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card p {
margin: 0;
color: var(--amx-muted);
font-size: 14.5px;
line-height: 1.68;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card > a {
display: inline-flex;
align-items: center;
min-height: 36px;
margin: 14px 0 0;
padding: 5px 0;
border: 0;
border-radius: 0;
background: none;
box-shadow: none;
color: var(--amx-accent);
font-size: 13px;
font-weight: 750;
text-decoration: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card > a:hover {
color: var(--primary-dark, #D93802);
text-decoration: underline;
}
body.amx-generated-page .page-content-single .entry-content .amx-page ol.amx-steps {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 18px;
max-width: 100%;
margin: 0 0 26px;
padding: 0;
list-style: none;
counter-reset: amxstep;
}
body.amx-generated-page .page-content-single .entry-content .amx-page ol.amx-steps li {
position: relative;
min-height: 0;
max-width: none;
margin: 0;
padding: 24px 24px 24px 66px;
border: 1px solid var(--amx-line);
border-radius: 14px;
background: var(--amx-surface);
box-shadow: none;
counter-increment: amxstep;
}
body.amx-generated-page .page-content-single .entry-content .amx-page ol.amx-steps li::before {
content: counter(amxstep, decimal-leading-zero);
position: absolute;
top: 23px;
left: 22px;
display: grid;
place-items: center;
width: 32px;
height: 32px;
border: 1px solid color-mix(in srgb, var(--amx-accent) 28%, var(--amx-line));
border-radius: 50%;
background: var(--amx-accent-soft);
box-shadow: none;
color: var(--amx-accent);
font-size: 11.5px;
font-weight: 900;
line-height: 1;
}
body.amx-generated-page .page-content-single .entry-content .amx-page ol.amx-steps li::after {
content: none;
display: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page ol.amx-steps strong {
display: block;
margin-bottom: 5px;
color: var(--amx-text);
font-size: 15.5px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page ol.amx-steps p {
margin: 0;
color: var(--amx-muted);
font-size: 14px;
line-height: 1.65;
}
body.amx-generated-page .page-content-single .entry-content .amx-page ul.amx-check {
display: block;
max-width: 850px;
margin: 0 0 28px;
padding: 5px 24px;
overflow: hidden;
border: 1px solid var(--amx-line);
border-radius: 14px;
background: var(--amx-surface);
list-style: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page ul.amx-check li {
position: relative;
max-width: none;
margin: 0;
padding: 18px 8px 18px 34px;
border: 0;
border-bottom: 1px solid var(--amx-line);
border-radius: 0;
background: none;
font-size: 15px;
line-height: 1.66;
}
body.amx-generated-page .page-content-single .entry-content .amx-page ul.amx-check li:last-child {
border-bottom: 0;
}
body.amx-generated-page .page-content-single .entry-content .amx-page ul.amx-check li::before {
content: "✓";
position: absolute;
top: 19px;
left: 2px;
display: grid;
place-items: center;
width: 20px;
height: 20px;
border: 0;
border-radius: 50%;
background: var(--amx-accent-soft);
box-shadow: none;
color: var(--amx-accent);
font-size: 11px;
font-weight: 900;
line-height: 1;
}
body.amx-generated-page .page-content-single .entry-content .amx-page > ol:not(.amx-steps),
body.amx-generated-page .page-content-single .entry-content .amx-page > ul:not(.amx-check),
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy > ol,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy > ul {
max-width: 72ch;
margin: 0 0 26px;
padding: 0 0 0 24px;
border: 0;
border-radius: 0;
background: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page > ol:not(.amx-steps) li,
body.amx-generated-page .page-content-single .entry-content .amx-page > ul:not(.amx-check) li,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy > ol li,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy > ul li {
max-width: none;
margin: 0 0 10px;
padding-left: 5px;
font-size: 15.5px;
line-height: 1.72;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-note {
display: grid;
grid-template-columns: auto minmax(0, 1fr);
align-items: start;
gap: 13px;
max-width: 850px;
margin: 22px 0;
padding: 18px 20px;
border: 1px solid var(--amx-line);
border-left: 4px solid var(--amx-accent);
border-radius: 10px;
background: var(--amx-soft-2);
box-shadow: none;
color: var(--amx-text);
font-size: 14.5px;
line-height: 1.68;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-note > svg {
display: block;
width: 19px;
height: 19px;
margin-top: 2px;
color: var(--amx-accent);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-note--info { border-left-color: #3978c2; }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-note--info > svg { color: #3978c2; }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-note--warn { border-left-color: #b97814; }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-note--warn > svg { color: #b97814; }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-note--ok { border-left-color: #25845c; }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-note--ok > svg { color: #25845c; }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-cta {
position: relative;
margin: 68px 0 0;
padding: clamp(34px, 5vw, 52px);
overflow: hidden;
border: 1px solid #24211f;
border-radius: 18px;
background:
radial-gradient(circle at 92% 12%, color-mix(in srgb, var(--amx-accent) 42%, transparent), transparent 17rem),
#211f1d;
box-shadow: 0 18px 46px rgba(27, 21, 17, .16);
color: #fff;
text-align: left;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-cta h3 {
max-width: 22ch;
margin: 0 0 10px;
padding: 0;
color: #fff;
font-size: clamp(25px, 3.5vw, 34px);
font-weight: 780;
line-height: 1.15;
letter-spacing: -.025em;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-cta h3::before,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-cta h3::after {
content: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-cta p {
max-width: 60ch;
margin: 0 0 24px;
color: rgba(255, 255, 255, .75);
font-size: 15px;
line-height: 1.68;
}
body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-btn,
body.amx-generated-page .page-content-single .entry-content .amx-page button.amx-btn,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 46px;
width: auto;
margin: 0 8px 8px 0;
padding: 11px 20px;
border: 1px solid var(--amx-accent);
border-radius: 9px;
background: var(--amx-accent);
box-shadow: none;
color: #fff;
font-size: 13px;
font-weight: 780;
line-height: 1.3;
text-decoration: none;
cursor: pointer;
transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-btn:hover,
body.amx-generated-page .page-content-single .entry-content .amx-page button.amx-btn:hover {
transform: translateY(-1px);
border-color: var(--primary-dark, #D93802);
background: var(--primary-dark, #D93802);
color: #fff;
}
body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-btn--ghost,
body.amx-generated-page .page-content-single .entry-content .amx-page button.amx-btn--ghost,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-btn--ghost {
border-color: rgba(255, 255, 255, .34);
background: transparent;
color: #fff;
}
body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-btn--ghost:hover,
body.amx-generated-page .page-content-single .entry-content .amx-page button.amx-btn--ghost:hover {
border-color: #fff;
background: #fff;
color: #211f1d;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-cookie-actions {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin: 30px 0 48px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-cookie-actions .amx-btn--ghost {
border-color: var(--amx-line-strong);
color: var(--amx-text);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-cookie-actions .amx-btn--ghost:hover {
border-color: var(--amx-accent);
background: var(--amx-accent-soft);
color: var(--amx-accent);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-list {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0;
max-width: 900px;
margin: 0 0 28px;
overflow: hidden;
border: 1px solid var(--amx-line);
border-radius: 14px;
background: var(--amx-surface);
box-shadow: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-list .amx-contact-row {
display: grid;
grid-template-columns: auto minmax(0, 1fr);
align-items: start;
gap: 14px;
min-height: 126px;
margin: 0;
padding: 22px;
border: 0;
border-right: 1px solid var(--amx-line);
border-bottom: 1px solid var(--amx-line);
background: transparent;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-list .amx-contact-row:nth-child(2n) {
border-right: 0;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-list .amx-contact-row:nth-last-child(-n + 2) {
border-bottom: 0;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-row .amx-ico {
width: 34px;
height: 34px;
margin: 0;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-row strong {
display: block;
margin: 0 0 5px;
color: var(--amx-text);
font-size: 12px;
letter-spacing: .06em;
text-transform: uppercase;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-row > div {
min-width: 0;
color: var(--amx-muted);
font-size: 14px;
line-height: 1.62;
overflow-wrap: anywhere;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-layout {
display: grid;
grid-template-columns: 235px minmax(0, 1fr);
align-items: start;
gap: clamp(34px, 5vw, 62px);
margin-top: 44px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc {
position: sticky;
top: 126px;
display: block;
margin: 0;
padding: 18px;
overflow: visible;
border: 1px solid var(--amx-line);
border-radius: 12px;
background: var(--amx-soft-2);
box-shadow: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc-title {
display: block;
margin: 0 0 10px;
padding: 0 6px 10px;
border-bottom: 1px solid var(--amx-line);
color: var(--amx-text);
font-size: 10.5px;
font-weight: 850;
line-height: 1.3;
letter-spacing: .12em;
text-transform: uppercase;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc a {
display: block;
min-height: 34px;
margin: 0;
padding: 7px 6px;
border: 0;
border-radius: 6px;
background: none;
color: var(--amx-muted);
font-size: 12.5px;
font-weight: 620;
line-height: 1.45;
text-decoration: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc a:hover {
background: var(--amx-accent-soft);
color: var(--amx-text);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy {
min-width: 0;
max-width: 780px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy > .amx-h:first-child,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy > .amx-note:first-child + .amx-h {
margin-top: 0;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy .amx-h[id] {
scroll-margin-top: 126px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table-wrap {
max-width: 100%;
margin: 24px 0 30px;
overflow-x: auto;
border: 1px solid var(--amx-line);
border-radius: 12px;
background: var(--amx-surface);
box-shadow: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table {
width: 100%;
min-width: 0;
table-layout: fixed;
border: 0;
border-collapse: collapse;
border-radius: 0;
background: transparent;
font-size: 14.5px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table th,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table td {
width: auto;
padding: 15px 16px;
border: 0;
border-bottom: 1px solid var(--amx-line);
background: transparent;
color: var(--amx-text);
line-height: 1.55;
text-align: left;
vertical-align: top;
overflow-wrap: anywhere;
word-break: normal;
white-space: normal;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table th:nth-child(1),
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table td:nth-child(1) { width: 22%; }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table th:nth-child(2),
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table td:nth-child(2) { width: 40%; }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table th:nth-child(3),
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table td:nth-child(3) { width: 16%; }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table th:nth-child(4),
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table td:nth-child(4) { width: 22%; }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table td:first-child strong {
white-space: normal;
overflow-wrap: anywhere;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table th {
background: var(--amx-soft);
color: var(--amx-muted);
font-size: 11.5px;
font-weight: 850;
letter-spacing: .075em;
text-transform: uppercase;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table tr:last-child td {
border-bottom: 0;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table tr:nth-child(even) td {
background: var(--amx-soft-2);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-search {
display: block;
width: 100%;
max-width: 760px;
margin: 34px 0 50px;
padding: 24px;
border: 1px solid var(--amx-line);
border-radius: 14px;
background: var(--amx-soft-2);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-search label {
display: block;
margin-bottom: 8px;
color: var(--amx-text);
font-size: 12px;
font-weight: 800;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-search > div {
display: grid;
width: 100%;
grid-template-columns: minmax(0, 1fr) auto;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-search input {
min-width: 0;
min-height: 48px;
padding: 10px 14px;
border: 1px solid var(--amx-line-strong);
border-right: 0;
border-radius: 8px 0 0 8px;
background: var(--amx-surface);
color: var(--amx-text);
font: inherit;
font-size: 14px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-search button {
min-height: 48px;
padding: 10px 20px;
border: 1px solid var(--amx-accent);
border-radius: 0 8px 8px 0;
background: var(--amx-accent);
color: #fff;
font-size: 13px;
font-weight: 780;
cursor: pointer;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap {
display: grid;
grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
gap: 22px;
margin: 0;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col {
min-width: 0;
padding: 28px;
border: 1px solid var(--amx-line);
border-radius: 14px;
background: var(--amx-surface);
box-shadow: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col h2,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col h3 {
margin: 0 0 16px;
padding: 0 0 10px;
border-bottom: 1px solid var(--amx-line);
color: var(--amx-text);
font-size: 18px;
font-weight: 760;
line-height: 1.3;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col h2:not(:first-child),
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col h3:not(:first-child) {
margin-top: 34px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col h2::before,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col h2::after,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col h3::before,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col h3::after {
content: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col ul,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col ul.amx-sitemap-list {
margin: 0;
padding: 0;
list-style: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col li,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col ul li {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: 14px;
margin: 0;
padding: 10px 0;
border: 0;
border-bottom: 1px solid var(--amx-line);
font-size: 13.5px;
line-height: 1.5;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col li::before {
content: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col li:last-child {
border-bottom: 0;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col li span,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col li time {
flex: 0 0 auto;
color: var(--amx-muted);
font-size: 11.5px;
white-space: nowrap;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col a {
color: var(--amx-text);
font-weight: 650;
text-decoration: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col a:hover {
color: var(--amx-accent);
text-decoration: underline;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-empty-state {
color: var(--amx-muted);
font-style: italic;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-feed-masthead {
margin: 0 0 24px;
padding: clamp(38px, 5vw, 62px);
border: 1px solid var(--amx-line);
border-radius: 22px;
background: linear-gradient(115deg, var(--amx-soft) 0%, #fff 78%);
box-shadow: var(--amx-shadow);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-feed-masthead h1 {
max-width: 16ch;
margin: 0 0 17px;
padding: 0;
color: var(--amx-text);
font-size: clamp(40px, 5.3vw, 62px);
font-weight: 800;
line-height: 1.02;
letter-spacing: -.045em;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-feed-masthead h1::before,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-feed-masthead h1::after {
content: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-feed-masthead p {
max-width: 62ch;
margin: 0;
color: var(--amx-muted);
font-size: clamp(16px, 1.8vw, 19px);
line-height: 1.62;
}
body.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-head {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 10px 20px;
margin: 0 0 24px;
padding: 13px 0;
border: 0;
border-top: 1px solid var(--amx-line);
border-bottom: 1px solid var(--amx-line);
border-radius: 0;
background: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-live,
body.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-updated,
body.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-count {
color: var(--amx-muted);
font-size: 11.5px;
font-weight: 700;
letter-spacing: .035em;
}
body.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-live {
color: var(--amx-text);
}
body.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-dot {
background: var(--amx-accent);
box-shadow: 0 0 0 4px var(--amx-accent-soft);
}
body.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-hero {
display: grid;
grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
min-height: 0;
margin: 0 0 42px;
overflow: hidden;
border: 1px solid var(--amx-line);
border-radius: 18px;
background: var(--amx-surface);
box-shadow: var(--amx-shadow);
}
body.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-hero-img,
body.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-hero-img img,
body.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-hero-placeholder {
width: 100%;
min-height: 100%;
aspect-ratio: 4 / 3;
object-fit: cover;
}
body.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-hero-badge {
top: 18px;
left: 18px;
padding: 7px 10px;
border-radius: 7px;
background: rgba(24, 22, 20, .9);
box-shadow: none;
color: #fff;
font-size: 10px;
letter-spacing: .05em;
}
body.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-hero-body {
display: flex;
flex-direction: column;
justify-content: center;
padding: clamp(28px, 4vw, 46px);
}
body.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-hero-title {
margin: 12px 0;
color: var(--amx-text);
font-size: clamp(27px, 3.4vw, 38px);
line-height: 1.14;
letter-spacing: -.03em;
}
body.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-hero-title a {
color: inherit;
text-decoration: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-hero-excerpt {
color: var(--amx-muted);
font-size: 15px;
line-height: 1.68;
}
body.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-hero-cta {
width: fit-content;
margin-top: 10px;
color: var(--amx-accent);
font-size: 13px;
font-weight: 780;
text-decoration: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-more {
min-height: 48px;
padding: 12px 22px;
border: 1px solid var(--amx-line-strong);
border-radius: 9px;
background: var(--amx-surface);
box-shadow: none;
color: var(--amx-text);
font-weight: 750;
}
body.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-more:hover {
border-color: var(--amx-accent);
background: var(--amx-accent-soft);
color: var(--amx-accent);
}
body.dark-mode.amx-generated-page .main-content {
background:
radial-gradient(circle at 8% 2%, color-mix(in srgb, var(--primary-color, #EC5725) 11%, transparent), transparent 24rem),
linear-gradient(180deg, #171615 0, #1c1b1a 34rem);
}
body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page {
--amx-surface: #23211f;
--amx-soft: #2a2724;
--amx-soft-2: #201f1d;
--amx-line: #403b36;
--amx-line-strong: #5b534b;
--amx-text: #f2efeb;
--amx-muted: #b8b0a8;
--amx-accent-soft: color-mix(in srgb, var(--primary-color, #EC5725) 18%, #23211f);
--amx-shadow: 0 16px 46px rgba(0, 0, 0, .22);
}
body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero,
body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-feed-masthead {
background: linear-gradient(115deg, #2a2724 0%, #211f1d 78%);
}
body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-card,
body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page ol.amx-steps li,
body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page ul.amx-check,
body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-list,
body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col,
body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-table-wrap,
body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-hero {
background: var(--amx-surface);
border-color: var(--amx-line);
}
body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-note,
body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-note--info,
body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-note--warn,
body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-note--ok {
background: var(--amx-soft-2);
color: var(--amx-text);
}
body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-table tr:nth-child(even) td,
body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-table th {
background: var(--amx-soft);
}
body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-search input,
body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-more {
background: var(--amx-surface);
color: var(--amx-text);
}
@media (max-width: 920px) {
body.amx-generated-page .page-content-single {
padding-inline: 20px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-img) {
grid-template-columns: 1fr;
grid-template-rows: auto;
gap: 28px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero .amx-hero-img {
grid-column: 1;
grid-row: 1;
min-height: 0;
max-height: none;
aspect-ratio: 16 / 8;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero > :not(.amx-hero-img) {
grid-column: 1;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-4 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-layout {
grid-template-columns: 1fr;
gap: 30px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc {
position: static;
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 2px 18px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc-title {
grid-column: 1 / -1;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy {
max-width: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap {
grid-template-columns: 1fr;
}
}
@media (max-width: 700px) {
body.amx-generated-page .main-content {
padding-top: 22px;
}
body.amx-generated-page .page-content-single {
padding: 0 14px 72px;
}
body.amx-generated-page .article-breadcrumbs {
padding-inline: 4px;
margin-bottom: 16px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-feed-masthead {
margin-bottom: 18px;
padding: 30px 23px;
border-radius: 16px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero .amx-hero-img {
margin: -8px -1px 4px;
width: calc(100% + 2px);
aspect-ratio: 16 / 9;
border-radius: 11px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero h1.amx-hero-title,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero h2.amx-hero-title,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero-title,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-feed-masthead h1 {
max-width: none;
font-size: clamp(34px, 10.5vw, 44px);
line-height: 1.05;
letter-spacing: -.04em;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav {
display: block;
margin-bottom: 34px;
padding: 10px 2px 12px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav-label {
display: block;
padding: 0 0 6px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav-links {
flex-wrap: nowrap;
gap: 16px;
overflow-x: auto;
overscroll-behavior-inline: contain;
scrollbar-width: thin;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav a {
flex: 0 0 auto;
min-height: 42px;
padding-block: 10px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-meta-bar,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-badge {
display: grid;
gap: 9px;
margin-top: -10px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-grid-3:has(.amx-stat),
body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-grid-4:has(.amx-stat),
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-3:has(.amx-stat),
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-4:has(.amx-stat) {
grid-template-columns: repeat(2, minmax(0, 1fr));
margin: 34px 0 46px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-stat {
padding: 20px 17px;
border-bottom: 1px solid var(--amx-line);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-stat:nth-child(odd) {
border-left: 0;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-stat:nth-last-child(-n + 2) {
border-bottom: 0;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-2,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-3,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-4,
body.amx-generated-page .page-content-single .entry-content .amx-page ol.amx-steps {
grid-template-columns: 1fr;
gap: 14px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-h {
align-items: flex-start;
margin-top: 50px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-h .amx-h-num {
padding-top: 4px;
font-size: 15px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-h h2,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-h h3 {
font-size: 23px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card {
padding: 23px 21px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-list {
grid-template-columns: 1fr;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-list .amx-contact-row,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-list .amx-contact-row:nth-child(2n),
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-list .amx-contact-row:nth-last-child(-n + 2) {
min-height: 0;
border-right: 0;
border-bottom: 1px solid var(--amx-line);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-list .amx-contact-row:last-child {
border-bottom: 0;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc {
grid-template-columns: 1fr;
padding: 14px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table-wrap {
overflow: hidden;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table-wrap::after {
content: none;
display: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table tbody,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table tr,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table td {
display: block;
width: 100%;
min-width: 0;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table {
table-layout: auto;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table thead {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip-path: inset(50%);
white-space: nowrap;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table tr {
padding: 7px 0;
border-bottom: 1px solid var(--amx-line);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table tr:last-child {
border-bottom: 0;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table td,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table tr:last-child td {
display: grid;
grid-template-columns: minmax(86px, .35fr) minmax(0, 1fr);
gap: 13px;
width: 100% !important;
max-width: 100%;
padding: 9px 14px;
box-sizing: border-box;
border-bottom: 0;
background: transparent;
font-size: 14px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table td::before {
content: attr(data-label);
color: var(--amx-muted);
font-size: 11px;
font-weight: 850;
line-height: 1.45;
letter-spacing: .055em;
text-transform: uppercase;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-search,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col {
padding: 21px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col li,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col ul li {
display: block;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col li span,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col li time {
display: block;
margin-top: 3px;
white-space: normal;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-cta {
margin-top: 54px;
padding: 31px 23px;
border-radius: 15px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-btn,
body.amx-generated-page .page-content-single .entry-content .amx-page button.amx-btn,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-btn {
width: 100%;
margin-right: 0;
}
body.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-hero {
grid-template-columns: 1fr;
border-radius: 14px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-hero-img,
body.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-hero-img img,
body.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-hero-placeholder {
min-height: 0;
aspect-ratio: 16 / 9;
}
body.amx-generated-page .page-content-single .entry-content .amx-page--latest-news .am-ln-hero-body {
padding: 25px 21px 28px;
}
}
@media (prefers-reduced-motion: reduce) {
body.amx-generated-page .page-content-single .entry-content .amx-page *,
body.amx-generated-page .page-content-single .entry-content .amx-page *::before,
body.amx-generated-page .page-content-single .entry-content .amx-page *::after {
scroll-behavior: auto !important;
transition-duration: .01ms !important;
animation-duration: .01ms !important;
animation-iteration-count: 1 !important;
}
}
body.amx-generated-page .main-content {
padding: clamp(18px, 3vw, 34px) 0 0;
background:
radial-gradient(circle at 11% 0, color-mix(in srgb, var(--primary-color, #EC5725) 7%, transparent), transparent 26rem),
#f4f2ef;
}
body.amx-generated-page .article-breadcrumbs { display: none; }
body.amx-generated-page .page-content-single {
max-width: 1240px;
padding: 0 20px 70px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page {
--amx-studio-gutter: clamp(18px, 4vw, 46px);
max-width: 1180px;
padding: 14px 14px 0;
border: 1px solid #e8e3de;
border-radius: 25px;
background: var(--amx-surface, #fff);
box-shadow: 0 22px 70px rgba(38, 29, 23, .10);
}
body.amx-generated-page .page-content-single .entry-content .amx-page > p,
body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-lede,
body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-grid-2,
body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-grid-3,
body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-grid-4,
body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-h,
body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-steps,
body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-check,
body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-note,
body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-cta,
body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-meta-bar,
body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-cookie-actions,
body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-legal-layout,
body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-sitemap,
body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-sitemap-search,
body.amx-generated-page .page-content-single .entry-content .amx-page > .am-ln-head,
body.amx-generated-page .page-content-single .entry-content .amx-page > .am-ln-hero,
body.amx-generated-page .page-content-single .entry-content .amx-page > .am-ln-grid,
body.amx-generated-page .page-content-single .entry-content .amx-page > .am-ln-more-wrap {
margin-inline: var(--amx-studio-gutter);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav {
display: grid;
grid-template-columns: minmax(155px, .72fr) minmax(360px, 1.8fr) auto;
align-items: center;
gap: 12px 22px;
margin: 0 0 14px;
padding: 14px 16px 11px;
border: 1px solid var(--amx-line, #e6dfd8);
border-radius: 16px;
background: var(--amx-surface, #fff);
box-shadow: 0 7px 24px rgba(42, 31, 23, .045);
}
body.amx-generated-page .amx-page-nav-brand {
display: flex;
align-items: center;
gap: 10px;
min-width: 0;
color: var(--amx-text) !important;
line-height: 1.1;
text-decoration: none !important;
}
body.amx-generated-page .amx-page-nav-brand > i {
display: grid;
place-items: center;
width: 35px;
height: 35px;
flex: 0 0 35px;
border-radius: 10px;
background: var(--amx-accent-soft);
color: var(--amx-accent);
font-size: 15px;
}
body.amx-generated-page .amx-page-nav-brand span { min-width: 0; }
body.amx-generated-page .amx-page-nav-brand strong,
body.amx-generated-page .amx-page-nav-brand small {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
body.amx-generated-page .amx-page-nav-brand strong { font-size: 13px; font-weight: 850; }
body.amx-generated-page .amx-page-nav-brand small { margin-top: 4px; color: var(--amx-muted); font-size: 9.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
body.amx-generated-page .amx-page-nav-primary,
body.amx-generated-page .amx-page-nav-secondary {
display: flex;
align-items: center;
min-width: 0;
}
body.amx-generated-page .amx-page-nav-primary { justify-content: center; gap: clamp(17px, 2.5vw, 32px); }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav-primary a,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav-secondary a {
position: relative;
min-height: 34px;
padding: 7px 0;
color: var(--amx-text);
font-size: 12.5px;
font-weight: 650;
line-height: 1.55;
text-decoration: none;
white-space: nowrap;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav a[aria-current="page"] {
color: var(--amx-accent);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav a[aria-current="page"]::after {
content: "";
position: absolute;
right: 0;
bottom: 2px;
left: 0;
height: 2px;
border-radius: 2px;
background: var(--amx-accent);
}
body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-nav-cta {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 9px;
min-height: 44px;
padding: 10px 17px;
border-radius: 10px;
background: var(--amx-accent);
box-shadow: 0 8px 18px color-mix(in srgb, var(--amx-accent) 23%, transparent);
color: #fff;
font-size: 12px;
font-weight: 800;
text-decoration: none;
white-space: nowrap;
}
body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-nav-cta:hover {
background: var(--primary-dark, #D93802);
color: #fff;
}
body.amx-generated-page .amx-page-nav-secondary {
grid-column: 1 / -1;
justify-content: flex-end;
gap: 8px 22px;
padding: 8px 2px 0;
border-top: 1px solid var(--amx-line);
overflow-x: auto;
scrollbar-width: thin;
}
body.amx-generated-page .amx-page-nav-secondary > span {
margin-right: auto;
color: var(--amx-muted);
font-size: 9.5px;
font-weight: 850;
letter-spacing: .11em;
text-transform: uppercase;
white-space: nowrap;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim {
margin: 0 0 28px;
border: 1px solid #eadfd6;
border-radius: 18px;
background:
radial-gradient(circle at 15% 12%, rgba(255,255,255,.92), transparent 20rem),
linear-gradient(120deg, #fffaf7 0%, #f4e8df 100%);
box-shadow: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-img),
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-art),
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim:has(.amx-hero-art) {
display: grid;
grid-template-columns: minmax(0, .92fr) minmax(370px, 1.08fr);
grid-template-rows: auto auto auto;
align-content: center;
align-items: start;
gap: 0 38px;
min-height: 430px;
padding: 0;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-img) > :not(.amx-hero-img),
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-art) > :not(.amx-hero-art),
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim:has(.amx-hero-art) > :not(.amx-hero-art) {
grid-column: 1;
margin-right: 0;
margin-left: clamp(30px, 4vw, 50px);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero .amx-hero-img {
position: relative;
inset: auto;
grid-column: 2;
grid-row: 1 / 4;
width: 100%;
height: 100%;
min-height: 430px;
max-height: none;
margin: 0;
border-radius: 0 17px 17px 0;
box-shadow: none;
opacity: 1;
filter: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero-kicker {
align-self: end;
display: inline-flex;
align-items: center;
gap: 12px;
margin-bottom: 18px;
color: var(--amx-accent);
font-size: 11px;
font-weight: 850;
letter-spacing: .17em;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero-kicker::after {
content: "";
display: block;
width: 38px;
height: 2px;
border-radius: 2px;
background: var(--amx-accent);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero h1.amx-hero-title,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero h2.amx-hero-title,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero-title {
max-width: 13ch;
margin-bottom: 20px;
font-size: clamp(42px, 5.7vw, 68px);
font-weight: 850;
line-height: .98;
letter-spacing: -.052em;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero .amx-hero-sub,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero-sub {
align-self: start;
max-width: 46ch;
color: #4f4a46;
font-size: clamp(15px, 1.55vw, 17.5px);
line-height: 1.65;
}
body.amx-generated-page .amx-hero-art {
position: relative;
grid-column: 2;
grid-row: 1 / 4;
align-self: stretch;
min-height: 430px;
overflow: hidden;
border-radius: 0 17px 17px 0;
background:
radial-gradient(circle at 78% 30%, rgba(255,255,255,.95) 0 12%, transparent 12.5%),
linear-gradient(145deg, #f8eee7 0%, #ecd9ca 100%);
}
body.amx-generated-page .amx-hero-art-orbit {
position: absolute;
top: 50%;
left: 54%;
width: 300px;
height: 300px;
border: 1px solid rgba(236, 87, 37, .17);
border-radius: 50%;
transform: translate(-50%, -50%);
box-shadow: 0 0 0 38px rgba(255,255,255,.24), 0 0 0 76px rgba(255,255,255,.13);
}
body.amx-generated-page .amx-hero-art-paper {
position: absolute;
top: 51%;
left: 51%;
display: grid;
place-items: center;
width: min(58%, 240px);
aspect-ratio: .78;
border: 1px solid rgba(102, 75, 56, .14);
border-radius: 17px;
background: linear-gradient(145deg, #fff, #faf6f2);
box-shadow: 0 28px 48px rgba(65, 43, 28, .15);
color: var(--amx-accent);
transform: translate(-50%, -50%) rotate(5deg);
}
body.amx-generated-page .amx-hero-art-paper::before,
body.amx-generated-page .amx-hero-art-paper::after {
content: "";
position: absolute;
right: 17%;
left: 17%;
height: 7px;
border-radius: 10px;
background: #d9d3ce;
box-shadow: 0 23px 0 #e6e0db, 0 46px 0 #e6e0db;
}
body.amx-generated-page .amx-hero-art-paper::before { top: 18%; }
body.amx-generated-page .amx-hero-art-paper::after { bottom: 16%; box-shadow: 0 -20px 0 #e6e0db; }
body.amx-generated-page .amx-hero-art-paper > i { position: relative; z-index: 1; font-size: clamp(54px, 7vw, 82px); filter: drop-shadow(0 9px 10px rgba(217, 56, 2, .15)); }
body.amx-generated-page .amx-hero-art-seal {
position: absolute;
right: 11%;
bottom: 14%;
display: grid;
place-items: center;
width: 82px;
height: 82px;
border: 7px solid rgba(255,255,255,.86);
border-radius: 50%;
background: var(--amx-accent);
box-shadow: 0 15px 26px rgba(91, 44, 19, .20);
color: #fff;
font-size: 27px;
transform: rotate(-7deg);
}
body.amx-generated-page .amx-hero-art-line {
position: absolute;
height: 2px;
border-radius: 2px;
background: var(--amx-accent);
opacity: .68;
}
body.amx-generated-page .amx-hero-art-line--one { top: 15%; right: 14%; width: 48px; }
body.amx-generated-page .amx-hero-art-line--two { bottom: 17%; left: 9%; width: 64px; }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card,
body.amx-generated-page .page-content-single .entry-content .amx-page ol.amx-steps li,
body.amx-generated-page .page-content-single .entry-content .amx-page ul.amx-check,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-list,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table-wrap {
border-color: #e8e3de;
border-radius: 15px;
box-shadow: 0 9px 28px rgba(42, 31, 23, .055);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card:hover {
border-color: color-mix(in srgb, var(--amx-accent) 34%, #e8e3de);
box-shadow: 0 14px 34px rgba(42, 31, 23, .075);
transform: translateY(-2px);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card .amx-ico,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-row .amx-ico {
width: 44px;
height: 44px;
background: linear-gradient(145deg, #fff7f2, #f8e9df);
color: var(--amx-accent);
}
body.amx-generated-page .page-content-single .entry-content .amx-page--privacy-policy .amx-legal-layout {
grid-template-columns: 1fr;
gap: 30px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page--privacy-policy .amx-toc {
position: static;
display: flex;
align-items: stretch;
gap: 0;
overflow-x: auto;
padding: 0;
border-radius: 14px;
scrollbar-width: thin;
}
body.amx-generated-page .page-content-single .entry-content .amx-page--privacy-policy .amx-toc-title,
body.amx-generated-page .page-content-single .entry-content .amx-page--privacy-policy .amx-toc a {
flex: 0 0 auto;
display: flex;
align-items: center;
min-height: 72px;
margin: 0;
padding: 13px 17px;
border-right: 1px solid var(--amx-line);
border-bottom: 0;
}
body.amx-generated-page .page-content-single .entry-content .amx-page--privacy-policy .amx-toc-title {
color: var(--amx-accent);
font-size: 10px;
font-weight: 900;
letter-spacing: .12em;
}
body.amx-generated-page .page-content-single .entry-content .amx-page--privacy-policy .amx-toc a {
max-width: 176px;
color: var(--amx-text);
font-size: 11px;
font-weight: 700;
line-height: 1.35;
}
body.amx-generated-page .page-content-single .entry-content .amx-page--privacy-policy .amx-legal-copy {
width: 100%;
max-width: 850px;
margin: 0 auto;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-endcap {
display: flex;
align-items: center;
justify-content: space-between;
gap: 28px;
min-height: 112px;
margin: 66px 0 0;
padding: 24px clamp(22px, 4vw, 42px);
border-radius: 18px 18px 23px 23px;
background:
radial-gradient(circle at 12% 50%, rgba(236,87,37,.16), transparent 13rem),
linear-gradient(120deg, #111821, #1d232b);
box-shadow: 0 18px 44px rgba(17, 24, 33, .20);
color: #fff;
}
body.amx-generated-page .amx-page-endcap-brand,
body.amx-generated-page .amx-page-endcap-links {
display: flex;
align-items: center;
}
body.amx-generated-page .amx-page-endcap-brand { min-width: 0; gap: 13px; }
body.amx-generated-page .amx-page-endcap-brand > span {
display: grid;
place-items: center;
width: 46px;
height: 46px;
flex: 0 0 46px;
border-radius: 50%;
background: var(--amx-accent);
color: #fff;
}
body.amx-generated-page .amx-page-endcap-brand strong,
body.amx-generated-page .amx-page-endcap-brand small { display: block; }
body.amx-generated-page .amx-page-endcap-brand strong { color: #fff; font-size: 15px; font-weight: 850; }
body.amx-generated-page .amx-page-endcap-brand small { margin-top: 4px; color: #b8c0ca; font-size: 11px; }
body.amx-generated-page .amx-page-endcap-links { gap: 9px 20px; }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-endcap a {
color: #d9dfe6;
font-size: 12px;
font-weight: 700;
text-decoration: none;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-endcap a:hover { color: #fff; }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-endcap a.amx-page-endcap-cta {
display: inline-flex;
align-items: center;
gap: 8px;
min-height: 42px;
padding: 10px 15px;
border-radius: 9px;
background: var(--amx-accent);
box-shadow: 0 8px 18px rgba(0,0,0,.18);
color: #fff;
}
body.dark-mode.amx-generated-page .main-content { background: #14171b; }
body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page { border-color: #373b40; background: var(--amx-surface); }
body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav { background: #23272c; border-color: #3a3f45; }
body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero,
body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim { background: linear-gradient(120deg, #2a2724, #211f1d); border-color: #443d37; }
body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero-sub { color: var(--amx-muted); }
body.dark-mode.amx-generated-page .amx-hero-art { background: linear-gradient(145deg, #312b27, #201e1c); }
body.dark-mode.amx-generated-page .amx-hero-art-paper { border-color: #4a433e; background: linear-gradient(145deg, #2e2a27, #24211f); }
body.dark-mode.amx-generated-page .amx-hero-art-paper::before,
body.dark-mode.amx-generated-page .amx-hero-art-paper::after { background: #5b554f; box-shadow: 0 23px 0 #48433e, 0 46px 0 #48433e; }
@media (max-width: 820px) {
body.amx-generated-page .page-content-single { padding-inline: 12px; }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav {
grid-template-columns: minmax(0, 1fr) auto;
}
body.amx-generated-page .amx-page-nav-primary,
body.amx-generated-page .amx-page-nav-secondary {
grid-column: 1 / -1;
justify-content: flex-start;
overflow-x: auto;
scrollbar-width: thin;
}
body.amx-generated-page .amx-page-nav-primary { order: 3; padding-top: 4px; }
body.amx-generated-page .amx-page-nav-secondary { order: 4; }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-img),
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-art),
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim:has(.amx-hero-art) {
grid-template-columns: 1fr;
grid-template-rows: auto;
gap: 0;
min-height: 0;
padding: 0 24px 34px;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero .amx-hero-img,
body.amx-generated-page .amx-hero-art {
grid-column: 1;
grid-row: 1;
width: calc(100% + 48px);
min-height: 250px;
height: 250px;
margin: 0 -24px 30px;
border-radius: 17px 17px 0 0;
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-img) > :not(.amx-hero-img),
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-art) > :not(.amx-hero-art),
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim:has(.amx-hero-art) > :not(.amx-hero-art) {
grid-column: 1;
margin-right: 0;
margin-left: 0;
}
body.amx-generated-page .amx-hero-art-orbit { width: 230px; height: 230px; }
body.amx-generated-page .amx-hero-art-paper { width: 145px; }
body.amx-generated-page .amx-hero-art-paper > i { font-size: 52px; }
body.amx-generated-page .amx-hero-art-seal { right: 17%; bottom: 10%; width: 62px; height: 62px; border-width: 5px; font-size: 20px; }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-endcap {
align-items: flex-start;
flex-direction: column;
}
}
@media (max-width: 560px) {
body.amx-generated-page .main-content { padding-top: 10px; }
body.amx-generated-page .page-content-single { padding: 0 5px 48px; }
body.amx-generated-page .page-content-single .entry-content .amx-page {
--amx-studio-gutter: 12px;
padding: 7px 7px 0;
border-radius: 17px;
box-shadow: 0 12px 34px rgba(38, 29, 23, .08);
}
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav {
gap: 9px 12px;
padding: 10px;
border-radius: 12px;
}
body.amx-generated-page .amx-page-nav-brand > i { width: 32px; height: 32px; flex-basis: 32px; }
body.amx-generated-page .amx-page-nav-brand strong { max-width: 118px; }
body.amx-generated-page .amx-page-nav-brand small { display: none; }
body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-nav-cta { min-height: 40px; padding: 8px 12px; }
body.amx-generated-page .amx-page-nav-primary { gap: 20px; }
body.amx-generated-page .amx-page-nav-secondary { gap: 15px; }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim { border-radius: 13px; }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero .amx-hero-img,
body.amx-generated-page .amx-hero-art { border-radius: 12px 12px 0 0; }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero h1.amx-hero-title,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero h2.amx-hero-title,
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero-title { font-size: clamp(36px, 12vw, 48px); }
body.amx-generated-page .page-content-single .entry-content .amx-page--privacy-policy .amx-toc-title,
body.amx-generated-page .page-content-single .entry-content .amx-page--privacy-policy .amx-toc a { min-height: 62px; padding: 11px 14px; }
body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-endcap {
margin-top: 48px;
padding: 23px 18px;
border-radius: 13px 13px 16px 16px;
}
body.amx-generated-page .amx-page-endcap-links { flex-wrap: wrap; }
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page {
--amx-surface: #ffffff;
--amx-surface-2: #fbf9f7;
--amx-soft: #f6f2ee;
--amx-soft-2: #fbf9f7;
--amx-line: #e7e1da;
--amx-line-soft: #f0ebe5;
--amx-line-strong: #cdc3b9;
--amx-text: #1d1b19;
--amx-text-2: #3f3a35;
--amx-muted: #6d665f;
--amx-accent: var(--primary-color, #EC5725);
--amx-accent-ink: var(--primary-dark, #D93802);
--amx-accent-soft: color-mix(in srgb, var(--primary-color, #EC5725) 10%, #fff);
--amx-accent-line: color-mix(in srgb, var(--primary-color, #EC5725) 32%, transparent);
--amx-ok: #2f7d52;
--amx-ok-soft: color-mix(in srgb, #2f7d52 9%, #fff);
--amx-warn: #a4620d;
--amx-warn-soft: color-mix(in srgb, #a4620d 9%, #fff);
--amx-info: #24618f;
--amx-info-soft: color-mix(in srgb, #24618f 8%, #fff);
--amx-radius: 16px;
--amx-radius-lg: 22px;
--amx-shadow: 0 14px 40px rgba(42, 31, 23, .07);
--amx-shadow-lift: 0 18px 44px rgba(42, 31, 23, .13);
--amx-ease: cubic-bezier(.16, 1, .3, 1);
--amx-block: clamp(34px, 4.4vw, 54px);
width: 100%;
max-width: 1180px;
margin: 0 auto;
color: var(--amx-text);
font-family: var(--font-stack);
}
:root body.amx-generated-page .main-content {
padding: clamp(16px, 2.6vw, 32px) 0 0;
background:
radial-gradient(ellipse 60rem 30rem at 12% -4%, color-mix(in srgb, var(--primary-color, #EC5725) 8%, transparent), transparent 70%),
radial-gradient(ellipse 44rem 26rem at 92% 6%, color-mix(in srgb, #24618f 5%, transparent), transparent 70%),
linear-gradient(180deg, #f7f4f1 0, #f3f0ec 40rem);
}
:root body.amx-generated-page .main-content > .container { width: min(100%, 1300px); }
:root body.amx-generated-page .article-breadcrumbs { display: none; }
:root body.amx-generated-page .page-content-single {
width: 100%;
max-width: 1260px;
margin: 0 auto;
padding: 0 22px 76px;
}
:root body.amx-generated-page .page-content-single > .entry-content {
font-size: 16.6px;
line-height: 1.78;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page {
--amx-gutter: clamp(20px, 4vw, 54px);
position: relative;
padding: 14px 14px 0;
overflow: clip;
border: 1px solid var(--amx-line);
border-radius: 26px;
background: var(--amx-surface);
box-shadow: 0 1px 2px rgba(38, 29, 23, .04), 0 24px 74px rgba(38, 29, 23, .10);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page > p,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > ul,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > ol,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-lede,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-trust-strip,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-grid-2,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-grid-3,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-grid-4,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-h,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-steps,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-check,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-note,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-cta,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-kv,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-split,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-quote,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-faq,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-pill-row,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-meta-bar,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-contact-list,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-table-wrap,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-cookie-actions,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-legal-layout,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-sitemap,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-sitemap-search,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .am-ln-head,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .am-ln-hero,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .am-ln-grid,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .am-ln-more-wrap {
margin-inline: var(--amx-gutter);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-h {
margin-top: var(--amx-block);
margin-bottom: 22px;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-grid-2,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-grid-3,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-grid-4,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-steps,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-check,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-kv,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-split,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-faq,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-table-wrap,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-contact-list {
margin-top: 0;
margin-bottom: 26px;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page > p {
margin-top: 0;
margin-bottom: 17px;
max-width: 74ch;
color: var(--amx-text-2);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page a {
color: var(--amx-accent);
text-decoration-thickness: 1px;
text-underline-offset: 3px;
transition: color .18s ease;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page a:hover { color: var(--amx-accent-ink); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page a:focus-visible,
:root body.amx-generated-page .page-content-single .entry-content .amx-page button:focus-visible,
:root body.amx-generated-page .page-content-single .entry-content .amx-page summary:focus-visible,
:root body.amx-generated-page .page-content-single .entry-content .amx-page input:focus-visible {
outline: 3px solid color-mix(in srgb, var(--amx-accent) 42%, transparent);
outline-offset: 3px;
border-radius: 6px;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page h2::before,
:root body.amx-generated-page .page-content-single .entry-content .amx-page h2::after,
:root body.amx-generated-page .page-content-single .entry-content .amx-page h3::before,
:root body.amx-generated-page .page-content-single .entry-content .amx-page h3::after,
:root body.amx-generated-page .page-content-single .entry-content .amx-page h4::before,
:root body.amx-generated-page .page-content-single .entry-content .amx-page h4::after {
content: none;
display: none;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page h2,
:root body.amx-generated-page .page-content-single .entry-content .amx-page h3,
:root body.amx-generated-page .page-content-single .entry-content .amx-page h4 {
padding: 0;
border: 0;
color: var(--amx-text);
font-family: var(--font-heading, var(--font-stack));
text-transform: none;
letter-spacing: -0.01em;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav {
display: grid;
grid-template-columns: minmax(150px, .7fr) minmax(340px, 1.9fr) auto;
align-items: center;
gap: 10px 24px;
margin: 0 0 16px;
padding: 14px calc(var(--amx-gutter) - 1px) 11px;
border: 1px solid var(--amx-line);
border-radius: 18px;
background: linear-gradient(180deg, var(--amx-surface-2), var(--amx-surface));
box-shadow: 0 6px 20px rgba(42, 31, 23, .04);
}
:root body.amx-generated-page .amx-page-nav-brand {
display: flex;
align-items: center;
gap: 11px;
min-width: 0;
color: var(--amx-text) !important;
line-height: 1.1;
text-decoration: none !important;
}
:root body.amx-generated-page .amx-page-nav-brand > i {
display: grid;
place-items: center;
width: 36px;
height: 36px;
flex: 0 0 36px;
border-radius: 11px;
background: var(--amx-accent-soft);
color: var(--amx-accent);
font-size: 15px;
transition: transform .35s var(--amx-ease), background .2s ease;
}
:root body.amx-generated-page .amx-page-nav-brand:hover > i {
transform: rotate(-6deg) scale(1.06);
background: color-mix(in srgb, var(--amx-accent) 17%, #fff);
}
:root body.amx-generated-page .amx-page-nav-brand span { min-width: 0; }
:root body.amx-generated-page .amx-page-nav-brand strong,
:root body.amx-generated-page .amx-page-nav-brand small {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
:root body.amx-generated-page .amx-page-nav-brand strong { font-size: 13.5px; font-weight: 850; letter-spacing: -0.01em; }
:root body.amx-generated-page .amx-page-nav-brand small {
margin-top: 4px;
color: var(--amx-muted);
font-size: 9.5px;
font-weight: 750;
letter-spacing: .1em;
text-transform: uppercase;
}
:root body.amx-generated-page .amx-page-nav-primary,
:root body.amx-generated-page .amx-page-nav-secondary { display: flex; align-items: center; min-width: 0; }
:root body.amx-generated-page .amx-page-nav-primary { justify-content: center; gap: clamp(16px, 2.4vw, 34px); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav-primary a,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav-secondary a {
position: relative;
min-height: 34px;
padding: 7px 0;
color: var(--amx-text);
font-size: 12.5px;
font-weight: 650;
line-height: 1.55;
text-decoration: none;
white-space: nowrap;
transition: color .18s ease;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav-primary a::after,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav-secondary a::after {
content: "";
position: absolute;
right: 0;
bottom: 2px;
left: 0;
height: 2px;
border-radius: 2px;
background: var(--amx-accent);
transform: scaleX(0);
transition: transform .3s var(--amx-ease);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav a:hover { color: var(--amx-accent); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav a:hover::after { transform: scaleX(1); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav a[aria-current="page"] { color: var(--amx-accent); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav a[aria-current="page"]::after { transform: scaleX(1); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-nav-cta {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 9px;
min-height: 44px;
padding: 10px 18px;
overflow: hidden;
border-radius: 11px;
background: var(--amx-accent);
box-shadow: 0 8px 18px color-mix(in srgb, var(--amx-accent) 26%, transparent);
color: #fff !important;
font-size: 12px;
font-weight: 800;
text-decoration: none;
white-space: nowrap;
transition: background .2s ease, transform .25s var(--amx-ease), box-shadow .25s ease;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-nav-cta:hover {
background: var(--amx-accent-ink);
transform: translateY(-2px);
box-shadow: 0 12px 26px color-mix(in srgb, var(--amx-accent) 32%, transparent);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-nav-cta span { transition: transform .3s var(--amx-ease); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-nav-cta:hover span { transform: translateX(4px); }
:root body.amx-generated-page .amx-page-nav-secondary {
grid-column: 1 / -1;
justify-content: flex-end;
gap: 6px 22px;
padding: 8px 2px 0;
border-top: 1px solid var(--amx-line-soft);
overflow-x: auto;
scrollbar-width: thin;
}
:root body.amx-generated-page .amx-page-nav-secondary > span {
margin-right: auto;
color: var(--amx-muted);
font-size: 9.5px;
font-weight: 850;
letter-spacing: .11em;
text-transform: uppercase;
white-space: nowrap;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav-secondary a { font-size: 11.5px; font-weight: 600; color: var(--amx-muted); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav-secondary a:hover,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav-secondary a[aria-current="page"] { color: var(--amx-accent); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim {
position: relative;
display: block;
min-height: 0;
margin: 0 0 26px;
padding: clamp(34px, 4.6vw, 58px) calc(var(--amx-gutter) - 1px);
overflow: hidden;
border: 1px solid var(--amx-line);
border-radius: var(--amx-radius-lg);
background:
linear-gradient(118deg, var(--amx-soft) 0%, var(--amx-surface) 62%),
var(--amx-surface);
box-shadow: var(--amx-shadow);
color: var(--amx-text);
text-align: left;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero::before {
content: "";
display: block;
position: absolute;
inset: 0;
z-index: 0;
pointer-events: none;
background-image:
linear-gradient(color-mix(in srgb, var(--amx-line-strong) 42%, transparent) 1px, transparent 1px),
linear-gradient(90deg, color-mix(in srgb, var(--amx-line-strong) 42%, transparent) 1px, transparent 1px);
background-size: 46px 46px;
-webkit-mask-image: radial-gradient(ellipse 70% 90% at 88% 8%, #000, transparent 72%);
mask-image: radial-gradient(ellipse 70% 90% at 88% 8%, #000, transparent 72%);
opacity: .5;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero::after {
content: "";
display: block;
position: absolute;
top: -34%;
right: -16%;
z-index: 0;
width: 46rem;
height: 46rem;
pointer-events: none;
border-radius: 50%;
background: radial-gradient(circle, color-mix(in srgb, var(--amx-accent) 13%, transparent), transparent 62%);
opacity: .85;
}
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero::after {
animation: amxDrift 22s ease-in-out infinite alternate;
}
@keyframes amxDrift {
from { transform: translate3d(0, 0, 0) scale(1); }
to   { transform: translate3d(-5%, 5%, 0) scale(1.12); }
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero > *,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim > * { position: relative; z-index: 1; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim { padding-block: clamp(32px, 4vw, 50px); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-img),
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-art),
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim:has(.amx-hero-art) {
display: grid;
grid-template-columns: minmax(0, 1.1fr) minmax(290px, .9fr);
grid-template-rows: auto auto auto;
gap: 0 48px;
align-items: center;
justify-items: stretch;
justify-content: normal;
align-content: normal;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero .amx-hero-img {
position: relative;
inset: auto;
grid-column: 2;
grid-row: 1 / 4;
width: 100%;
height: 100%;
min-height: 300px;
max-height: 400px;
margin: 0;
border-radius: 16px;
opacity: 1;
filter: none;
-webkit-mask-image: none;
mask-image: none;
box-shadow: 0 14px 38px rgba(36, 27, 20, .16);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-img) > :not(.amx-hero-img),
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-art) > :not(.amx-hero-art),
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim:has(.amx-hero-art) > :not(.amx-hero-art) {
grid-column: 1;
max-width: 720px;
margin-inline: 0;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero-kicker {
display: inline-flex;
align-items: center;
gap: 10px;
width: fit-content;
margin: 0 0 18px;
padding: 0;
border: 0;
border-radius: 0;
background: none;
box-shadow: none;
color: var(--amx-accent);
font-size: 11px;
font-weight: 850;
letter-spacing: .16em;
line-height: 1.4;
text-transform: uppercase;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero-kicker::before {
content: "";
display: block;
width: 26px;
height: 2px;
border-radius: 2px;
background: var(--amx-accent);
transform-origin: left center;
}
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero.is-in .amx-hero-kicker::before {
animation: amxRuleIn .7s var(--amx-ease) .18s both;
}
@keyframes amxRuleIn { from { transform: scaleX(0); } to { transform: scaleX(1); } }
:root body.amx-generated-page .page-content-single .entry-content .amx-page h1.amx-hero-title,
:root body.amx-generated-page .page-content-single .entry-content .amx-page h2.amx-hero-title,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero-title {
margin: 0 0 18px;
padding: 0;
border: 0;
color: var(--amx-text);
font-family: var(--font-heading, var(--font-stack));
font-size: clamp(36px, 4.9vw, 58px);
font-weight: 850;
letter-spacing: -0.035em;
line-height: 1.03;
text-transform: none;
text-wrap: balance;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero-sub {
max-width: 60ch;
margin: 0;
color: var(--amx-muted);
font-size: clamp(15.5px, 1.5vw, 17.5px);
font-weight: 450;
line-height: 1.66;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-trust-strip {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
gap: 0;
margin-top: 0;
margin-bottom: 30px;
padding: 4px 0;
border-top: 1px solid var(--amx-line);
border-bottom: 1px solid var(--amx-line);
background: none;
list-style: none;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-trust-item {
display: flex;
flex-direction: column;
gap: 9px;
padding: 22px 24px;
border-left: 1px solid var(--amx-line-soft);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-trust-item:first-child { border-left: 0; padding-left: 0; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-trust-item .amx-ico {
display: grid;
place-items: center;
width: 34px;
height: 34px;
flex: 0 0 34px;
border-radius: 10px;
background: var(--amx-accent-soft);
color: var(--amx-accent);
transition: transform .35s var(--amx-ease), background .25s ease;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-trust-item .amx-ico svg { width: 16px; height: 16px; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-trust-item:hover .amx-ico {
transform: translateY(-2px) scale(1.05);
background: color-mix(in srgb, var(--amx-accent) 17%, #fff);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-trust-item strong {
color: var(--amx-muted);
font-size: 10px;
font-weight: 850;
letter-spacing: .12em;
line-height: 1.3;
text-transform: uppercase;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-trust-item > span:last-child {
color: var(--amx-text);
font-size: 14.5px;
font-weight: 700;
line-height: 1.5;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-trust-item a { font-weight: 700; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-lede {
max-width: 68ch;
margin-top: 0;
margin-bottom: 30px;
padding: 0 0 0 20px;
border-left: 3px solid var(--amx-accent-line);
color: var(--amx-text);
font-size: clamp(17px, 1.7vw, 19.5px);
font-weight: 480;
line-height: 1.68;
letter-spacing: -0.005em;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-lede::before { content: none; display: none; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page strong { color: var(--amx-text); font-weight: 750; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page > ul:not(.amx-check),
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy ul,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-split-body ul {
max-width: 74ch;
margin-block: 0 20px;
padding: 0 0 0 4px;
list-style: none;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page > ul:not(.amx-check) > li,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy ul > li,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-split-body ul > li {
position: relative;
margin: 0 0 11px;
padding: 0 0 0 22px;
color: var(--amx-text-2);
background: none;
border: 0;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page > ul:not(.amx-check) > li::before,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy ul > li::before,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-split-body ul > li::before {
content: "";
position: absolute;
top: .72em;
left: 2px;
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--amx-accent);
opacity: .55;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy ol {
max-width: 74ch;
margin: 0 0 20px;
padding-left: 22px;
list-style: decimal;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy ol > li {
margin: 0 0 11px;
padding: 0;
color: var(--amx-text-2);
background: none;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy ol > li::before { content: none; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy ol > li::marker { color: var(--amx-accent); font-weight: 750; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-3:has(> .amx-stat),
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-4:has(> .amx-stat) {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 0;
margin-bottom: 30px;
padding: 4px 0;
border-top: 1px solid var(--amx-line);
border-bottom: 1px solid var(--amx-line);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-stat {
display: flex;
flex-direction: column;
gap: 6px;
padding: 24px 22px;
border: 0;
border-left: 1px solid var(--amx-line-soft);
border-radius: 0;
background: none;
box-shadow: none;
text-align: left;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-stat:first-child { border-left: 0; padding-left: 0; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-stat-number {
display: block;
color: var(--amx-text);
font-family: var(--font-heading, var(--font-stack));
font-size: clamp(30px, 3.4vw, 42px);
font-weight: 850;
letter-spacing: -0.04em;
line-height: 1;
font-variant-numeric: tabular-nums;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-stat-label {
display: block;
color: var(--amx-muted);
font-size: 10.5px;
font-weight: 800;
letter-spacing: .11em;
line-height: 1.45;
text-transform: uppercase;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-h {
display: grid;
grid-template-columns: auto auto minmax(0, 1fr);
align-items: center;
gap: 15px;
padding: 0;
border: 0;
background: none;
scroll-margin-top: 96px;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-h-num {
display: grid;
place-items: center;
width: 34px;
height: 34px;
padding: 0;
border: 1px solid var(--amx-accent-line);
border-radius: 10px;
background: var(--amx-accent-soft);
box-shadow: none;
color: var(--amx-accent);
font-size: 11.5px;
font-weight: 850;
letter-spacing: .02em;
font-variant-numeric: tabular-nums;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-h h2,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-h h3 {
margin: 0;
color: var(--amx-text);
font-size: clamp(20px, 2.3vw, 26px);
font-weight: 800;
letter-spacing: -0.025em;
line-height: 1.22;
text-wrap: balance;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-h::after {
content: "";
display: block;
height: 1px;
border: 0;
background: linear-gradient(90deg, var(--amx-line-strong), transparent);
opacity: .8;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-2,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-3,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-4 { display: grid; gap: 16px; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-3 { grid-template-columns: repeat(auto-fit, minmax(252px, 1fr)); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-4 { grid-template-columns: repeat(auto-fit, minmax(228px, 1fr)); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card {
position: relative;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 0;
padding: 25px 23px;
overflow: hidden;
border: 1px solid var(--amx-line);
border-radius: var(--amx-radius);
background: var(--amx-surface);
box-shadow: none;
transition: transform .38s var(--amx-ease), border-color .28s ease, box-shadow .38s var(--amx-ease);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card::before {
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, var(--amx-accent), color-mix(in srgb, var(--amx-accent) 25%, transparent));
transform: scaleX(0);
transform-origin: left center;
transition: transform .45s var(--amx-ease);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card:hover {
transform: translateY(-4px);
border-color: color-mix(in srgb, var(--amx-accent) 26%, var(--amx-line));
box-shadow: var(--amx-shadow-lift);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card:hover::before { transform: scaleX(1); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card .amx-ico {
display: grid;
place-items: center;
width: 42px;
height: 42px;
margin: 0 0 15px;
border: 0;
border-radius: 12px;
background: var(--amx-accent-soft);
box-shadow: none;
color: var(--amx-accent);
transition: transform .38s var(--amx-ease), background .25s ease;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card .amx-ico svg { width: 19px; height: 19px; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card:hover .amx-ico {
transform: translateY(-2px) rotate(-4deg);
background: color-mix(in srgb, var(--amx-accent) 18%, #fff);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card h3,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card h4 {
margin: 0 0 9px;
color: var(--amx-text);
font-size: 16.5px;
font-weight: 800;
letter-spacing: -0.015em;
line-height: 1.32;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card p {
margin: 0;
color: var(--amx-muted);
font-size: 14.5px;
line-height: 1.68;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card > a {
margin-top: auto;
padding-top: 15px;
color: var(--amx-accent);
font-size: 13px;
font-weight: 750;
text-decoration: none;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card > a:hover { text-decoration: underline; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page ol.amx-steps {
counter-reset: amxstep;
margin-block: 0 26px;
padding: 0;
border: 0;
background: none;
list-style: none;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page ol.amx-steps > li {
position: relative;
margin: 0;
padding: 0 0 26px 58px;
border: 0;
border-radius: 0;
background: none;
box-shadow: none;
counter-increment: amxstep;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page ol.amx-steps > li:last-child { padding-bottom: 0; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page ol.amx-steps > li::marker { content: none; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page ol.amx-steps > li::before {
content: counter(amxstep, decimal-leading-zero);
display: grid;
place-items: center;
position: absolute;
top: 0;
left: 0;
width: 38px;
height: 38px;
border: 1px solid var(--amx-accent-line);
border-radius: 50%;
background: var(--amx-surface);
color: var(--amx-accent);
font-size: 12px;
font-weight: 850;
font-variant-numeric: tabular-nums;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page ol.amx-steps > li::after {
content: "";
position: absolute;
top: 44px;
bottom: 8px;
left: 19px;
width: 1px;
background: linear-gradient(180deg, var(--amx-accent-line), var(--amx-line));
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page ol.amx-steps > li:last-child::after { content: none; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page ol.amx-steps > li > strong {
display: block;
margin: 7px 0 6px;
color: var(--amx-text);
font-size: 16px;
font-weight: 800;
letter-spacing: -0.012em;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page ol.amx-steps > li > p {
max-width: 70ch;
margin: 0;
color: var(--amx-muted);
font-size: 14.8px;
line-height: 1.7;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page ul.amx-check {
margin-block: 0 26px;
padding: 0;
border: 0;
border-radius: 0;
background: none;
box-shadow: none;
list-style: none;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page ul.amx-check > li {
position: relative;
max-width: 82ch;
margin: 0;
padding: 13px 0 13px 36px;
border: 0;
border-top: 1px solid var(--amx-line-soft);
border-radius: 0;
background: none;
color: var(--amx-text-2);
font-size: 15.3px;
line-height: 1.68;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page ul.amx-check > li:first-child { border-top: 0; padding-top: 4px; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page ul.amx-check > li::before {
content: "";
position: absolute;
top: 1.32em;
left: 4px;
width: 15px;
height: 8px;
border: 0;
border-bottom: 2px solid var(--amx-accent);
border-left: 2px solid var(--amx-accent);
border-radius: 1px;
background: none;
transform: rotate(-45deg);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page ul.amx-check > li:first-child::before { top: .78em; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page ul.amx-check > li strong { color: var(--amx-text); font-weight: 750; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-note {
display: grid;
grid-template-columns: auto minmax(0, 1fr);
align-items: start;
gap: 14px;
max-width: 86ch;
margin-block: 0 20px;
padding: 18px 20px;
border: 1px solid var(--amx-line);
border-left: 3px solid var(--amx-muted);
border-radius: 12px;
background: var(--amx-surface-2);
box-shadow: none;
color: var(--amx-text-2);
font-size: 14.8px;
line-height: 1.7;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-note > svg {
width: 19px;
height: 19px;
margin-top: 3px;
flex: 0 0 19px;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-note strong { color: var(--amx-text); font-weight: 800; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-note--ok { border-left-color: var(--amx-ok); background: var(--amx-ok-soft); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-note--ok > svg { color: var(--amx-ok); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-note--info { border-left-color: var(--amx-info); background: var(--amx-info-soft); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-note--info > svg { color: var(--amx-info); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-note--warn { border-left-color: var(--amx-warn); background: var(--amx-warn-soft); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-note--warn > svg { color: var(--amx-warn); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-kv,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-list {
display: grid;
gap: 0;
max-width: 82ch;
margin-block: 0 26px;
padding: 0;
border: 1px solid var(--amx-line);
border-radius: var(--amx-radius);
background: var(--amx-surface);
box-shadow: none;
overflow: hidden;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-kv-row,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-row {
display: grid;
grid-template-columns: auto minmax(0, 1fr);
align-items: start;
gap: 15px;
margin: 0;
padding: 17px 20px;
border: 0;
border-top: 1px solid var(--amx-line-soft);
border-radius: 0;
background: none;
box-shadow: none;
transition: background .22s ease;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-kv-row:first-child,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-row:first-child { border-top: 0; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-kv-row:hover,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-row:hover { background: var(--amx-surface-2); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-kv-row .amx-ico,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-row .amx-ico {
display: grid;
place-items: center;
width: 36px;
height: 36px;
flex: 0 0 36px;
border: 0;
border-radius: 10px;
background: var(--amx-accent-soft);
box-shadow: none;
color: var(--amx-accent);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-kv-row .amx-ico svg,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-row .amx-ico svg { width: 16px; height: 16px; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-kv-row > div,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-row > div {
min-width: 0;
color: var(--amx-text-2);
font-size: 14.8px;
line-height: 1.62;
overflow-wrap: anywhere;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-kv-row strong,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-row strong {
display: block;
margin-bottom: 3px;
color: var(--amx-muted);
font-size: 10px;
font-weight: 850;
letter-spacing: .12em;
text-transform: uppercase;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-kv-row > div > span {
display: block;
color: var(--amx-text);
font-weight: 600;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-split {
display: grid;
grid-template-columns: minmax(0, 1.65fr) minmax(240px, .95fr);
gap: 30px;
align-items: start;
margin-block: 0 28px;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-split-body > :last-child { margin-bottom: 0; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-split-body p { max-width: 68ch; color: var(--amx-text-2); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-split-aside {
padding: 22px;
border: 1px solid var(--amx-line);
border-radius: var(--amx-radius);
background: var(--amx-surface-2);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-split-aside > strong {
display: block;
margin-bottom: 9px;
color: var(--amx-accent);
font-size: 10.5px;
font-weight: 850;
letter-spacing: .12em;
text-transform: uppercase;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-split-aside p {
margin: 0 0 10px;
color: var(--amx-muted);
font-size: 14.2px;
line-height: 1.68;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-split-aside p:last-child { margin-bottom: 0; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-quote {
max-width: 74ch;
margin-block: 0 30px;
padding: 4px 0 4px 26px;
border-left: 3px solid var(--amx-accent);
background: none;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-quote blockquote {
margin: 0;
padding: 0;
border: 0;
background: none;
quotes: none;
color: var(--amx-text);
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(19px, 2.1vw, 25px);
font-style: italic;
font-weight: 400;
letter-spacing: -0.015em;
line-height: 1.44;
text-wrap: balance;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-quote blockquote::before,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-quote blockquote::after { content: none; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-quote figcaption {
margin-top: 14px;
color: var(--amx-muted);
font-size: 10.5px;
font-weight: 800;
letter-spacing: .12em;
text-transform: uppercase;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-faq {
max-width: 86ch;
margin-block: 0 28px;
border: 1px solid var(--amx-line);
border-radius: var(--amx-radius);
background: var(--amx-surface);
overflow: hidden;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page details.amx-faq-item {
margin: 0;
padding: 0;
border: 0;
border-top: 1px solid var(--amx-line-soft);
border-radius: 0;
background: none;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page details.amx-faq-item:first-child { border-top: 0; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page details.amx-faq-item > summary {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
align-items: center;
gap: 18px;
padding: 18px 20px;
color: var(--amx-text);
font-size: 15.8px;
font-weight: 750;
letter-spacing: -0.012em;
line-height: 1.48;
list-style: none;
cursor: pointer;
transition: background .2s ease, color .2s ease;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page details.amx-faq-item > summary::-webkit-details-marker { display: none; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page details.amx-faq-item > summary::marker { content: ""; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page details.amx-faq-item > summary:hover { background: var(--amx-surface-2); color: var(--amx-accent); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page details.amx-faq-item > summary::after {
content: "";
display: block;
width: 9px;
height: 9px;
margin-right: 4px;
border-right: 2px solid var(--amx-accent);
border-bottom: 2px solid var(--amx-accent);
transform: rotate(45deg) translate(-2px, -2px);
transition: transform .34s var(--amx-ease);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page details.amx-faq-item[open] > summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page details.amx-faq-item[open] > summary { color: var(--amx-accent); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page details.amx-faq-item > div {
overflow: hidden;
transition: height .34s var(--amx-ease);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page details.amx-faq-item > div > p {
max-width: 74ch;
margin: 0 20px 18px;
color: var(--amx-muted);
font-size: 14.8px;
line-height: 1.72;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page details.amx-faq-item > div > p:first-child { margin-top: -2px; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page code {
padding: 2px 6px;
border: 1px solid var(--amx-line);
border-radius: 5px;
background: var(--amx-surface-2);
color: var(--amx-text);
font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
font-size: .88em;
white-space: nowrap;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-pill-row {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-block: 0 26px;
padding: 0;
list-style: none;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-pill {
display: inline-flex;
align-items: center;
padding: 7px 14px;
border: 1px solid var(--amx-line);
border-radius: 999px;
background: var(--amx-surface-2);
color: var(--amx-text-2);
font-size: 12.5px;
font-weight: 650;
line-height: 1.4;
transition: border-color .22s ease, color .22s ease, transform .3s var(--amx-ease);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-pill:hover {
transform: translateY(-2px);
border-color: var(--amx-accent-line);
color: var(--amx-accent);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-badge {
display: inline-block;
width: auto;
max-width: 100%;
margin: 0 .12em;
padding: 3px 9px;
border: 0;
border-radius: 6px;
background: var(--amx-accent-soft);
box-shadow: none;
color: var(--amx-accent);
font-size: 11px;
font-weight: 800;
letter-spacing: .06em;
line-height: 1.35;
text-transform: uppercase;
vertical-align: middle;
white-space: nowrap;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-layout {
display: grid;
grid-template-columns: 252px minmax(0, 1fr);
gap: 46px;
align-items: start;
margin-block: 0 10px;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc {
position: sticky;
top: 96px;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
align-items: stretch;
max-height: calc(100vh - 130px);
padding: 18px 16px;
overflow-x: clip;
overflow-y: auto;
border: 1px solid var(--amx-line);
border-radius: var(--amx-radius);
background: var(--amx-surface-2);
box-shadow: none;
scrollbar-width: thin;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc::before { content: none; display: none; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc-title {
display: block;
margin: 0 0 12px;
padding: 0 0 11px 12px;
border-bottom: 1px solid var(--amx-line);
color: var(--amx-muted);
font-size: 10px;
font-weight: 850;
letter-spacing: .13em;
text-transform: uppercase;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc a {
position: relative;
display: block;
margin: 0;
padding: 8px 10px 8px 13px;
border: 0;
border-radius: 8px;
background: none;
color: var(--amx-muted);
font-size: 13px;
font-weight: 600;
line-height: 1.42;
text-decoration: none;
transition: color .2s ease, background .2s ease;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc a::before {
content: "";
position: absolute;
top: 50%;
left: 0;
width: 2px;
height: 0;
border-radius: 2px;
background: var(--amx-accent);
transform: translateY(-50%);
transition: height .3s var(--amx-ease);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc a:hover {
background: color-mix(in srgb, var(--amx-accent) 6%, transparent);
color: var(--amx-text);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc a:hover::before { height: 40%; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc a.is-active {
background: var(--amx-accent-soft);
color: var(--amx-accent);
font-weight: 750;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc a.is-active::before { height: 62%; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy { position: relative; min-width: 0; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-layout { --amx-progress: 0%; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy::before {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: -23px;
width: 2px;
border-radius: 2px;
background: var(--amx-line);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy::after {
content: "";
position: absolute;
top: 0;
left: -23px;
width: 2px;
height: var(--amx-progress, 0%);
border-radius: 2px;
background: var(--amx-accent);
transition: height .12s linear;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy > .amx-h { margin: 34px 0 15px; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy > .amx-h:first-of-type { margin-top: 4px; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy > p {
max-width: 74ch;
margin: 0 0 15px;
color: var(--amx-text-2);
font-size: 15.6px;
line-height: 1.76;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy .amx-h h2 { font-size: clamp(18.5px, 1.9vw, 22px); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy .amx-h-num {
width: 30px;
height: 30px;
border-radius: 9px;
font-size: 11px;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-table-wrap {
margin-block: 0 26px;
padding: 0;
overflow-x: auto;
border: 1px solid var(--amx-line);
border-radius: var(--amx-radius);
background: var(--amx-surface);
box-shadow: none;
-webkit-overflow-scrolling: touch;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page table.amx-table {
width: 100%;
margin: 0;
border: 0;
border-collapse: collapse;
font-size: 14px;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page table.amx-table th {
padding: 13px 16px;
border: 0;
border-bottom: 1px solid var(--amx-line);
background: var(--amx-surface-2);
color: var(--amx-muted);
font-size: 10px;
font-weight: 850;
letter-spacing: .11em;
text-align: left;
text-transform: uppercase;
white-space: nowrap;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page table.amx-table td {
padding: 14px 16px;
border: 0;
border-top: 1px solid var(--amx-line-soft);
background: none;
color: var(--amx-text-2);
line-height: 1.62;
vertical-align: top;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page table.amx-table tbody tr { transition: background .2s ease; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page table.amx-table tbody tr:hover { background: var(--amx-surface-2); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page table.amx-table td strong {
color: var(--amx-text);
font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
font-size: 13px;
font-weight: 700;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-search {
margin-block: 0 30px;
padding: 22px;
border: 1px solid var(--amx-line);
border-radius: var(--amx-radius);
background: var(--amx-surface-2);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-search label {
display: block;
margin-bottom: 11px;
color: var(--amx-muted);
font-size: 10.5px;
font-weight: 850;
letter-spacing: .12em;
text-transform: uppercase;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-search > div { display: flex; gap: 10px; flex-wrap: wrap; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-search input[type="search"] {
flex: 1 1 240px;
min-width: 0;
min-height: 46px;
padding: 11px 16px;
border: 1px solid var(--amx-line-strong);
border-radius: 10px;
background: var(--amx-surface);
color: var(--amx-text);
font-family: inherit;
font-size: 15px;
transition: border-color .2s ease, box-shadow .2s ease;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-search input[type="search"]:focus {
border-color: var(--amx-accent);
box-shadow: 0 0 0 3px color-mix(in srgb, var(--amx-accent) 16%, transparent);
outline: none;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-search button {
min-height: 46px;
padding: 11px 24px;
border: 1px solid var(--amx-accent);
border-radius: 10px;
background: var(--amx-accent);
color: #fff;
font-family: inherit;
font-size: 14px;
font-weight: 800;
cursor: pointer;
transition: background .2s ease, transform .25s var(--amx-ease);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-search button:hover { background: var(--amx-accent-ink); transform: translateY(-2px); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 34px;
margin-block: 0 30px;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col {
padding: 0;
border: 0;
background: none;
box-shadow: none;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col h2,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col h3 {
margin: 0 0 14px;
padding: 0 0 11px;
border-bottom: 1px solid var(--amx-line);
color: var(--amx-text);
font-size: 13px;
font-weight: 850;
letter-spacing: .1em;
text-transform: uppercase;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col h2 + h2,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col ul + h2,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col h3 + h3,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col ul + h3 { margin-top: 30px; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col ul { margin: 0 0 8px; padding: 0; list-style: none; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col li {
margin: 0;
padding: 0;
border-top: 1px solid var(--amx-line-soft);
background: none;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col li::before { content: none; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col li:first-child { border-top: 0; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col li a {
display: block;
padding: 10px 8px 10px 0;
color: var(--amx-text-2);
font-size: 14.6px;
font-weight: 600;
text-decoration: none;
transition: color .2s ease, padding-left .25s var(--amx-ease);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-col li a:hover { padding-left: 8px; color: var(--amx-accent); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-btn {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 9px;
min-height: 50px;
margin: 0;
padding: 13px 26px;
overflow: hidden;
border: 1px solid var(--amx-accent);
border-radius: 11px;
background: var(--amx-accent);
box-shadow: none;
color: #fff !important;
font-family: inherit;
font-size: 14.5px;
font-weight: 800;
letter-spacing: -0.005em;
line-height: 1.3;
text-decoration: none !important;
cursor: pointer;
transition: background .2s ease, transform .28s var(--amx-ease), box-shadow .28s ease;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-btn:hover {
background: var(--amx-accent-ink);
border-color: var(--amx-accent-ink);
transform: translateY(-2px);
box-shadow: 0 12px 26px color-mix(in srgb, var(--amx-accent) 30%, transparent);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-btn::after {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: -60%;
width: 40%;
background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .28), transparent);
transform: skewX(-18deg);
transition: left .55s var(--amx-ease);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-btn:hover::after { left: 130%; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-btn--ghost {
border-color: var(--amx-line-strong);
background: transparent;
color: var(--amx-text) !important;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-btn--ghost:hover {
border-color: var(--amx-accent);
background: var(--amx-accent-soft);
color: var(--amx-accent) !important;
box-shadow: none;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-btn--ghost::after { content: none; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-cookie-actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-block: 0 30px;
padding: 0;
border: 0;
background: none;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-cta {
position: relative;
margin-block: var(--amx-block) 8px;
padding: clamp(30px, 3.6vw, 44px);
overflow: hidden;
border: 1px solid var(--amx-line);
border-radius: var(--amx-radius-lg);
background:
radial-gradient(ellipse 30rem 18rem at 88% 0, color-mix(in srgb, var(--amx-accent) 9%, transparent), transparent 70%),
linear-gradient(120deg, var(--amx-soft), var(--amx-surface) 70%);
box-shadow: none;
color: var(--amx-text);
text-align: left;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-cta::before,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-cta::after { content: none; display: none; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-cta h3 {
margin: 0 0 10px;
color: var(--amx-text);
font-size: clamp(21px, 2.3vw, 27px);
font-weight: 850;
letter-spacing: -0.025em;
line-height: 1.22;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-cta p {
max-width: 62ch;
margin: 0 0 22px;
color: var(--amx-muted);
font-size: 15.5px;
line-height: 1.68;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-cta .amx-btn { margin: 0 10px 10px 0; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-meta-bar {
display: flex;
flex-wrap: wrap;
gap: 10px 28px;
margin-block: 0 26px;
padding: 13px 0;
border: 0;
border-top: 1px solid var(--amx-line);
border-bottom: 1px solid var(--amx-line);
border-radius: 0;
background: none;
box-shadow: none;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-meta-bar span {
display: inline-flex;
align-items: center;
gap: 9px;
color: var(--amx-muted);
font-size: 12.8px;
line-height: 1.5;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-meta-bar svg { width: 15px; height: 15px; color: var(--amx-accent); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-meta-bar strong {
color: var(--amx-text);
font-size: 10px;
font-weight: 850;
letter-spacing: .11em;
text-transform: uppercase;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-endcap {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 20px 30px;
margin: var(--amx-block) 0 0;
padding: 28px var(--amx-gutter);
border-radius: 20px 20px 24px 24px;
background:
radial-gradient(ellipse 34rem 18rem at 92% 120%, color-mix(in srgb, var(--primary-color, #EC5725) 20%, transparent), transparent 70%),
#1e1c1a;
color: #f4f1ee;
}
:root body.amx-generated-page .amx-page-endcap-brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
:root body.amx-generated-page .amx-page-endcap-brand > span {
display: grid;
place-items: center;
width: 44px;
height: 44px;
flex: 0 0 44px;
border-radius: 13px;
background: color-mix(in srgb, var(--primary-color, #EC5725) 22%, transparent);
color: var(--primary-color, #EC5725);
font-size: 18px;
}
:root body.amx-generated-page .amx-page-endcap-brand strong { display: block; color: #fff; font-size: 15.5px; font-weight: 850; letter-spacing: -0.015em; }
:root body.amx-generated-page .amx-page-endcap-brand small { display: block; margin-top: 3px; color: #a8a09a; font-size: 12.2px; }
:root body.amx-generated-page .amx-page-endcap-links { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-endcap a {
color: #ddd6d0;
font-size: 13px;
font-weight: 650;
text-decoration: none;
transition: color .2s ease;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-endcap a:hover { color: #fff; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-endcap-cta {
display: inline-flex;
align-items: center;
gap: 9px;
min-height: 44px;
padding: 11px 20px;
border-radius: 11px;
background: var(--primary-color, #EC5725);
color: #fff;
font-weight: 800;
transition: background .2s ease, transform .25s var(--amx-ease);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-endcap-cta:hover {
background: var(--primary-dark, #D93802);
transform: translateY(-2px);
color: #fff;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-endcap-cta span { transition: transform .3s var(--amx-ease); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-endcap-cta:hover span { transform: translateX(4px); }
:root body.amx-generated-page .amx-hero-art { grid-column: 2; grid-row: 1 / 4; }
:root html.amx-anim body.amx-generated-page .amx-hero-art-orbit { animation: amxSpin 46s linear infinite; }
@keyframes amxSpin {
from { transform: translate(-50%, -50%) rotate(0deg); }
to   { transform: translate(-50%, -50%) rotate(360deg); }
}
:root html.amx-anim body.amx-generated-page .amx-hero.is-in .amx-hero-art-paper { animation: amxPaperFloat 7s ease-in-out 1s infinite; }
@keyframes amxPaperFloat {
0%, 100% { transform: translate(-50%, -50%) rotate(5deg); }
50%      { transform: translate(-50%, calc(-50% - 9px)) rotate(5deg); }
}
:root html.amx-anim body.amx-generated-page .amx-hero.is-in .amx-hero-art-seal { animation: amxSealFloat 7s ease-in-out 2.2s infinite; }
@keyframes amxSealFloat {
0%, 100% { transform: translateY(0) rotate(-7deg); }
50%      { transform: translateY(-9px) rotate(-7deg); }
}
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-reveal {
opacity: 0;
transform: translateY(24px);
will-change: opacity, transform;
}
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-reveal.is-in {
opacity: 1;
transform: none;
transition: opacity .62s ease, transform .72s var(--amx-ease);
will-change: auto;
}
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-reveal > .amx-card,
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-reveal > li,
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-reveal > .amx-trust-item,
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-reveal > .amx-kv-row,
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-reveal > .amx-contact-row,
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-reveal > .amx-stat,
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-reveal > .amx-faq-item {
opacity: 0;
transform: translateY(16px);
}
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-reveal.is-in > .amx-card,
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-reveal.is-in > li,
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-reveal.is-in > .amx-trust-item,
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-reveal.is-in > .amx-kv-row,
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-reveal.is-in > .amx-contact-row,
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-reveal.is-in > .amx-stat,
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-reveal.is-in > .amx-faq-item {
opacity: 1;
transform: none;
transition: opacity .5s ease var(--amx-stagger, 0ms), transform .58s var(--amx-ease) var(--amx-stagger, 0ms);
}
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero.amx-reveal > .amx-hero-kicker,
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero.amx-reveal > .amx-hero-title,
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero.amx-reveal > .amx-hero-sub,
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero.amx-reveal > .amx-hero-img {
opacity: 0;
transform: translateY(24px) scale(.97);
}
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero.amx-reveal.is-in > .amx-hero-kicker,
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero.amx-reveal.is-in > .amx-hero-title,
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero.amx-reveal.is-in > .amx-hero-sub,
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero.amx-reveal.is-in > .amx-hero-img {
opacity: 1;
transform: none;
transition: opacity .66s ease, transform .8s var(--amx-ease);
}
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero.amx-reveal.is-in > .amx-hero-title { transition-delay: .1s; }
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero.amx-reveal.is-in > .amx-hero-sub { transition-delay: .19s; }
:root html.amx-anim body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero.amx-reveal.is-in > .amx-hero-img { transition-delay: .12s; }
:root body.dark-mode.amx-generated-page .main-content {
background:
radial-gradient(ellipse 60rem 30rem at 12% -4%, color-mix(in srgb, var(--primary-color, #EC5725) 12%, transparent), transparent 70%),
linear-gradient(180deg, #151413 0, #1a1918 40rem);
}
:root body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page {
--amx-surface: #221f1d;
--amx-surface-2: #1c1a19;
--amx-soft: #2a2724;
--amx-soft-2: #201f1d;
--amx-line: #3d3833;
--amx-line-soft: #322e2a;
--amx-line-strong: #58504a;
--amx-text: #f3f0ec;
--amx-text-2: #d9d3cc;
--amx-muted: #a9a19a;
--amx-accent-soft: color-mix(in srgb, var(--primary-color, #EC5725) 20%, #221f1d);
--amx-accent-line: color-mix(in srgb, var(--primary-color, #EC5725) 40%, transparent);
--amx-ok-soft: color-mix(in srgb, #2f7d52 16%, #221f1d);
--amx-warn-soft: color-mix(in srgb, #a4620d 16%, #221f1d);
--amx-info-soft: color-mix(in srgb, #24618f 16%, #221f1d);
--amx-shadow: 0 16px 46px rgba(0, 0, 0, .3);
--amx-shadow-lift: 0 20px 52px rgba(0, 0, 0, .42);
box-shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 24px 74px rgba(0, 0, 0, .34);
}
:root body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero,
:root body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim {
background: linear-gradient(118deg, #2b2825 0%, #221f1d 62%);
}
:root body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav {
background: linear-gradient(180deg, #262320, #221f1d);
}
:root body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-cta {
background:
radial-gradient(ellipse 30rem 18rem at 88% 0, color-mix(in srgb, var(--primary-color, #EC5725) 16%, transparent), transparent 70%),
linear-gradient(120deg, #2b2825, #221f1d 70%);
}
:root body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-note--ok > svg { color: #6ec293; }
:root body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-note--info > svg { color: #7fb4de; }
:root body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-note--warn > svg { color: #e0a552; }
:root body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-note--ok { border-left-color: #6ec293; }
:root body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-note--info { border-left-color: #7fb4de; }
:root body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-note--warn { border-left-color: #e0a552; }
:root body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-endcap {
background:
radial-gradient(ellipse 34rem 18rem at 92% 120%, color-mix(in srgb, var(--primary-color, #EC5725) 24%, transparent), transparent 70%),
#151413;
}
:root body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-btn--ghost { color: var(--amx-text) !important; }
:root body.dark-mode.amx-generated-page .page-content-single .entry-content .amx-page .amx-btn::after { background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .16), transparent); }
@media (max-width: 1080px) {
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-layout {
grid-template-columns: 1fr;
gap: 24px;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc {
position: static;
max-height: none;
flex-direction: row;
flex-wrap: wrap;
gap: 6px;
align-items: center;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc-title {
width: 100%;
margin: 0 0 6px;
padding: 0 0 9px;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc a {
padding: 8px 12px;
border: 1px solid var(--amx-line);
border-radius: 999px;
font-size: 12.5px;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc a::before { content: none; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy::before,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy::after { content: none; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-split { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 820px) {
:root body.amx-generated-page .page-content-single { padding-inline: 12px; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav { grid-template-columns: minmax(0, 1fr) auto; }
:root body.amx-generated-page .amx-page-nav-primary,
:root body.amx-generated-page .amx-page-nav-secondary {
grid-column: 1 / -1;
justify-content: flex-start;
overflow-x: auto;
scrollbar-width: thin;
}
:root body.amx-generated-page .amx-page-nav-primary { order: 3; padding-top: 4px; }
:root body.amx-generated-page .amx-page-nav-secondary { order: 4; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-img),
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-art),
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim:has(.amx-hero-art) {
grid-template-columns: minmax(0, 1fr);
grid-template-rows: auto;
gap: 0;
min-height: 0;
padding: 0 0 34px;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero .amx-hero-img,
:root body.amx-generated-page .amx-hero-art {
grid-column: 1;
grid-row: 1;
width: 100%;
min-height: 240px;
height: 240px;
margin: 0 0 30px;
border-radius: 21px 21px 0 0;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-img) > :not(.amx-hero-img),
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-art) > :not(.amx-hero-art),
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim:has(.amx-hero-art) > :not(.amx-hero-art) {
grid-column: 1;
margin-inline: 0;
padding-inline: var(--amx-gutter);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-trust-strip { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-trust-item { padding: 18px 16px; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-stat { padding: 20px 16px; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-endcap {
align-items: flex-start;
flex-direction: column;
}
}
.r34c8-live-story-alert[hidden] {
display: none !important;
}
.r34c8-live-story-alert [hidden] {
display: none !important;
}
.r34c8-live-story-alert {
position: fixed;
top: var(--r34c8-live-alert-top, 76px);
right: max(18px, env(safe-area-inset-right, 0px));
z-index: 9980;
width: min(392px, calc(100vw - 36px));
overflow: hidden;
border: 1px solid rgba(41, 41, 41, .12);
border-radius: 16px;
background: rgba(255, 255, 255, .98);
box-shadow: 0 18px 48px rgba(24, 20, 18, .18), 0 3px 10px rgba(24, 20, 18, .08);
color: #292929;
opacity: 0;
transform: translateY(-12px) scale(.985);
transform-origin: top right;
pointer-events: none;
transition: opacity .24s ease, transform .28s cubic-bezier(.2, .8, .2, 1), top .18s ease;
-webkit-font-smoothing: antialiased;
}
.r34c8-live-story-alert::before {
position: absolute;
inset: 0 auto 0 0;
z-index: 2;
width: 4px;
background: linear-gradient(180deg, var(--primary-color, #EC5725), var(--primary-dark, #D93802));
content: "";
}
.r34c8-live-story-alert.is-visible {
opacity: 1;
transform: translateY(0) scale(1);
pointer-events: auto;
}
.r34c8-live-story-alert__announcement {
position: absolute !important;
width: 1px !important;
height: 1px !important;
padding: 0 !important;
overflow: hidden !important;
clip: rect(0, 0, 0, 0) !important;
white-space: nowrap !important;
border: 0 !important;
}
.r34c8-live-story-alert:focus-within {
border-color: color-mix(in srgb, var(--primary-color, #EC5725) 60%, #292929);
box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color, #EC5725) 18%, transparent), 0 18px 48px rgba(24, 20, 18, .18);
}
.r34c8-live-story-alert__link {
display: grid;
grid-template-columns: 78px minmax(0, 1fr);
gap: 13px;
align-items: center;
min-height: 104px;
padding: 11px 42px 11px 12px;
color: inherit !important;
text-decoration: none !important;
}
.r34c8-live-story-alert__link:focus-visible {
outline: 0;
}
.r34c8-live-story-alert__media {
display: block;
width: 78px;
height: 82px;
overflow: hidden;
border-radius: 11px;
background: linear-gradient(145deg, #FEEBE4, #F8D5C7);
}
.r34c8-live-story-alert__image,
.r34c8-live-story-alert__fallback {
width: 100%;
height: 100%;
}
.r34c8-live-story-alert__image {
display: block;
object-fit: cover;
}
.r34c8-live-story-alert__fallback {
display: flex;
align-items: center;
justify-content: center;
color: var(--primary-dark, #D93802);
font-size: 24px;
}
.r34c8-live-story-alert__copy {
display: flex;
min-width: 0;
flex-direction: column;
align-items: flex-start;
}
.r34c8-live-story-alert__eyebrow {
display: inline-flex;
align-items: center;
gap: 7px;
margin-bottom: 6px;
color: var(--primary-dark, #D93802);
font-size: 10px;
font-weight: 800;
line-height: 1.15;
letter-spacing: .13em;
text-transform: uppercase;
}
.r34c8-live-story-alert__pulse {
width: 7px;
height: 7px;
border-radius: 50%;
background: var(--primary-color, #EC5725);
box-shadow: 0 0 0 0 rgba(236, 87, 37, .42);
animation: r34c8-live-alert-pulse 1.8s ease-out infinite;
}
@keyframes r34c8-live-alert-pulse {
70%, 100% { box-shadow: 0 0 0 7px rgba(236, 87, 37, 0); }
}
.r34c8-live-story-alert__title {
display: -webkit-box;
overflow: hidden;
color: #252525;
font-family: var(--font-heading, var(--font-stack, Arial, sans-serif));
font-size: 15px;
font-weight: 750;
line-height: 1.3;
letter-spacing: -.012em;
text-wrap: pretty;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
.r34c8-live-story-alert__meta {
display: block;
overflow: hidden;
max-width: 100%;
margin-top: 7px;
color: #716B67;
font-size: 11.5px;
font-weight: 600;
line-height: 1.2;
text-overflow: ellipsis;
white-space: nowrap;
}
.r34c8-live-story-alert__close {
position: absolute;
top: 7px;
right: 7px;
z-index: 3;
display: inline-flex;
width: 32px;
height: 32px;
padding: 0;
align-items: center;
justify-content: center;
border: 0;
border-radius: 50%;
background: transparent;
color: #8A837E;
font: 400 23px/1 Arial, sans-serif;
cursor: pointer;
transition: background .18s ease, color .18s ease, transform .18s ease;
}
.r34c8-live-story-alert__close:hover,
.r34c8-live-story-alert__close:focus-visible {
background: #F6F1EE;
color: #292929;
outline: 0;
}
.r34c8-live-story-alert__close:active {
transform: scale(.92);
}
body.dark-mode .r34c8-live-story-alert {
border-color: rgba(255, 255, 255, .12);
background: rgba(29, 28, 28, .98);
box-shadow: 0 20px 54px rgba(0, 0, 0, .44), 0 3px 12px rgba(0, 0, 0, .28);
color: #F5F3F1;
}
body.dark-mode .r34c8-live-story-alert__title { color: #F8F7F6; }
body.dark-mode .r34c8-live-story-alert__meta { color: #B8B1AC; }
body.dark-mode .r34c8-live-story-alert__media { background: linear-gradient(145deg, #3D2B24, #2B211D); }
body.dark-mode .r34c8-live-story-alert__close { color: #B8B1AC; }
body.dark-mode .r34c8-live-story-alert__close:hover,
body.dark-mode .r34c8-live-story-alert__close:focus-visible { background: #363331; color: #FFF; }
@media (max-width: 600px) {
.r34c8-live-story-alert {
right: max(12px, env(safe-area-inset-right, 0px));
width: min(368px, calc(100vw - 24px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)));
border-radius: 14px;
}
.r34c8-live-story-alert__link {
grid-template-columns: 64px minmax(0, 1fr);
gap: 11px;
min-height: 88px;
padding: 9px 38px 9px 10px;
}
.r34c8-live-story-alert__media {
width: 64px;
height: 68px;
border-radius: 9px;
}
.r34c8-live-story-alert__eyebrow { margin-bottom: 4px; font-size: 9px; }
.r34c8-live-story-alert__title { font-size: 14px; line-height: 1.27; }
.r34c8-live-story-alert__meta { margin-top: 5px; font-size: 10.5px; }
.r34c8-live-story-alert__close { top: 4px; right: 4px; }
}
@media (prefers-reduced-motion: reduce) {
.r34c8-live-story-alert { transition: none; }
.r34c8-live-story-alert__pulse { animation: none; }
}
@media print {
.r34c8-live-story-alert { display: none !important; }
}
@media (max-width: 560px) {
:root body.amx-generated-page .main-content { padding-top: 10px; }
:root body.amx-generated-page .page-content-single { padding: 0 6px 48px; }
:root body.amx-generated-page .page-content-single > .entry-content { font-size: 16px; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page {
--amx-gutter: 14px;
padding: 8px 8px 0;
border-radius: 18px;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav { gap: 9px 12px; padding: 10px; border-radius: 13px; }
:root body.amx-generated-page .amx-page-nav-brand > i { width: 32px; height: 32px; flex-basis: 32px; }
:root body.amx-generated-page .amx-page-nav-brand strong { max-width: 118px; }
:root body.amx-generated-page .amx-page-nav-brand small { display: none; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-nav-cta { min-height: 40px; padding: 8px 12px; }
:root body.amx-generated-page .amx-page-nav-primary { gap: 20px; }
:root body.amx-generated-page .amx-page-nav-secondary { gap: 15px; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim { border-radius: 14px; padding: 26px var(--amx-gutter) 30px; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-img),
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-art),
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim:has(.amx-hero-art) { padding-inline: 0; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero .amx-hero-img,
:root body.amx-generated-page .amx-hero-art { border-radius: 13px 13px 0 0; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page h1.amx-hero-title,
:root body.amx-generated-page .page-content-single .entry-content .amx-page h2.amx-hero-title,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero-title { font-size: clamp(32px, 9.5vw, 42px); }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-trust-strip,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-3:has(> .amx-stat),
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-4:has(> .amx-stat) { grid-template-columns: 1fr; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-trust-item,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-stat {
padding: 16px 0;
border-left: 0;
border-top: 1px solid var(--amx-line-soft);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-trust-item:first-child,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-stat:first-child { border-top: 0; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-trust-item {
display: grid;
grid-template-columns: 34px minmax(0, 1fr);
column-gap: 14px;
row-gap: 2px;
align-items: center;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-trust-item .amx-ico { grid-row: 1 / 3; align-self: start; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-trust-item strong,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-trust-item > span:last-child { grid-column: 2; min-width: 0; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-h { gap: 12px; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-h-num { width: 30px; height: 30px; border-radius: 9px; font-size: 10.5px; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-btn { width: 100%; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-cta .amx-btn { margin-right: 0; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap { gap: 26px; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page details.amx-faq-item > summary { padding: 16px; font-size: 15px; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page details.amx-faq-item > div > p { margin-inline: 16px; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-endcap {
margin-top: 44px;
padding: 24px 18px;
border-radius: 14px 14px 17px 17px;
}
:root body.amx-generated-page .amx-page-endcap-links { flex-wrap: wrap; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-endcap-cta { width: 100%; justify-content: center; }
}
@media (max-width: 680px) {
:root body.amx-generated-page .page-content-single .entry-content .amx-page table.amx-table thead { display: none; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page table.amx-table tbody tr {
display: block;
padding: 14px 16px;
border-top: 1px solid var(--amx-line);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page table.amx-table tbody tr:first-child { border-top: 0; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page table.amx-table td {
display: grid;
grid-template-columns: 108px minmax(0, 1fr);
gap: 12px;
padding: 5px 0;
border: 0;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page table.amx-table td::before {
content: attr(data-label);
color: var(--amx-muted);
font-size: 9.5px;
font-weight: 850;
letter-spacing: .1em;
line-height: 1.7;
text-transform: uppercase;
}
}
@media (prefers-reduced-motion: reduce) {
:root body.amx-generated-page .page-content-single .entry-content .amx-page *,
:root body.amx-generated-page .page-content-single .entry-content .amx-page *::before,
:root body.amx-generated-page .page-content-single .entry-content .amx-page *::after {
animation-duration: .001ms !important;
animation-iteration-count: 1 !important;
transition-duration: .001ms !important;
scroll-behavior: auto !important;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-reveal,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-reveal > * {
opacity: 1 !important;
transform: none !important;
}
}
@media print {
:root body.amx-generated-page .main-content { background: #fff; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page {
max-width: none;
padding: 0;
border: 0;
border-radius: 0;
box-shadow: none;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-endcap,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-cta,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-cookie-actions,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-search { display: none !important; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-layout { display: block; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-card,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-note {
border: 1px solid #ccc;
background: #fff;
box-shadow: none;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero::before,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero::after { display: none; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page details.amx-faq-item > div { height: auto !important; }
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero h1.amx-hero-title,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero h2.amx-hero-title,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim h1.amx-hero-title {
max-width: 20ch;
margin-inline: 0;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page > ul.amx-check,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > ol.amx-steps,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > p.amx-lede,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > div.amx-note,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > div.amx-cta,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > div.amx-split,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > div.amx-faq,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > div.amx-kv,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > div.amx-contact-list,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > div.amx-table-wrap,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > div.amx-meta-bar,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > div.amx-pill-row,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > div.amx-trust-strip,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > div.amx-legal-layout,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > div.amx-sitemap,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > form.amx-sitemap-search,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > div.amx-grid-2,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > div.amx-grid-3,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > div.amx-grid-4,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > figure.amx-quote {
margin-inline: var(--amx-gutter);
width: auto;
max-width: none;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc > a,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-toc > .amx-toc-title {
width: auto;
max-width: 100%;
overflow-wrap: break-word;
flex: 0 0 auto;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim {
justify-content: normal;
justify-items: stretch;
place-content: normal;
}
@media (max-width: 420px) {
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-2,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-3,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-4,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-trust-strip {
grid-template-columns: minmax(0, 1fr);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-search > div { flex-direction: column; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-search input[type="search"],
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-sitemap-search button { flex: 1 1 auto; width: 100%; }
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav {
display: flex;
align-items: center;
justify-content: flex-start;
width: auto;
margin: 0 0 14px;
padding: 0;
border: 0;
border-radius: 0;
background: transparent;
box-shadow: none;
}
:root body.amx-generated-page .amx-page-nav-primary,
:root body.amx-generated-page .amx-page-nav-secondary,
:root body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-nav-cta {
display: none !important;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-home,
:root body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-nav-brand {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 9px;
min-height: 44px;
padding: 10px 16px;
border: 1px solid var(--amx-line);
border-radius: 11px;
background: var(--amx-surface-2);
color: var(--amx-text) !important;
font-size: 13px;
font-weight: 800;
line-height: 1;
text-decoration: none !important;
transition: border-color .2s ease, color .2s ease, transform .25s var(--amx-ease), box-shadow .25s ease;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-home:hover,
:root body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-nav-brand:hover {
border-color: var(--amx-accent-line);
color: var(--amx-accent) !important;
transform: translateY(-1px);
box-shadow: 0 7px 18px rgba(42, 31, 23, .08);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-home i,
:root body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-nav-brand > i {
display: grid;
place-items: center;
width: auto;
height: auto;
flex: 0 0 auto;
border: 0;
border-radius: 0;
background: none;
color: var(--amx-accent);
font-size: 14px;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-nav-brand > span { display: none; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-nav-brand::after { content: "Home"; }
@media (min-width: 821px) {
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-img),
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-art),
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim:has(.amx-hero-art) {
display: grid;
grid-template-columns: minmax(390px, 1.12fr) minmax(0, .88fr);
grid-template-rows: minmax(36px, 1fr) auto auto auto minmax(36px, 1fr);
gap: 0;
min-height: 440px;
padding: 0;
align-content: stretch;
align-items: start;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero .amx-hero-img,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero .amx-hero-art {
grid-column: 1;
grid-row: 1 / -1;
align-self: stretch;
width: 100%;
height: 100%;
min-height: 440px;
max-height: none;
margin: 0;
border-radius: 21px 0 0 21px;
object-position: center;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-img) > :not(.amx-hero-img),
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-art) > :not(.amx-hero-art),
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim:has(.amx-hero-art) > :not(.amx-hero-art) {
grid-column: 2;
width: auto;
max-width: none;
margin-inline: 0;
padding-inline: clamp(32px, 4vw, 56px);
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-img) > .amx-hero-kicker,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-art) > .amx-hero-kicker { grid-row: 2; align-self: end; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-img) > .amx-hero-title,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-art) > .amx-hero-title { grid-row: 3; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-img) > .amx-hero-sub,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-art) > .amx-hero-sub { grid-row: 4; align-self: start; }
}
@media (max-width: 820px) {
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-img),
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-art),
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim:has(.amx-hero-art) {
grid-template-columns: minmax(0, 1fr);
grid-template-rows: auto auto auto auto;
gap: 0;
min-height: 0;
padding: 0 0 32px;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero .amx-hero-img,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero .amx-hero-art {
grid-column: 1;
grid-row: 1;
width: 100%;
height: clamp(240px, 54vw, 360px);
min-height: 240px;
max-height: 360px;
margin: 0 0 28px;
border-radius: 21px 21px 0 0;
object-position: center;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-img) > :not(.amx-hero-img),
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero:has(.amx-hero-art) > :not(.amx-hero-art),
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero--slim:has(.amx-hero-art) > :not(.amx-hero-art) {
grid-column: 1;
width: auto;
max-width: none;
margin-inline: 0;
padding-inline: var(--amx-gutter);
}
}
@media (max-width: 560px) {
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-page-nav { margin-bottom: 8px; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-home,
:root body.amx-generated-page .page-content-single .entry-content .amx-page a.amx-page-nav-brand { min-height: 42px; padding: 9px 14px; }
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero .amx-hero-img,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-hero .amx-hero-art {
height: clamp(220px, 62vw, 300px);
min-height: 220px;
border-radius: 13px 13px 0 0;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page code {
white-space: normal;
overflow-wrap: anywhere;
}
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page > p,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > p.amx-lede,
:root body.amx-generated-page .page-content-single .entry-content .amx-page ol.amx-steps > li > p,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-split-body > p,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy > p,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy > ul,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-legal-copy > ol,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > ul:not(.amx-check),
:root body.amx-generated-page .page-content-single .entry-content .amx-page > ol:not(.amx-steps),
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-note,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-kv,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-contact-list,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-faq,
:root body.amx-generated-page .page-content-single .entry-content .amx-page > .amx-quote {
width: auto;
max-width: none;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page p,
:root body.amx-generated-page .page-content-single .entry-content .amx-page li,
:root body.amx-generated-page .page-content-single .entry-content .amx-page td,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-kv-row > div,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-contact-row > div {
min-width: 0;
overflow-wrap: anywhere;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page code {
white-space: normal;
overflow-wrap: anywhere;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-3:has(> .amx-stat),
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-grid-4:has(> .amx-stat) {
padding-inline: 0;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-stat:first-child {
padding-left: 22px;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-stat:last-child {
padding-right: 22px;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-badge.amx-badge--icon,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-badge:has(> svg) {
display: inline-flex;
align-items: center;
gap: 7px;
width: auto;
max-width: 100%;
margin: 0 2px;
vertical-align: middle;
white-space: nowrap;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-badge.amx-badge--icon svg,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-badge:has(> svg) > svg {
display: block;
flex: 0 0 15px;
width: 15px;
height: 15px;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-capability-grid .amx-card {
min-height: 100%;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-capability-grid .amx-card h3 {
text-wrap: balance;
}
@media (max-width: 560px) {
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-stat:first-child,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-stat:last-child {
padding-inline: 0;
}
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-badge.amx-badge--icon,
:root body.amx-generated-page .page-content-single .entry-content .amx-page .amx-badge:has(> svg) {
white-space: normal;
}
}