: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;
}
}