:root {
--kk-primary: #156CC4;
--kkf-primary: var(--kk-primary);
--kkf-primary-rgb: 21, 108, 196;
--kkf-text-color: var(--kk-text);
--kk-navy: #202634;
--kk-text: #1F2937;
--kk-text-soft: #6B7280;
--kk-border: #E5E7EB;
--kk-bg: #FFFFFF;
--kk-bg-light: #F8FAFC;
--kk-card: #FFFFFF;
--kk-header-bg: #FFFFFF;
--kk-badge-bg: rgba(21, 108, 196, 0.08);
--kk-shadow: 0 1px 3px rgba(32, 38, 52, 0.06), 0 1px 2px rgba(32, 38, 52, 0.04);
--kk-radius: 10px;
--kk-radius-sm: 6px;
--kk-font: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
--kk-container: 1200px;
--kk-gap: 1.5rem;
--kk-header-h: 64px;
--kk-transition: 0.15s ease;
--kk-footer-bg: #FFFFFF;
--kk-footer-text: #6B7280;
--kk-footer-heading: #1F2937;
--kk-footer-border: #E5E7EB;
--kk-logo-height: 90px;
}
body.dark-mode {
--kk-primary: #156CC4;
--kkf-primary: var(--kk-primary);
--kkf-primary-rgb: 21, 108, 196;
--kkf-text-color: var(--kk-footer-text);
--kk-navy: #F3F4F6;
--kk-text: #F3F4F6;
--kk-text-soft: #9CA3AF;
--kk-border: #3D4F63;
--kk-bg: #202634;
--kk-bg-light: #1A2233;
--kk-card: #1F2937;
--kk-header-bg: #1F2937;
--kk-badge-bg: rgba(21, 108, 196, 0.2);
--kk-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.18);
--kk-footer-bg: #202634;
--kk-footer-text: #9CA3AF;
--kk-footer-heading: #FFFFFF;
--kk-footer-border: rgba(255, 255, 255, 0.1);
color-scheme: dark;
} *,
*::before,
*::after {
box-sizing: border-box;
}
html {
-webkit-text-size-adjust: 100%;
scroll-behavior: smooth;
}
body {
margin: 0;
font-family: var(--kk-font);
font-size: 1rem;
line-height: 1.6;
color: var(--kk-text);
background-color: var(--kk-bg);
-webkit-font-smoothing: antialiased;
}
img {
max-width: 100%;
height: auto;
display: block;
}
a {
color: var(--kk-primary);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
h1, h2, h3, h4, h5, h6 {
margin: 0 0 0.5em;
line-height: 1.3;
color: var(--kk-text);
font-weight: 600;
}
p {
margin: 0 0 1em;
}
ul, ol {
margin: 0;
padding: 0;
list-style: none;
} .kk-container {
width: 100%;
max-width: var(--kk-container);
margin-inline: auto;
padding-inline: 1rem;
}
.kk-container--article {
max-width: var(--kk-container);
}
.kk-single-layout {
display: grid;
grid-template-columns: minmax(0, 1fr) 340px;
gap: 32px;
align-items: start;
}
.kk-single-layout--solo {
display: block;
}
.kk-single-layout__main {
min-width: 0;
}
@media (max-width: 992px) {
.kk-single-layout {
grid-template-columns: 1fr;
}
} .archive-page-container .archive-layout {
display: grid;
grid-template-columns: minmax(0, 1fr) 340px;
gap: 32px;
align-items: start;
}
.archive-page-container .archive-layout--solo {
display: block;
}
.archive-page-container .archive-main {
min-width: 0;
}
.archive-page-container .archive-sidebar {
width: 340px;
min-width: 0;
}
.archive-page-container .archive-sidebar .kk-sidebar {
width: 100%;
}
@media (max-width: 992px) {
.archive-page-container .archive-layout:not(.archive-layout--solo) {
grid-template-columns: 1fr;
}
.archive-page-container .archive-sidebar {
width: 100%;
}
} .kk-page {
width: 100%;
max-width: none;
}
.kk-page__header {
margin-bottom: 1.5rem;
}
.kk-page__title {
margin: 0;
font-size: 1.75rem;
font-weight: 700;
line-height: 1.3;
color: var(--kk-text);
}
@media (min-width: 768px) {
.kk-page__title {
font-size: 2rem;
}
}
.kk-page__content {
font-size: 1.0625rem;
line-height: 1.8;
color: var(--kk-text);
}
.kk-page__content > *:first-child {
margin-top: 0;
}
.kk-page__content h2 {
font-size: 1.375rem;
margin-top: 2rem;
}
.kk-page__content h3 {
font-size: 1.125rem;
margin-top: 1.5rem;
}
.kk-page__content p {
margin-bottom: 1.25rem;
}
.kk-page__content ul,
.kk-page__content ol {
margin: 0 0 1.25rem 1.25rem;
padding: 0;
list-style: disc;
}
.kk-page__content li {
margin-bottom: 0.375rem;
}
.kk-page__content blockquote {
margin: 1.5rem 0;
padding: 1rem 1.25rem;
border-left: 3px solid var(--kk-primary);
background: var(--kk-bg-light);
border-radius: 0 var(--kk-radius-sm) var(--kk-radius-sm) 0;
color: var(--kk-text-soft);
}
.kk-page__content img {
border-radius: var(--kk-radius-sm);
margin-block: 1rem;
max-width: 100%;
height: auto;
}
.kk-page__content a {
color: var(--kk-primary);
} .kk-sidebar--single {
display: flex;
flex-direction: column;
gap: 1.5rem;
min-width: 0;
}
.kk-sidebar__widget {
background: var(--kk-card);
border: 1px solid var(--kk-border);
border-radius: var(--kk-radius);
padding: 1.25rem;
}
.kk-sidebar__title {
position: relative;
margin: 0 0 1rem;
padding-bottom: 0.65rem;
font-size: 1rem;
font-weight: 700;
line-height: 1.3;
color: var(--kk-text);
}
.kk-sidebar__title::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 42px;
height: 3px;
border-radius: 999px;
background: var(--kk-primary);
} .kk-sidebar-widget__head {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 0.75rem;
margin-bottom: 0.25rem;
}
.kk-sidebar-widget__head-main {
position: relative;
display: flex;
align-items: center;
gap: 0.5rem;
flex: 1;
min-width: 0;
padding-bottom: 0.75rem;
}
.kk-sidebar-widget__head-main::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 42px;
height: 3px;
border-radius: 999px;
background: var(--kk-primary);
}
.kk-sidebar-widget__icon {
font-size: 1rem;
color: var(--kk-primary);
flex-shrink: 0;
}
.kk-sidebar-widget__title {
margin: 0;
font-size: 1rem;
font-weight: 700;
line-height: 1.3;
color: var(--kk-text);
}
.kk-sidebar-widget__more {
display: inline-flex;
align-items: center;
gap: 0.25rem;
flex-shrink: 0;
font-size: 0.75rem;
font-weight: 600;
color: var(--kk-primary);
text-decoration: none;
white-space: nowrap;
transition: opacity var(--kk-transition);
}
.kk-sidebar-widget__more:hover,
.kk-sidebar-widget__more:focus-visible {
opacity: 0.85;
text-decoration: none;
color: var(--kk-primary);
}
.kk-sidebar-widget__more i {
font-size: 0.625rem;
} .kk-sidebar-recent__list {
list-style: none;
margin: 0 -1.25rem;
padding: 0;
}
.kk-sidebar-recent__item {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 0.85rem;
padding: 1rem 1.25rem;
border-bottom: 1px solid var(--kk-border);
}
.kk-sidebar-recent__item:last-child {
border-bottom: none;
padding-bottom: 0;
}
.kk-sidebar-recent__item:first-child {
padding-top: 0.25rem;
}
.kk-sidebar-recent__body {
flex: 1;
min-width: 0;
}
.kk-sidebar-recent__title {
margin: 0 0 0.45rem;
font-size: 0.875rem;
font-weight: 600;
line-height: 1.45;
}
.kk-sidebar-recent__title a {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
color: var(--kk-text);
text-decoration: none;
transition: color var(--kk-transition);
}
.kk-sidebar-recent__title a:hover,
.kk-sidebar-recent__title a:focus-visible {
color: var(--kk-primary);
}
.kk-sidebar-post-excerpt {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
margin: 0;
font-size: 0.8125rem;
line-height: 1.45;
color: var(--kk-text-soft);
}
.kk-sidebar-recent__date {
display: inline-flex;
align-items: center;
gap: 0.35rem;
font-size: 0.75rem;
color: var(--kk-text-soft);
}
.kk-sidebar-recent__date i {
font-size: 0.6875rem;
}
.kk-sidebar-recent__thumb {
flex-shrink: 0;
display: block;
width: 120px;
height: 80px;
border-radius: 10px;
overflow: hidden;
}
.kk-sidebar-recent__img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}
.kk-sidebar-recent__img--placeholder {
background: linear-gradient(135deg, var(--kk-bg-light), var(--kk-border));
} .kk-sidebar-ad__box {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
max-width: 336px;
height: 280px;
margin-inline: auto;
border: 1px dashed var(--kk-border);
border-radius: var(--kk-radius-sm);
background: var(--kk-bg-light);
color: var(--kk-text-soft);
text-align: center;
}
.kk-sidebar-ad__label {
font-size: 0.8125rem;
font-weight: 700;
letter-spacing: 0.06em;
}
.kk-sidebar-ad__size {
margin-top: 0.35rem;
font-size: 0.75rem;
} .kk-sidebar-popular__list {
list-style: none;
margin: 0 -1.25rem;
padding: 0;
}
.kk-sidebar-popular__item {
display: flex;
align-items: flex-start;
gap: 0.85rem;
padding: 1rem 1.25rem;
border-bottom: 1px solid var(--kk-border);
}
.kk-sidebar-popular__item:last-child {
border-bottom: none;
padding-bottom: 0;
}
.kk-sidebar-popular__item:first-child {
padding-top: 0.25rem;
}
.kk-sidebar-popular__thumb {
flex-shrink: 0;
display: block;
width: 130px;
height: 95px;
border-radius: 10px;
overflow: hidden;
}
.kk-sidebar-popular__img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}
.kk-sidebar-popular__img--placeholder {
background: linear-gradient(135deg, var(--kk-bg-light), var(--kk-border));
}
.kk-sidebar-popular__body {
flex: 1;
min-width: 0;
}
.kk-sidebar-popular__title {
margin: 0 0 0.5rem;
font-size: 0.875rem;
font-weight: 700;
line-height: 1.45;
}
.kk-sidebar-popular__title a {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
color: var(--kk-text);
text-decoration: none;
transition: color var(--kk-transition);
}
.kk-sidebar-popular__title a:hover,
.kk-sidebar-popular__title a:focus-visible {
color: var(--kk-primary);
}
.kk-sidebar-popular__meta {
display: flex;
flex-direction: column;
gap: 0.3rem;
font-size: 0.75rem;
color: var(--kk-text-soft);
}
.kk-sidebar-popular__views,
.kk-sidebar-popular__date {
display: inline-flex;
align-items: center;
gap: 0.35rem;
}
.kk-sidebar-popular__views i,
.kk-sidebar-popular__date i {
font-size: 0.6875rem;
}
@media (max-width: 575px) {
.kk-sidebar-recent__thumb {
width: 100px;
height: 68px;
}
.kk-sidebar-popular__thumb {
width: 110px;
height: 82px;
}
} .kk-sidebar-categories__list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.kk-sidebar-categories__card {
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
gap: 0.75rem;
min-height: 72px;
padding: 0.85rem 1rem;
border-radius: 10px;
background-color: var(--kk-navy);
overflow: hidden;
text-decoration: none;
}
.kk-sidebar-categories__card--fallback {
background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}
.kk-sidebar-categories__bg {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
transition: transform 0.35s ease;
}
.kk-sidebar-categories__card:hover .kk-sidebar-categories__bg {
transform: scale(1.05);
}
.kk-sidebar-categories__overlay {
position: absolute;
inset: 0;
background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 100%);
transition: background var(--kk-transition);
}
.kk-sidebar-categories__card:hover .kk-sidebar-categories__overlay {
background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.52) 100%);
}
.kk-sidebar-categories__name,
.kk-sidebar-categories__count {
position: relative;
z-index: 1;
}
.kk-sidebar-categories__name {
flex: 1;
min-width: 0;
font-size: 0.875rem;
font-weight: 600;
line-height: 1.35;
color: #FFFFFF;
}
.kk-sidebar-categories__count {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 34px;
height: 34px;
padding: 0 0.45rem;
border-radius: 50%;
background: rgba(255, 255, 255, 0.95);
color: var(--kk-text);
font-size: 0.75rem;
font-weight: 700;
flex-shrink: 0;
}
.kk-sidebar-categories__card:hover .kk-sidebar-categories__name {
color: #FFFFFF;
text-decoration: none;
}
.kk-site {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.kk-main {
flex: 1;
padding-block: 1.5rem 3rem;
} .kk-breadcrumb {
padding-block: 0.75rem 0;
font-size: 0.8125rem;
color: var(--kk-text-soft);
}
.kk-container--breadcrumb {
max-width: var(--kk-container);
}
.kk-breadcrumb a {
color: var(--kk-text-soft);
text-decoration: none;
}
.kk-breadcrumb a:hover {
color: var(--kk-primary);
}
.kk-breadcrumb .rank-math-breadcrumb {
margin: 0;
}
.kk-breadcrumb .rank-math-breadcrumb p {
margin: 0;
} body.kk-elementor-page .kk-main {
padding-block: 0;
}
.kk-elementor-content {
width: 100%;
max-width: none;
}
.kk-elementor-content .elementor {
width: 100%;
}
body.kk-elementor-page .kk-cat-bar {
display: none;
}
.kk-layout {
display: grid;
gap: var(--kk-gap);
}
.has-sidebar .kk-layout {
grid-template-columns: 1fr;
}
@media (min-width: 992px) {
.has-sidebar .kk-layout {
grid-template-columns: 1fr 300px;
}
}
.kk-content {
min-width: 0;
}  .kk-topbar {
background: var(--kk-bg);
border-bottom: 1px solid var(--kk-border);
font-size: 0.75rem;
color: var(--kk-text-soft);
}
.kk-topbar__inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
min-height: 36px;
}
.kk-topbar__ticker {
display: flex;
align-items: center;
gap: 0.625rem;
flex: 0 1 50%;
min-width: 0;
max-width: 50%;
}
.kk-topbar__label {
display: inline-flex;
align-items: center;
gap: 0.3rem;
flex-shrink: 0;
padding: 0.2rem 0.625rem 0.2rem 0.5rem;
font-size: 0.625rem;
font-weight: 700;
letter-spacing: 0.04em;
text-transform: uppercase;
color: #fff;
background: var(--kk-primary);
clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 0 100%);
}
.kk-topbar__label svg {
width: 11px;
height: 11px;
flex-shrink: 0;
}
.kk-topbar__ticker-viewport {
flex: 1;
min-width: 0;
overflow: hidden;
position: relative;
height: 1.25rem;
}
.kk-topbar__ticker-track {
position: relative;
height: 100%;
}
.kk-topbar__ticker-item {
position: absolute;
inset: 0;
display: flex;
align-items: center;
gap: 0.375rem;
color: var(--kk-text);
text-decoration: none;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
opacity: 0;
transition: opacity 0.35s ease;
pointer-events: none;
}
.kk-topbar__ticker-item::before {
content: "•";
color: var(--kk-text-soft);
flex-shrink: 0;
}
.kk-topbar__ticker-item.is-active {
opacity: 1;
pointer-events: auto;
}
.kk-topbar__ticker-item:hover {
color: var(--kk-primary);
text-decoration: none;
}
.kk-topbar__date {
display: flex;
align-items: center;
gap: 0.375rem;
flex-shrink: 0;
margin-left: auto;
white-space: nowrap;
font-size: 0.75rem;
color: var(--kk-text);
}
.kk-topbar__date svg {
width: 14px;
height: 14px;
color: var(--kk-text-soft);
flex-shrink: 0;
}
body.kk-elementor-page .kk-topbar,
body.kk-elementor-page .kk-header {
display: none;
}
@media (max-width: 575px) {
.kk-topbar__date time {
font-size: 0.6875rem;
}
.kk-topbar__ticker {
flex: 1;
max-width: none;
}
} .kk-header {
position: sticky;
top: 0;
z-index: 100;
background: var(--kk-header-bg);
}
.kk-header__brand-row {
border-bottom: 1px solid var(--kk-border);
}
.kk-header__brand-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1.5rem;
padding-block: 1rem;
}
.kk-header__brand {
flex-shrink: 0;
}
.kk-logo {
display: flex;
align-items: center;
gap: 0.75rem;
font-size: 1.125rem;
font-weight: 700;
color: var(--kk-navy);
text-decoration: none;
}
.kk-logo--image {
height: var(--kk-logo-height);
max-width: var(--kk-header-logo-width, 160px);
flex-shrink: 0;
}
.kk-logo--image > a,
.kk-logo--image .custom-logo-link {
display: block;
height: var(--kk-logo-height);
line-height: 0;
}
.kk-logo--image img,
.kk-logo--image .kk-logo__img {
display: block;
height: var(--kk-logo-height);
width: auto;
max-width: var(--kk-header-logo-width, 160px);
object-fit: contain;
}
.kk-logo--themed .kk-logo__img--dark {
display: none;
}
body.dark-mode .kk-logo--themed .kk-logo__img--light {
display: none;
}
body.dark-mode .kk-logo--themed .kk-logo__img--dark {
display: block;
}
.kk-logo:hover {
text-decoration: none;
}
.kk-logo__icon {
display: flex;
align-items: center;
justify-content: center;
width: 42px;
height: 42px;
border-radius: 50%;
background: linear-gradient(135deg, var(--kk-primary), #0d5aa8);
color: #fff;
font-size: 1.125rem;
font-weight: 700;
flex-shrink: 0;
}
.kk-logo__text {
display: flex;
align-items: baseline;
gap: 0.125rem;
line-height: 1;
letter-spacing: 0.02em;
text-transform: uppercase;
}
.kk-logo__primary {
color: var(--kk-primary);
}
.kk-logo__secondary {
color: var(--kk-navy);
}
.kk-header-ad {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
max-width: 728px;
min-height: 90px;
margin-left: auto;
overflow: hidden;
}
.kk-header-ad img,
.kk-header-ad iframe {
display: block;
max-width: 100%;
height: auto;
}
.kk-header-ad--placeholder {
border: 2px dashed var(--kk-border);
border-radius: var(--kk-radius-sm);
background: var(--kk-bg-light);
color: var(--kk-text-soft);
font-size: 0.875rem;
font-weight: 500;
}
.kk-header__nav-row {
border-bottom: 1px solid var(--kk-border);
}
.kk-header__nav-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
min-height: 48px;
}
.kk-nav {
display: none;
flex: 1;
min-width: 0;
overflow: hidden;
}
@media (min-width: 992px) {
.kk-nav {
display: block;
}
}
.kk-nav__list {
display: flex;
align-items: center;
gap: 0.25rem;
list-style: none;
margin: 0;
padding: 0;
overflow-x: auto;
scrollbar-width: none;
-ms-overflow-style: none;
}
.kk-nav__list::-webkit-scrollbar {
display: none;
}
.kk-nav__list a {
display: block;
padding: 0.625rem 0.75rem;
font-size: 0.875rem;
font-weight: 500;
color: var(--kk-text);
text-decoration: none;
white-space: nowrap;
transition: color var(--kk-transition);
}
.kk-nav__list a:hover,
.kk-nav__list .current-menu-item > a,
.kk-nav__list .current_page_item > a {
color: var(--kk-primary);
text-decoration: none;
}
.kk-header__actions {
display: flex;
align-items: center;
gap: 0.375rem;
flex-shrink: 0;
}
.kk-btn-icon {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
padding: 0;
border: 1px solid var(--kk-border);
border-radius: var(--kk-radius-sm);
background: var(--kk-header-bg);
color: var(--kk-text);
cursor: pointer;
}
.kk-btn-icon:hover,
.kk-btn-icon.is-active {
border-color: var(--kk-primary);
color: var(--kk-primary);
}
.kk-btn-icon svg {
width: 18px;
height: 18px;
}
.kk-menu-toggle {
display: flex;
}
@media (min-width: 992px) {
.kk-menu-toggle {
display: none;
}
}
.kk-icon-close,
.kk-menu-toggle.is-active .kk-icon-menu {
display: none;
}
.kk-menu-toggle.is-active .kk-icon-close {
display: block;
}
@media (max-width: 991px) {
.kk-header__brand-inner {
justify-content: center;
}
.kk-header-ad {
display: none;
}
.kk-header__nav-inner {
justify-content: flex-end;
}
}
@media (max-width: 575px) {
.kk-topbar__date {
display: none;
}
} .kk-search-panel {
padding: 0.875rem 0;
background: var(--kk-header-bg);
border-bottom: 1px solid var(--kk-border);
}
.kk-search-panel .kk-search-form {
max-width: 100%;
margin: 0;
} .kk-mobile-nav {
background: var(--kk-header-bg);
border-bottom: 1px solid var(--kk-border);
}
.kk-mobile-nav__list {
list-style: none;
margin: 0;
padding: 0.75rem 0;
}
.kk-mobile-nav__list a {
display: block;
padding: 0.75rem 0;
font-weight: 500;
color: var(--kk-text);
border-bottom: 1px solid var(--kk-border);
text-decoration: none;
}
.kk-mobile-nav__list li:last-child a {
border-bottom: none;
} .kk-cat-bar {
background: var(--kk-bg-light);
border-bottom: 1px solid var(--kk-border);
overflow: hidden;
}
.kk-cat-bar__inner {
display: flex;
align-items: center;
gap: 0.5rem;
padding-block: 0.625rem;
overflow-x: auto;
scrollbar-width: none;
-ms-overflow-style: none;
}
.kk-cat-bar__inner::-webkit-scrollbar {
display: none;
}
.kk-cat-bar a {
flex-shrink: 0;
padding: 0.375rem 0.875rem;
font-size: 0.8125rem;
font-weight: 500;
color: var(--kk-text-soft);
background: var(--kk-card);
border: 1px solid var(--kk-border);
border-radius: 999px;
text-decoration: none;
white-space: nowrap;
}
.kk-cat-bar a:hover,
.kk-cat-bar a.is-active {
color: #fff;
background: var(--kk-primary);
border-color: var(--kk-primary);
text-decoration: none;
} .kk-section {
margin-bottom: 2.5rem;
}
.kk-section__header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
margin-bottom: 1.25rem;
padding-bottom: 0.75rem;
border-bottom: 2px solid var(--kk-primary);
}
.kk-section__title {
font-size: 1.125rem;
font-weight: 700;
color: var(--kk-navy);
}
.kk-section__more {
font-size: 0.8125rem;
font-weight: 500;
color: var(--kk-primary);
text-decoration: none;
}
.kk-section__more:hover {
text-decoration: underline;
} .kk-cat-block {
margin-bottom: 2.5rem;
}
.kk-cat-block__header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
margin-bottom: 1.25rem;
padding-bottom: 0.75rem;
border-bottom: 2px solid var(--kk-primary);
}
.kk-cat-block__title {
margin: 0;
font-size: 1.125rem;
font-weight: 700;
color: var(--kk-navy);
}
.kk-cat-block__more {
font-size: 0.8125rem;
font-weight: 500;
color: var(--kk-primary);
text-decoration: none;
flex-shrink: 0;
}
.kk-cat-block__more:hover {
text-decoration: underline;
}
.kk-cat-block__top {
display: grid;
gap: 1rem;
}
@media (min-width: 768px) {
.kk-cat-block__top {
grid-template-columns: 1.2fr 1fr;
align-items: stretch;
}
}
.kk-cat-block__main,
.kk-cat-block__list {
min-width: 0;
} .kk-cat-block__main-card {
display: flex;
flex-direction: column;
height: 100%;
background: var(--kk-card);
border: 1px solid var(--kk-border);
border-radius: var(--kk-radius);
box-shadow: var(--kk-shadow);
overflow: hidden;
}
.kk-cat-block__thumb {
display: block;
aspect-ratio: 16 / 10;
overflow: hidden;
background: var(--kk-bg-light);
}
.kk-cat-block__img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.kk-cat-block__main-body {
padding: 1.125rem;
}
.kk-cat-block__meta {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 0.5rem;
margin-bottom: 0.5rem;
font-size: 0.75rem;
color: var(--kk-text-soft);
}
.kk-cat-block__badge {
display: inline-block;
padding: 0.15rem 0.5rem;
font-size: 0.6875rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.02em;
color: #FFFFFF;
background: var(--kk-primary);
border-radius: var(--kk-radius-sm);
}
.kk-cat-block__main-title {
margin: 0 0 0.5rem;
font-size: 1.125rem;
font-weight: 600;
line-height: 1.35;
}
.kk-cat-block__main-title a {
color: var(--kk-text);
text-decoration: none;
}
.kk-cat-block__main-title a:hover {
color: var(--kk-primary);
}
.kk-cat-block__main-excerpt {
margin: 0;
font-size: 0.875rem;
line-height: 1.55;
color: var(--kk-text-soft);
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
} .kk-cat-block__list {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.kk-cat-block__list-item {
display: flex;
gap: 0.875rem;
padding: 0.75rem;
background: var(--kk-card);
border: 1px solid var(--kk-border);
border-radius: var(--kk-radius);
box-shadow: var(--kk-shadow);
}
.kk-cat-block__list-thumb {
flex-shrink: 0;
width: 96px;
height: 72px;
border-radius: var(--kk-radius-sm);
overflow: hidden;
background: var(--kk-bg-light);
}
.kk-cat-block__list-thumb .kk-cat-block__img {
width: 100%;
height: 100%;
object-fit: cover;
}
.kk-cat-block__list-body {
display: flex;
flex-direction: column;
justify-content: flex-start;
min-width: 0;
}
.kk-cat-block__list-date {
font-size: 0.75rem;
color: var(--kk-text-soft);
margin-bottom: 0.25rem;
}
.kk-cat-block__list-title {
margin: 0.25rem 0 0;
font-size: 0.875rem;
font-weight: 600;
line-height: 1.4;
}
.kk-cat-block__list-excerpt {
margin: 0.35rem 0 0;
font-size: 0.8125rem;
line-height: 1.5;
color: var(--kk-text-soft);
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.kk-cat-block__list-title a {
color: var(--kk-text);
text-decoration: none;
}
.kk-cat-block__list-title a:hover {
color: var(--kk-primary);
} .kk-cat-block__bottom {
display: grid;
gap: 1rem;
margin-top: 1rem;
}
.kk-cat-block__bottom--2 {
grid-template-columns: 1fr;
}
.kk-cat-block__bottom--3 {
grid-template-columns: 1fr;
}
@media (min-width: 576px) {
.kk-cat-block__bottom--2 {
grid-template-columns: repeat(2, 1fr);
}
.kk-cat-block__bottom--3 {
grid-template-columns: repeat(3, 1fr);
}
}
.kk-cat-block__bottom-card {
background: var(--kk-card);
border: 1px solid var(--kk-border);
border-radius: var(--kk-radius);
box-shadow: var(--kk-shadow);
overflow: hidden;
}
.kk-cat-block__bottom-thumb {
display: block;
aspect-ratio: 16 / 10;
overflow: hidden;
background: var(--kk-bg-light);
}
.kk-cat-block__bottom-body {
padding: 0.75rem;
}
.kk-cat-block__bottom-body time {
display: block;
font-size: 0.75rem;
color: var(--kk-text-soft);
margin-bottom: 0.25rem;
}
.kk-cat-block__bottom-title {
margin: 0;
font-size: 0.875rem;
font-weight: 600;
line-height: 1.4;
}
.kk-cat-block__bottom-title a {
color: var(--kk-text);
text-decoration: none;
}
.kk-cat-block__bottom-title a:hover {
color: var(--kk-primary);
} .kk-home-cat {
margin-bottom: 2.5rem;
}
.kk-home-cat__header {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 1rem;
}
.kk-home-cat__more {
font-size: 0.8125rem;
font-weight: 500;
color: var(--kk-primary);
text-decoration: none;
flex-shrink: 0;
line-height: 1.6;
}
.kk-home-cat__more:hover {
text-decoration: underline;
}
.kk-home-cat__more .fa-solid {
font-size: 0.625rem;
margin-left: 0.2rem;
} .kk-home-cat-t1__top {
display: grid;
gap: 1rem;
}
@media (min-width: 768px) {
.kk-home-cat-t1__top {
grid-template-columns: 1.2fr 1fr;
align-items: stretch;
}
}
.kk-home-cat-t1__main,
.kk-home-cat-t1__list {
min-width: 0;
}
.kk-home-cat-t1__list {
display: flex;
flex-direction: column;
gap: 0.75rem;
} .kk-home-cat-t2__grid {
display: grid;
gap: 1rem;
grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) {
.kk-home-cat-t2__grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1.25rem;
}
}
@media (min-width: 992px) {
.kk-home-cat-t2__grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 24px;
}
}
.kk-home-cat-t2__card {
display: flex;
flex-direction: column;
height: 100%;
background: var(--kk-card);
border: 1px solid var(--kk-border);
border-radius: var(--kk-radius);
box-shadow: var(--kk-shadow);
overflow: hidden;
}
.kk-home-cat-t2__thumb {
display: block;
aspect-ratio: 16 / 10;
overflow: hidden;
background: var(--kk-bg-light);
}
.kk-home-cat-t2__img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.kk-home-cat-t2__img--placeholder {
display: block;
min-height: 100%;
background: var(--kk-bg-light);
}
.kk-home-cat-t2__body {
padding: 0.875rem;
}
.kk-home-cat-t2__date {
display: block;
font-size: 0.75rem;
color: var(--kk-text-soft);
margin-bottom: 0.35rem;
}
.kk-home-cat-t2__title {
margin: 0.25rem 0 0;
font-size: 0.9375rem;
font-weight: 600;
line-height: 1.4;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.kk-home-cat-t2__excerpt {
margin: 0.35rem 0 0;
font-size: 0.8125rem;
line-height: 1.5;
color: var(--kk-text-soft);
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.kk-home-cat-t2__title a {
color: var(--kk-text);
text-decoration: none;
}
.kk-home-cat-t2__title a:hover {
color: var(--kk-primary);
}
@media (max-width: 767px) {
.kk-home-cat-t1__top {
grid-template-columns: 1fr;
}
} .kk-grid {
display: grid;
gap: 1.25rem;
}
.kk-grid--2 {
grid-template-columns: 1fr;
}
.kk-grid--3 {
grid-template-columns: 1fr;
}
.kk-grid--4 {
grid-template-columns: repeat(2, 1fr);
} .kk-grid--archive {
grid-template-columns: minmax(0, 1fr);
gap: 24px;
}
@media (min-width: 992px) {
.kk-grid--archive {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (min-width: 576px) {
.kk-grid--2 {
grid-template-columns: repeat(2, 1fr);
}
.kk-grid--3 {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 768px) {
.kk-grid--3 {
grid-template-columns: repeat(3, 1fr);
}
.kk-grid--4 {
grid-template-columns: repeat(4, 1fr);
}
} .kk-card {
display: flex;
flex-direction: column;
background: var(--kk-card);
border: 1px solid var(--kk-border);
border-radius: var(--kk-radius);
box-shadow: var(--kk-shadow);
overflow: hidden;
}
.kk-card__thumb {
position: relative;
aspect-ratio: 16 / 10;
overflow: hidden;
background: var(--kk-bg-light);
}
.kk-card__thumb img {
width: 100%;
height: 100%;
object-fit: cover;
}
.kk-card__thumb a {
display: block;
height: 100%;
}
.kk-card__body {
display: flex;
flex-direction: column;
flex: 1;
padding: 1rem;
}
.kk-card__meta {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 0.5rem;
margin-bottom: 0.5rem;
font-size: 0.75rem;
color: var(--kk-text-soft);
}
.kk-card__title {
font-size: 0.9375rem;
font-weight: 600;
line-height: 1.4;
margin-bottom: 0.375rem;
}
.kk-card__title a {
color: var(--kk-text);
text-decoration: none;
}
.kk-card__title a:hover {
color: var(--kk-primary);
}
.kk-card__excerpt {
font-size: 0.8125rem;
color: var(--kk-text-soft);
line-height: 1.5;
margin-bottom: 0;
flex: 1;
} .kk-badge {
display: inline-block;
padding: 0.125rem 0.5rem;
font-size: 0.6875rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.02em;
color: var(--kk-primary);
background: var(--kk-badge-bg);
border-radius: var(--kk-radius-sm);
text-decoration: none;
}
.kk-badge:hover {
background: var(--kk-primary);
color: #fff;
text-decoration: none;
} .kk-hero {
margin-bottom: 2.5rem;
}
.kk-hero__grid {
display: grid;
gap: 20px;
}
@media (min-width: 992px) {
.kk-hero__grid {
grid-template-columns: 1fr 1fr;
align-items: stretch;
min-height: 480px;
}
}
.kk-hero__main,
.kk-hero__side {
min-width: 0;
}
.kk-hero__side {
display: flex;
flex-direction: column;
gap: 20px;
}
@media (min-width: 992px) {
.kk-hero__side {
height: 100%;
}
.kk-hero__side-top {
flex: 1.15;
min-height: 0;
}
.kk-hero__side-bottom {
flex: 1;
min-height: 0;
}
}
.kk-hero__side-bottom {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.kk-hero__side-top .kk-hero__item,
.kk-hero__side-bottom .kk-hero__item,
.kk-hero__main .kk-hero__item {
height: 100%;
}
.kk-hero__item {
position: relative;
border-radius: 14px;
overflow: hidden;
border: 1px solid var(--kk-border);
box-shadow: var(--kk-shadow);
background: var(--kk-navy);
transition: box-shadow 0.3s ease;
}
.kk-hero__item:hover {
box-shadow: 0 8px 24px rgba(32, 38, 52, 0.18);
}
.kk-hero__item--main {
min-height: 300px;
}
.kk-hero__item--featured {
min-height: 180px;
}
.kk-hero__item--compact {
min-height: 160px;
}
@media (min-width: 992px) {
.kk-hero__item--main {
min-height: 480px;
}
}
.kk-hero__link {
display: block;
position: absolute;
inset: 0;
z-index: 1;
overflow: hidden;
}
.kk-hero__link .kk-hero__img,
.kk-hero__link img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.kk-hero__item:hover .kk-hero__link img,
.kk-hero__item:hover .kk-hero__link .kk-hero__img {
transform: scale(1.02);
}
.kk-hero__item--main .kk-hero__img,
.kk-hero__item--main .kk-hero__img--placeholder {
min-height: 300px;
}
@media (min-width: 992px) {
.kk-hero__item--main .kk-hero__img,
.kk-hero__item--main .kk-hero__img--placeholder {
min-height: 480px;
}
}
.kk-hero__img--placeholder {
background: linear-gradient(135deg, var(--kk-navy), #2d3748);
}
.kk-hero__overlay {
position: absolute;
inset: 0;
z-index: 2;
background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
pointer-events: none;
}
.kk-hero__badge {
position: absolute;
top: 24px;
left: 24px;
z-index: 4;
display: inline-block;
padding: 0.35rem 0.65rem;
font-size: 0.6875rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.03em;
color: #FFFFFF;
background: var(--kk-primary);
border-radius: 8px;
text-decoration: none;
}
.kk-hero__badge:hover {
background: #1259a3;
color: #FFFFFF;
text-decoration: none;
}
.kk-hero__content {
position: absolute;
left: 0;
right: 0;
bottom: 0;
z-index: 3;
padding: 24px;
}
.kk-hero__date-row {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 0.5rem;
}
.kk-hero__date-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.2);
color: #FFFFFF;
flex-shrink: 0;
}
.kk-hero__date-icon svg {
width: 12px;
height: 12px;
}
.kk-hero__date {
font-size: 0.8125rem;
color: rgba(255, 255, 255, 0.85);
}
.kk-hero__title {
margin: 0;
font-weight: 600;
line-height: 1.35;
color: #FFFFFF;
}
.kk-hero__item--main .kk-hero__title {
font-size: 1.5rem;
}
.kk-hero__item--featured .kk-hero__title {
font-size: 1.0625rem;
}
.kk-hero__item--compact .kk-hero__title {
font-size: 0.875rem;
}
.kk-hero__title a {
color: #FFFFFF;
text-decoration: none;
position: relative;
z-index: 4;
}
.kk-hero__title a:hover {
color: #FFFFFF;
text-decoration: underline;
}
.kk-hero__excerpt {
margin: 0.625rem 0 0;
font-size: 0.875rem;
line-height: 1.55;
color: rgba(255, 255, 255, 0.88);
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.kk-hero__excerpt--side {
margin: 0.4rem 0 0;
font-size: 0.8125rem;
line-height: 1.4;
color: rgba(255, 255, 255, 0.85);
}
.kk-hero__item--featured .kk-post-meta--overlay,
.kk-hero__item--compact .kk-post-meta--overlay {
margin-top: 0.45rem;
}
@media (max-width: 991px) {
.kk-hero__grid {
grid-template-columns: 1fr;
}
.kk-hero__side-bottom {
grid-template-columns: 1fr 1fr;
}
.kk-hero__item--main .kk-hero__title {
font-size: 1.25rem;
}
.kk-hero__content {
padding: 20px;
}
.kk-hero__badge {
top: 20px;
left: 20px;
}
}
@media (max-width: 575px) {
.kk-hero__side-bottom {
grid-template-columns: 1fr;
}
.kk-hero__item--featured,
.kk-hero__item--compact {
min-height: 200px;
}
} .kk-post-meta {
font-size: 0.8125rem;
line-height: 1.5;
}
.kk-post-meta__row {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 0.4rem;
}
.kk-post-meta__row + .kk-post-meta__row {
margin-top: 0.3rem;
}
.kk-post-meta__item {
display: inline-flex;
align-items: center;
gap: 0.45rem;
min-width: 0;
}
.kk-post-meta__icon {
font-size: 12px;
line-height: 1;
flex-shrink: 0;
width: 1em;
text-align: center;
}
.kk-post-meta__sep {
opacity: 0.65;
padding: 0 0.1rem;
}
.kk-post-meta--overlay {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 0.45rem;
margin-top: 0.625rem;
color: #FFFFFF;
position: relative;
z-index: 4;
}
.kk-post-meta--overlay .kk-post-meta__icon {
color: rgba(255, 255, 255, 0.88);
}
.kk-post-meta--list,
.kk-post-meta--default,
.kk-post-meta--stats {
color: var(--kk-text-soft);
margin-top: 0.35rem;
}
.kk-post-meta--list .kk-post-meta__icon,
.kk-post-meta--default .kk-post-meta__icon,
.kk-post-meta--stats .kk-post-meta__icon {
color: var(--kk-text-soft);
}
.kk-post-meta--stats {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 0.35rem;
}
.kk-post-meta--compact {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 8px;
font-size: 0.8125rem;
line-height: 1.45;
color: var(--kk-text-soft);
min-width: 0;
margin-top: 0;
}
.kk-post-meta--compact .kk-post-meta__item {
gap: 0.35rem;
}
.kk-post-meta--compact .kk-post-meta__icon {
color: var(--kk-text-soft);
font-size: 12px;
}
.kk-post-meta--compact-overlay {
color: rgba(255, 255, 255, 0.92);
}
.kk-post-meta--compact-overlay .kk-post-meta__icon {
color: rgba(255, 255, 255, 0.88);
}
.kk-cat-block__meta .kk-post-meta--compact {
flex: 1 1 auto;
min-width: 0;
}
.kk-cat-block__list-body .kk-post-meta--compact {
margin-bottom: 0.25rem;
}
.kk-home-cat-t2__body .kk-post-meta--compact {
margin-bottom: 0.35rem;
}
.kk-single__header .kk-post-meta--stats {
margin-top: 0.75rem;
}
.kk-popular__featured-body .kk-post-meta--overlay {
margin-top: 0.5rem;
}
.kk-popular__list-body .kk-post-meta--list,
.kk-popular__list-body .kk-post-meta--stats {
margin-top: 0.2rem;
margin-bottom: 0.15rem;
}
.kk-card__body .kk-post-meta--list {
margin-bottom: 0.35rem;
}
@media (max-width: 991px) {
.kk-cat-block__list-item {
flex-direction: column;
}
.kk-cat-block__list-thumb {
width: 100%;
height: auto;
aspect-ratio: 16 / 10;
}
} .kkf-section-heading,
.kk-popular__header {
margin-bottom: 1.25rem;
padding-bottom: 0.875rem;
border-bottom: 1px solid var(--kk-border);
}
.kkf-section-title,
.kk-popular__title {
margin: 0;
font-size: 1.125rem;
font-weight: 700;
color: var(--kk-text);
position: relative;
display: inline-block;
padding-bottom: 0.5rem;
}
.kkf-section-title::after,
.kk-popular__title::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 3px;
background: var(--kk-primary);
border-radius: 2px;
}
.kkf-section-line {
display: block;
width: 100%;
max-width: 100%;
height: 3px;
background: var(--kk-primary);
border-radius: 2px;
} .kk-popular {
margin-bottom: 2.5rem;
}
.kk-popular__grid {
display: grid;
gap: 24px;
grid-template-columns: 1fr;
}
@media (min-width: 768px) and (max-width: 1199px) {
.kk-popular__grid {
grid-template-columns: 1fr 1fr;
align-items: stretch;
}
.kk-popular__featured-card,
.kk-popular__list,
.kk-home-ad--300x600 {
height: auto;
min-height: 0;
}
.kk-popular__ad {
grid-column: 1 / -1;
display: flex;
justify-content: center;
}
.kk-popular__list-item {
height: auto;
min-height: 100px;
padding: 1rem 1.25rem;
}
}
@media (min-width: 1200px) {
.kk-popular__grid {
grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) 300px;
gap: 24px;
align-items: stretch;
}
.kk-popular__featured,
.kk-popular__list,
.kk-popular__ad {
height: 600px;
min-height: 600px;
}
.kk-popular__featured-card,
.kk-popular__list,
.kk-home-ad--300x600 {
height: 600px;
}
.kk-popular__list-item {
height: 120px;
min-height: 120px;
max-height: 120px;
padding: 0 16px;
}
.kk-popular__list-thumb {
width: 88px;
height: 66px;
}
}
.kk-popular__featured {
min-width: 0;
}
.kk-popular__featured-card {
position: relative;
height: 100%;
border-radius: 14px;
overflow: hidden;
border: 1px solid var(--kk-border);
background: var(--kk-navy);
}
.kk-popular__featured-media {
display: block;
position: absolute;
inset: 0;
z-index: 1;
overflow: hidden;
}
.kk-popular__featured-img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.kk-popular__featured-img--placeholder {
display: block;
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--kk-navy), #2d3748);
}
.kk-popular__featured-card:hover .kk-popular__featured-img {
transform: scale(1.03);
}
.kk-popular__featured-overlay {
position: absolute;
inset: 0;
z-index: 2;
background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.82) 100%);
pointer-events: none;
}
.kk-popular__featured-badge {
position: absolute;
top: 20px;
left: 20px;
z-index: 4;
display: inline-block;
padding: 0.3rem 0.65rem;
font-size: 0.6875rem;
font-weight: 600;
text-transform: uppercase;
color: #FFFFFF;
background: var(--kk-primary);
border-radius: 8px;
text-decoration: none;
}
.kk-popular__featured-badge:hover {
color: #FFFFFF;
text-decoration: none;
background: #1259a3;
}
.kk-popular__featured-body {
position: absolute;
left: 0;
right: 0;
bottom: 0;
z-index: 3;
padding: 24px;
}
.kk-popular__featured-title {
margin: 0 0 0.5rem;
font-size: 1.25rem;
font-weight: 600;
line-height: 1.35;
}
.kk-popular__featured-title a {
color: #FFFFFF;
text-decoration: none;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.kk-popular__featured-title a:hover {
color: #FFFFFF;
text-decoration: underline;
}
.kk-popular__featured-excerpt {
margin: 0 0 0.625rem;
font-size: 0.8125rem;
line-height: 1.5;
color: rgba(255, 255, 255, 0.88);
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.kk-popular__stats {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 0.75rem;
font-size: 0.8125rem;
color: rgba(255, 255, 255, 0.88);
}
.kk-popular__stat {
display: inline-flex;
align-items: center;
gap: 0.3rem;
}
.kk-popular__stat svg {
width: 14px;
height: 14px;
flex-shrink: 0;
}
.kk-popular__list {
display: flex;
flex-direction: column;
background: var(--kk-card);
border: 1px solid var(--kk-border);
border-radius: 14px;
overflow: hidden;
min-width: 0;
}
.kk-popular__list-item {
display: flex;
align-items: center;
gap: 12px;
box-sizing: border-box;
border-bottom: 1px solid var(--kk-border);
flex-shrink: 0;
}
.kk-popular__list-item:last-child {
border-bottom: none;
}
.kk-popular__list-thumb {
flex-shrink: 0;
width: 88px;
height: 66px;
border-radius: 8px;
overflow: hidden;
}
.kk-popular__list-img {
width: 100%;
height: 100%;
object-fit: cover;
transition: opacity 0.25s ease;
}
.kk-popular__list-img--placeholder {
display: block;
width: 100%;
height: 100%;
background: var(--kk-bg-light);
}
.kk-popular__list-item:hover .kk-popular__list-img {
opacity: 0.88;
}
.kk-popular__list-body {
min-width: 0;
flex: 1;
}
.kk-popular__list-date {
display: block;
font-size: 0.6875rem;
color: var(--kk-text-soft);
margin-bottom: 0.2rem;
}
.kk-popular__list-title {
margin: 0;
font-size: 0.875rem;
font-weight: 600;
line-height: 1.35;
}
.kk-popular__list-title a {
color: var(--kk-text);
text-decoration: none;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
transition: color 0.2s ease;
}
.kk-popular__list-excerpt {
margin: 0.2rem 0 0;
font-size: 0.75rem;
line-height: 1.4;
color: var(--kk-text-soft);
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.kk-popular__list-item:hover .kk-popular__list-title a {
color: var(--kk-primary);
}
.kk-popular__ad {
display: flex;
min-width: 0;
}
.kk-home-ad--300x600 {
width: 300px;
max-width: 100%;
height: 100%;
margin-inline: auto;
}
@media (max-width: 767px) {
.kk-popular__featured-card {
height: 420px;
min-height: 420px;
}
.kk-popular__featured,
.kk-popular__list,
.kk-popular__ad {
height: auto;
min-height: 0;
}
.kk-popular__list-item {
height: auto;
min-height: 0;
max-height: none;
padding: 1rem 1.25rem;
align-items: flex-start;
}
.kk-home-ad--300x600 {
height: 250px;
}
}
.kk-home-ad--300x600 .kk-home-ad__inner {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.5rem;
width: 100%;
height: 100%;
border: 2px dashed var(--kk-border);
border-radius: 10px;
background: var(--kk-bg-light);
color: var(--kk-text-soft);
font-size: 0.875rem;
text-align: center;
}
.kk-home-ad--300x600 .kk-home-ad__inner strong {
font-size: 0.8125rem;
font-weight: 700;
letter-spacing: 0.04em;
color: var(--kk-text-soft);
}
.kk-home-ad--300x600 .kk-home-ad__size--mobile {
display: none;
}
@media (max-width: 767px) {
.kk-home-ad--300x600 {
height: 250px;
}
.kk-home-ad--300x600 .kk-home-ad__size--desktop {
display: none;
}
.kk-home-ad--300x600 .kk-home-ad__size--mobile {
display: inline;
}
}
.kk-card--horizontal {
flex-direction: row;
}
.kk-card--horizontal .kk-card__thumb {
width: 120px;
min-width: 120px;
aspect-ratio: auto;
align-self: stretch;
}
.kk-card--horizontal .kk-card__body {
padding: 0.75rem;
}
.kk-card--horizontal .kk-card__title {
font-size: 0.875rem;
}
@media (min-width: 576px) {
.kk-card--horizontal .kk-card__thumb {
width: 140px;
min-width: 140px;
}
} .kk-list .kk-card {
flex-direction: row;
}
.kk-list .kk-card__thumb {
width: 200px;
min-width: 200px;
aspect-ratio: auto;
align-self: stretch;
}
@media (max-width: 575px) {
.kk-list .kk-card {
flex-direction: column;
}
.kk-list .kk-card__thumb {
width: 100%;
min-width: 0;
aspect-ratio: 16 / 10;
}
} .kk-single {
background: var(--kk-card);
border: 1px solid var(--kk-border);
border-radius: var(--kk-radius);
box-shadow: var(--kk-shadow);
padding: 1.5rem;
margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
.kk-single {
padding: 2rem;
}
}
.kk-single__header {
margin-bottom: 1.5rem;
padding-bottom: 1.25rem;
border-bottom: 1px solid var(--kk-border);
}
.kk-single__meta {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 0.75rem;
margin-bottom: 0.75rem;
font-size: 0.875rem;
color: var(--kk-text-soft);
}
.kk-single__title {
font-size: 1.75rem;
font-weight: 700;
line-height: 1.3;
margin: 0;
color: var(--kk-text);
}
@media (min-width: 768px) {
.kk-single__title {
font-size: 2rem;
}
}
.kk-single__thumb {
margin: 0 0 1.5rem;
border-radius: var(--kk-radius-sm);
overflow: hidden;
border: 1px solid var(--kk-border);
}
.kk-single__thumb img {
width: 100%;
height: auto;
display: block;
} .kk-toc {
padding: 1rem 1.25rem;
background: var(--kk-card);
border: 1px solid var(--kk-border);
border-radius: var(--kk-radius);
}
.kk-toc__title {
margin: 0 0 0.75rem;
font-size: 1rem;
font-weight: 700;
line-height: 1.35;
color: var(--kk-text);
}
.kk-toc__list {
list-style: none;
margin: 0;
padding: 0;
}
.kk-toc__item {
margin: 0;
padding: 0;
}
.kk-toc__item + .kk-toc__item {
margin-top: 0.35rem;
}
.kk-toc__item--level-3 {
padding-left: 1rem;
}
.kk-toc__link {
display: block;
font-size: 0.875rem;
line-height: 1.45;
color: var(--kk-text-soft);
text-decoration: none;
word-break: break-word;
transition: color var(--kk-transition);
}
.kk-toc__link:hover,
.kk-toc__link:focus-visible {
color: var(--kk-primary);
text-decoration: none;
}
.kk-single__content {
font-size: 1.0625rem;
line-height: 1.8;
color: var(--kk-text);
}
.kk-single__content > *:first-child {
margin-top: 0;
}
.kk-single__content h2 {
font-size: 1.375rem;
margin-top: 2rem;
}
.kk-single__content h3 {
font-size: 1.125rem;
margin-top: 1.5rem;
}
.kk-single__content p {
margin-bottom: 1.25rem;
}
.kk-single__content ul,
.kk-single__content ol {
margin: 0 0 1.25rem 1.25rem;
padding: 0;
list-style: disc;
}
.kk-single__content li {
margin-bottom: 0.375rem;
}
.kk-single__content blockquote {
margin: 1.5rem 0;
padding: 1rem 1.25rem;
border-left: 3px solid var(--kk-primary);
background: var(--kk-bg-light);
border-radius: 0 var(--kk-radius-sm) var(--kk-radius-sm) 0;
color: var(--kk-text-soft);
}
.kk-single__content img {
border-radius: var(--kk-radius-sm);
margin-block: 1rem;
}
.kk-single__content a {
color: var(--kk-primary);
}
.kk-single__pages {
margin-top: 2rem;
padding-top: 1rem;
border-top: 1px solid var(--kk-border);
font-size: 0.875rem;
color: var(--kk-text-soft);
}
.kk-single__pages a {
margin-left: 0.375rem;
} .kk-single__section {
margin-top: 1.5rem;
}
.kk-single__tags {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.5rem;
margin-top: 2rem;
padding-top: 1.25rem;
border-top: 1px solid var(--kk-border);
}
.kk-single__tags-label {
font-size: 0.8125rem;
font-weight: 600;
color: var(--kk-text-soft);
}
.kk-single__tags-list {
display: flex;
flex-wrap: wrap;
gap: 0.375rem;
list-style: none;
margin: 0;
padding: 0;
}
.kk-single__tags-list a {
display: inline-block;
padding: 0.25rem 0.625rem;
font-size: 0.8125rem;
color: var(--kk-text);
background: var(--kk-bg-light);
border: 1px solid var(--kk-border);
border-radius: var(--kk-radius-sm);
text-decoration: none;
}
.kk-single__tags-list a:hover {
border-color: var(--kk-primary);
color: var(--kk-primary);
} .single-share-box,
.kk-single__share {
display: flex;
align-items: center;
gap: 14px;
flex-wrap: wrap;
padding: 1rem 1.25rem;
background: var(--kk-card);
border: 1px solid var(--kk-border);
border-radius: var(--kk-radius);
}
.share-label {
display: inline-flex;
align-items: center;
gap: 8px;
margin-right: 10px;
white-space: nowrap;
font-size: 0.9375rem;
font-weight: 600;
color: var(--kk-text);
flex-shrink: 0;
}
.share-label i {
font-size: 0.875rem;
color: var(--kk-text-soft);
}
.share-buttons {
display: flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
flex: 1;
min-width: 0;
}
.kk-single__share-btn {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border: none;
border-radius: 50%;
color: #FFFFFF;
text-decoration: none;
cursor: pointer;
transition: opacity var(--kk-transition), transform var(--kk-transition);
}
.kk-single__share-btn:hover,
.kk-single__share-btn:focus-visible {
opacity: 0.9;
transform: translateY(-1px);
text-decoration: none;
color: #FFFFFF;
}
.kk-single__share-btn i {
font-size: 0.9375rem;
line-height: 1;
}
.kk-single__share-btn--facebook { background: #1877F2; }
.kk-single__share-btn--x { background: #000000; }
.kk-single__share-btn--linkedin { background: #0A66C2; }
.kk-single__share-btn--tumblr { background: #36465D; }
.kk-single__share-btn--pinterest { background: #E60023; }
.kk-single__share-btn--reddit { background: #FF4500; }
.kk-single__share-btn--vk { background: #0077FF; }
.kk-single__share-btn--odnoklassniki { background: #EE8208; }
.kk-single__share-btn--pocket { background: #EF4056; }
.kk-single__share-btn--messenger { background: #0084FF; }
.kk-single__share-btn--email { background: #6B7280; }
.kk-single__share-btn--print { background: #374151; }
body.dark-mode .kk-single__share-btn--x { background: #1F2937; border: 1px solid var(--kk-border); } .kk-single__nav {
display: grid;
gap: 0.75rem;
margin-bottom: 0;
}
@media (min-width: 576px) {
.kk-single__nav {
grid-template-columns: 1fr 1fr;
}
}
.kk-single__nav-link {
display: flex;
flex-direction: column;
gap: 0.25rem;
padding: 1rem;
background: var(--kk-card);
border: 1px solid var(--kk-border);
border-radius: var(--kk-radius);
box-shadow: var(--kk-shadow);
text-decoration: none;
}
.kk-single__nav-link--next {
text-align: right;
}
.kk-single__nav-link--empty {
display: none;
}
@media (min-width: 576px) {
.kk-single__nav-link--empty {
display: block;
visibility: hidden;
}
}
.kk-single__nav-link:hover {
border-color: var(--kk-primary);
text-decoration: none;
}
.kk-single__nav-label {
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.03em;
color: var(--kk-primary);
}
.kk-single__nav-title {
font-size: 0.9375rem;
font-weight: 500;
line-height: 1.4;
color: var(--kk-text);
} .kk-single__author {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 1rem 1.5rem;
padding: 1.25rem;
background: var(--kk-card);
border: 1px solid var(--kk-border);
border-radius: var(--kk-radius);
}
.kk-single__author-main {
display: flex;
align-items: flex-start;
gap: 1rem;
flex: 1;
min-width: 0;
}
.kk-single__author-img {
display: block;
width: 72px;
height: 72px;
border-radius: 50%;
object-fit: cover;
}
.kk-single__author-label {
margin: 0 0 0.2rem;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.04em;
color: var(--kk-text-soft);
}
.kk-single__author-name {
margin: 0 0 0.35rem;
font-size: 1rem;
font-weight: 700;
line-height: 1.3;
color: var(--kk-primary);
text-transform: uppercase;
}
.kk-single__author-bio {
margin: 0;
font-size: 0.875rem;
line-height: 1.5;
color: var(--kk-text-soft);
}
.kk-single__author-social {
display: inline-flex;
align-items: center;
justify-content: center;
margin-top: 0.5rem;
width: 28px;
height: 28px;
color: var(--kk-text-soft);
text-decoration: none;
}
.kk-single__author-social:hover {
color: var(--kk-primary);
}
.kk-single__author-link {
display: inline-flex;
align-items: center;
flex-wrap: wrap;
gap: 0.35rem;
font-size: 0.8125rem;
color: var(--kk-text-soft);
text-decoration: none;
text-align: right;
}
.kk-single__author-link strong {
color: var(--kk-primary);
font-weight: 700;
text-transform: uppercase;
}
.kk-single__author-link:hover {
color: var(--kk-text);
text-decoration: none;
}
.kk-single__author-link i {
font-size: 0.75rem;
} .kk-single__comments {
margin-bottom: 0;
}
.kk-single__comments-toggle {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
padding: 0.9rem 1.25rem;
border: none;
border-radius: var(--kk-radius);
background: var(--kk-navy);
color: #FFFFFF;
font-family: inherit;
font-size: 0.8125rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.04em;
cursor: pointer;
transition: opacity var(--kk-transition);
}
body.dark-mode .kk-single__comments-toggle {
background: #111827;
}
.kk-single__comments-toggle:hover,
.kk-single__comments-toggle:focus-visible {
opacity: 0.92;
}
.kk-single__comments-toggle-text {
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.kk-single__comments-chevron {
transition: transform var(--kk-transition);
}
.kk-single__comments-toggle[aria-expanded="true"] .kk-single__comments-chevron {
transform: rotate(180deg);
}
.kk-single__comments-hint {
margin: 0.75rem 0 0;
font-size: 0.875rem;
color: var(--kk-text-soft);
}
.kk-single__comments-panel {
margin-top: 1rem;
padding: 1.25rem;
background: var(--kk-card);
border: 1px solid var(--kk-border);
border-radius: var(--kk-radius);
}
.kk-comments__title {
margin: 0 0 1rem;
font-size: 1.125rem;
font-weight: 700;
color: var(--kk-text);
}
.kk-comments__empty,
.kk-comments__closed {
margin: 0 0 1rem;
font-size: 0.875rem;
color: var(--kk-text-soft);
}
.kk-comments__list {
list-style: none;
margin: 0 0 1.5rem;
padding: 0;
}
.kk-comments__item {
margin-bottom: 1.25rem;
padding-bottom: 1.25rem;
border-bottom: 1px solid var(--kk-border);
}
.kk-comments__item:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.kk-comments__meta {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 0.5rem;
}
.kk-comments__avatar {
border-radius: 50%;
}
.kk-comments__author {
display: block;
font-style: normal;
font-weight: 600;
color: var(--kk-text);
}
.kk-comments__date {
display: block;
font-size: 0.75rem;
color: var(--kk-text-soft);
}
.kk-comments__content {
font-size: 0.9375rem;
line-height: 1.6;
color: var(--kk-text);
}
.kk-comments__content p {
margin: 0 0 0.5rem;
}
.kk-comments__reply a {
font-size: 0.8125rem;
font-weight: 600;
color: var(--kk-primary);
text-decoration: none;
}
.kk-comments__notes {
margin: 0 0 1rem;
font-size: 0.8125rem;
color: var(--kk-text-soft);
}
.kk-comments__form .kk-comments__field {
margin: 0 0 1rem;
}
.kk-comments__form label {
display: block;
margin-bottom: 0.35rem;
font-size: 0.8125rem;
font-weight: 600;
color: var(--kk-text);
}
.kk-comments__form .required {
color: #DC2626;
}
.kk-comments__form input[type="text"],
.kk-comments__form input[type="email"],
.kk-comments__form input[type="url"],
.kk-comments__form textarea {
width: 100%;
padding: 0.65rem 0.85rem;
border: 1px solid var(--kk-border);
border-radius: var(--kk-radius-sm);
background: var(--kk-bg);
color: var(--kk-text);
font-family: inherit;
font-size: 0.875rem;
}
.kk-comments__form input:focus,
.kk-comments__form textarea:focus {
outline: none;
border-color: var(--kk-primary);
}
.kk-comments__form .comment-form-cookies-consent {
display: flex;
align-items: flex-start;
gap: 0.5rem;
font-size: 0.8125rem;
color: var(--kk-text-soft);
}
.kk-comments__submit {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.7rem 1.5rem;
border: none;
border-radius: 999px;
background: var(--kk-navy);
color: #FFFFFF;
font-family: inherit;
font-size: 0.8125rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.04em;
cursor: pointer;
transition: opacity var(--kk-transition);
}
body.dark-mode .kk-comments__submit {
background: #111827;
}
.kk-comments__submit:hover,
.kk-comments__submit:focus-visible {
opacity: 0.9;
}
@media (min-width: 576px) {
.kk-comments__form .kk-comments__field--half {
display: inline-block;
width: calc(50% - 0.5rem);
vertical-align: top;
}
.kk-comments__form .kk-comments__field--half:first-of-type {
margin-right: 1rem;
}
}
@media (max-width: 767px) {
.kk-single__author {
flex-direction: column;
align-items: flex-start;
}
.kk-single__author-link {
text-align: left;
}
} .kk-single__related {
margin-bottom: 2rem;
}
.kk-single__related-title {
font-size: 1.125rem;
font-weight: 700;
margin: 0 0 1.25rem;
padding-bottom: 0.75rem;
border-bottom: 2px solid var(--kk-primary);
color: var(--kk-navy);
}
.kk-single__related .kk-card--related .kk-card__title {
margin-bottom: 0.35rem;
}
.kk-single__related .kk-related-card__excerpt {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
font-size: 0.875rem;
line-height: 1.5;
color: var(--kk-text-soft);
margin: 0 0 0.625rem;
}
.kk-single__related .kk-card--related .kk-post-meta--stats {
margin-top: auto;
} .kk-sidebar {
min-width: 0;
}
.kk-widget {
background: var(--kk-card);
border: 1px solid var(--kk-border);
border-radius: var(--kk-radius);
box-shadow: var(--kk-shadow);
padding: 1.25rem;
margin-bottom: 1.25rem;
}
.kk-widget__title {
font-size: 0.9375rem;
font-weight: 700;
margin-bottom: 1rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid var(--kk-primary);
color: var(--kk-navy);
}
.kk-widget ul li {
padding: 0.5rem 0;
border-bottom: 1px solid var(--kk-border);
font-size: 0.875rem;
}
.kk-widget ul li:last-child {
border-bottom: none;
}
.kk-widget ul li a {
color: var(--kk-text);
text-decoration: none;
}
.kk-widget ul li a:hover {
color: var(--kk-primary);
} .kk-pagination {
display: flex;
justify-content: center;
gap: 0.375rem;
margin-top: 2rem;
}
.kk-pagination a,
.kk-pagination span {
display: flex;
align-items: center;
justify-content: center;
min-width: 40px;
height: 40px;
padding: 0 0.5rem;
font-size: 0.875rem;
font-weight: 500;
color: var(--kk-text);
background: var(--kk-card);
border: 1px solid var(--kk-border);
border-radius: var(--kk-radius-sm);
text-decoration: none;
}
.kk-pagination a:hover {
border-color: var(--kk-primary);
color: var(--kk-primary);
}
.kk-pagination .current {
background: var(--kk-primary);
border-color: var(--kk-primary);
color: #fff;
} .kk-footer {
background: var(--kk-footer-bg);
color: var(--kk-footer-text);
padding-block: 2.5rem 0;
margin-top: auto;
border-top: 1px solid var(--kk-footer-border);
}
.kk-footer a {
color: var(--kk-footer-text);
text-decoration: none;
transition: color var(--kk-transition);
}
.kk-footer a:hover {
color: var(--kk-primary);
text-decoration: none;
}
.kk-footer__grid {
display: grid;
gap: 2rem;
margin-bottom: 2rem;
grid-template-columns: 1fr;
}
@media (min-width: 768px) {
.kk-footer__grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.kk-footer__col--primary {
grid-column: 1 / -1;
}
}
@media (min-width: 1024px) {
.kk-footer__grid {
grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
align-items: start;
}
.kk-footer__col--primary {
grid-column: auto;
}
}
.kk-footer__col {
min-width: 0;
}
.kk-footer__col--primary {
display: flex;
flex-direction: column;
gap: 2rem;
}
.kk-footer__brand-block {
min-width: 0;
}
.kk-footer__tags-block {
min-width: 0;
}
.kk-footer__title {
font-size: 0.875rem;
font-weight: 600;
color: var(--kk-footer-heading);
margin: 0 0 1.25rem;
text-transform: uppercase;
letter-spacing: 0.04em;
}
.kk-footer__logo {
height: var(--kk-logo-height);
line-height: 0;
margin-bottom: 1rem;
}
.kk-footer__logo > a,
.kk-footer__logo .custom-logo-link {
display: block;
height: var(--kk-logo-height);
}
.kk-footer__logo img,
.kk-footer__logo-img {
display: block;
height: var(--kk-logo-height);
width: auto;
max-width: 100%;
object-fit: contain;
}
.kk-footer__logo--themed .kk-footer__logo-img--dark {
display: none;
}
body.dark-mode .kk-footer__logo--themed .kk-footer__logo-img--light {
display: none;
}
body.dark-mode .kk-footer__logo--themed .kk-footer__logo-img--dark {
display: block;
}
.kk-footer__brand {
display: inline-flex;
align-items: baseline;
gap: 0.125rem;
font-size: 1.125rem;
font-weight: 700;
margin-bottom: 1rem;
text-transform: uppercase;
letter-spacing: 0.02em;
}
.kk-footer__brand-primary {
color: var(--kk-primary);
}
.kk-footer__brand-secondary {
color: var(--kk-footer-heading);
}
.kk-footer__desc {
font-size: 0.8125rem;
line-height: 1.65;
margin: 0 0 1.25rem;
}
.kk-footer__social {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 0.5rem;
list-style: none;
margin: 0;
padding: 0;
}
.kk-footer__social a {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border: none;
border-radius: 50%;
background: var(--kk-primary);
color: #FFFFFF;
}
.kk-footer__social a:hover {
background: var(--kk-primary-dark, #1D4ED8);
color: #FFFFFF;
}
.kk-footer__social svg {
width: 15px;
height: 15px;
}
.kk-footer__posts {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 0.875rem;
}
.kk-footer__post {
display: flex;
align-items: flex-start;
gap: 0.75rem;
}
.kk-footer__post-thumb {
flex-shrink: 0;
width: 56px;
height: 56px;
border-radius: var(--kk-radius-sm);
overflow: hidden;
}
.kk-footer__post-img {
width: 100%;
height: 100%;
object-fit: cover;
}
.kk-footer__post-placeholder {
display: block;
width: 100%;
height: 100%;
background: var(--kk-footer-tag-bg);
}
.kk-footer__post-body {
min-width: 0;
}
.kk-footer__post-title {
display: block;
font-size: 0.8125rem;
font-weight: 500;
color: var(--kk-footer-heading);
line-height: 1.4;
margin-bottom: 0.25rem;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.kk-footer__post-title:hover {
color: var(--kk-primary);
}
.kk-footer__post-date {
font-size: 0.75rem;
color: var(--kk-footer-text);
}
.kk-footer__tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.kk-footer__tag {
display: inline-flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
padding: 8px 14px;
font-size: 0.875rem;
font-weight: 500;
line-height: 1;
color: var(--kkf-text-color);
background: transparent;
border: 1px solid rgba(var(--kkf-primary-rgb), 0.35);
border-radius: 6px;
text-decoration: none;
white-space: nowrap;
transition: color 0.2s ease, border-color 0.2s ease;
}
.kk-footer__tag:hover,
.kk-footer__tag:focus-visible {
color: var(--kkf-primary);
background: transparent;
border-color: var(--kkf-primary);
text-decoration: none;
}
.kk-footer__cat-list {
list-style: none;
margin: 0;
padding: 0;
}
.kk-footer__cat-list li {
border-bottom: 1px solid var(--kk-footer-border);
}
.kk-footer__cat-list li:last-child {
border-bottom: none;
}
.kk-footer__cat-list a {
display: flex;
align-items: center;
justify-content: space-between;
gap: 0.75rem;
padding: 0.625rem 0;
font-size: 0.8125rem;
font-weight: 500;
color: var(--kk-footer-heading);
}
.kk-footer__cat-list a:hover {
color: var(--kk-primary);
}
.kk-footer__cat-list svg {
width: 14px;
height: 14px;
flex-shrink: 0;
color: var(--kk-footer-text);
}
.kk-footer__bottom {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
flex-wrap: wrap;
padding-block: 1.25rem;
border-top: 1px solid var(--kk-footer-border);
}
.kk-footer__copy {
margin: 0;
font-size: 0.8125rem;
}
.kk-footer__legal {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 0.5rem 1.25rem;
list-style: none;
margin: 0;
padding: 0;
}
.kk-footer__legal a {
font-size: 0.8125rem;
}
@media (max-width: 767px) {
.kk-footer__bottom {
flex-direction: column;
align-items: flex-start;
}
.kk-footer__legal {
gap: 0.75rem 1rem;
}
} .kk-404-page {
padding-block: 1.5rem 3rem;
}
.kk-404-hero {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
gap: 2.5rem;
align-items: center;
margin-bottom: 3rem;
}
.kk-404-hero__code {
margin: 0 0 0.5rem;
font-size: clamp(4.5rem, 10vw, 7.5rem);
font-weight: 800;
line-height: 1;
color: var(--kk-primary);
letter-spacing: -0.02em;
}
.kk-404-hero__title {
margin: 0 0 0.75rem;
font-size: clamp(1.5rem, 3vw, 2rem);
font-weight: 700;
color: var(--kk-text);
}
.kk-404-hero__text {
margin: 0 0 1.5rem;
max-width: 34rem;
font-size: 0.9375rem;
line-height: 1.65;
color: var(--kk-text-soft);
}
.kk-404-hero__search {
max-width: 100%;
margin-inline: 0;
}
.kk-404-hero__search-input {
flex: 1;
min-width: 0;
}
.kk-404-hero__home {
display: inline-flex;
align-items: center;
gap: 0.45rem;
margin-top: 1.25rem;
font-size: 0.9375rem;
font-weight: 500;
color: var(--kk-primary);
text-decoration: none;
}
.kk-404-hero__home:hover {
text-decoration: underline;
}
.kk-404-hero__visual {
display: flex;
justify-content: center;
align-items: center;
}
.kk-404-illus {
width: 100%;
max-width: 520px;
height: auto;
}
.kk-404-hero__img {
width: 100%;
max-width: 520px;
height: auto;
object-fit: contain;
border-radius: var(--kk-radius);
}
.kk-404-links {
margin-bottom: 1rem;
}
.kk-404-links__title {
margin: 0 0 1.75rem;
font-size: 1.125rem;
font-weight: 700;
text-align: center;
color: var(--kk-text);
}
.kk-404-links__grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 1.25rem;
}
.kk-404-links__card {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 1.5rem 1rem;
background: var(--kk-card);
border: 1px solid var(--kk-border);
border-radius: var(--kk-radius);
box-shadow: var(--kk-shadow);
text-decoration: none;
transition: border-color var(--kk-transition), box-shadow var(--kk-transition), transform var(--kk-transition);
}
.kk-404-links__card:hover,
.kk-404-links__card:focus-visible {
border-color: var(--kk-primary);
box-shadow: 0 8px 24px rgba(21, 108, 196, 0.12);
transform: translateY(-2px);
}
.kk-404-links__icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 52px;
height: 52px;
font-size: 1.5rem;
color: var(--kk-primary);
}
.kk-404-links__card-title {
display: block;
margin-bottom: 0.35rem;
font-size: 0.9375rem;
font-weight: 600;
color: var(--kk-primary);
line-height: 1.35;
}
.kk-404-links__card-desc {
display: block;
font-size: 0.8125rem;
line-height: 1.5;
color: var(--kk-text-soft);
}
@media (max-width: 991px) {
.kk-404-hero {
grid-template-columns: 1fr;
}
.kk-404-hero__visual {
order: -1;
}
.kk-404-links__grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 575px) {
.kk-404-links__grid {
grid-template-columns: 1fr;
}
} .kk-empty {
text-align: center;
padding: 3rem 1rem;
background: var(--kk-card);
border: 1px solid var(--kk-border);
border-radius: var(--kk-radius);
}
.kk-empty__title {
font-size: 1.5rem;
margin-bottom: 0.5rem;
}
.kk-empty__text {
color: var(--kk-text-soft);
margin-bottom: 1.5rem;
}
.kk-search-form {
display: flex;
gap: 0.5rem;
max-width: 480px;
margin-inline: auto;
}
.kk-search-form input[type="search"] {
flex: 1;
padding: 0.625rem 1rem;
font-size: 0.9375rem;
font-family: inherit;
color: var(--kk-text);
background: var(--kk-bg);
border: 1px solid var(--kk-border);
border-radius: var(--kk-radius-sm);
}
.kk-search-form input[type="search"]:focus {
outline: none;
border-color: var(--kk-primary);
}
.kk-search-form button {
padding: 0.625rem 1.25rem;
font-size: 0.9375rem;
font-weight: 500;
font-family: inherit;
color: #fff;
background: var(--kk-primary);
border: none;
border-radius: var(--kk-radius-sm);
cursor: pointer;
}
.kk-search-form button:hover {
background: #1259a3;
} .kk-archive-header {
margin-bottom: 1.5rem;
padding: 1.5rem;
background: var(--kk-bg-light);
border: 1px solid var(--kk-border);
border-radius: var(--kk-radius);
}
.kk-archive-header__title {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 0.25rem;
}
.kk-archive-header__desc {
font-size: 0.9375rem;
color: var(--kk-text-soft);
margin: 0;
} .kk-sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
.kk-icon-sun,
.kk-icon-moon {
display: none;
}
body:not(.dark-mode) .kk-icon-moon,
body.dark-mode .kk-icon-sun {
display: block;
} .kkf-card__media {
overflow: hidden;
}
.kkf-card__media > a {
display: block;
width: 100%;
height: 100%;
}
.kkf-card__image,
.kkf-post-image,
.kkf-card__media img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.kkf-post-image--placeholder {
display: block;
width: 100%;
height: 100%;
min-height: 100%;
background: var(--kk-border);
}
.kk-card__thumb.kkf-card__media {
aspect-ratio: 16 / 9;
}
.kk-single__thumb.kkf-card__media {
aspect-ratio: 900 / 520;
}
.kk-single__thumb.kkf-card__media img {
width: 100%;
height: 100%;
object-fit: cover;
}input[type="checkbox"].cmplz-category { width: initial; -webkit-appearance: checkbox;}input[type="checkbox"].cmplz-category:checked::before { content: '';}.cmplz-cookiebanner { box-sizing: border-box;}:root { --cmplz_banner_width: 526px; --cmplz_banner_background_color: #ffffff; --cmplz_banner_border_color: #f2f2f2; --cmplz_banner_border_width: 0px 0px 0px 0px ; --cmplz_banner_border_radius: 12px 12px 12px 12px; --cmplz_banner_margin: 10px; --cmplz_categories-height: 163px; --cmplz_title_font_size: 15px; --cmplz_text_line_height: calc(var(--cmplz_text_font_size) * 1.5); --cmplz_text_color: #222222; --cmplz_hyperlink_color: #1E73BE; --cmplz_text_font_size: 12px; --cmplz_link_font_size: 12px; --cmplz_category_body_font_size: 12px; --cmplz_button_accept_background_color: #1E73BE; --cmplz_button_accept_border_color: #1E73BE; --cmplz_button_accept_text_color: #ffffff; --cmplz_button_deny_background_color: #f9f9f9; --cmplz_button_deny_border_color: #f2f2f2; --cmplz_button_deny_text_color: #222222; --cmplz_button_settings_background_color: #f9f9f9; --cmplz_button_settings_border_color: #f2f2f2; --cmplz_button_settings_text_color: #333333; --cmplz_button_border_radius: 6px 6px 6px 6px; --cmplz_button_font_size: 15px; --cmplz_category_header_always_active_color: green; --cmplz_category_header_title_font_size: 14px; --cmplz_category_header_active_font_size: 12px; --cmplz-manage-consent-height: 50px; --cmplz-manage-consent-offset: -35px; --cmplz_slider_active_color: #1e73be; --cmplz_slider_inactive_color: #F56E28; --cmplz_slider_bullet_color: #ffffff;}body.cmplz-banner-active *:not(.cmplz-cookiebanner):not(.cmplz-cookiebanner *) { pointer-events: none !important; user-select: none !important;}.cmplz-cookiebanner * { pointer-events: auto !important; user-select: auto !important;}#cmplz-manage-consent .cmplz-manage-consent { margin: unset; z-index: 9998; color: var(--cmplz_text_color); background-color: var(--cmplz_banner_background_color); border-style: solid; border-color: var(--cmplz_banner_border_color); border-width: var(--cmplz_banner_border_width); border-radius: var(--cmplz_banner_border_radius); border-bottom-left-radius: 0; border-bottom-right-radius: 0; line-height: initial; position: fixed; bottom: var(--cmplz-manage-consent-offset); min-width: 100px; height: var(--cmplz-manage-consent-height); right: 40px; padding: 15px; cursor: pointer; animation: mc_slideOut 0.5s forwards;}#cmplz-manage-consent .cmplz-manage-consent:active { outline: none; border: none;}#cmplz-manage-consent .cmplz-manage-consent.cmplz-dismissed { display: none;}#cmplz-manage-consent .cmplz-manage-consent:hover,#cmplz-manage-consent .cmplz-manage-consent:focus { animation: mc_slideIn 0.5s forwards; animation-delay: 0;}@-webkit-keyframes mc_slideIn { 100% { bottom: 0; }}@keyframes mc_slideIn { 100% { bottom: 0; }}@-webkit-keyframes mc_slideOut { 100% { bottom: var(--cmplz-manage-consent-offset); }}@keyframes mc_slideOut { 100% { bottom: var(--cmplz-manage-consent-offset); }}@media (max-width: 425px) { .cmplz-cookiebanner .cmplz-header .cmplz-title { display: none; }}.cmplz-cookiebanner { max-height: calc(100vh - 20px); overflow-y: auto; position: fixed; height: auto; left: 50%; top: 50%; -ms-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); grid-template-rows: minmax(0, 1fr); z-index: 99999; background: var(--cmplz_banner_background_color);}.cmplz-cookiebanner a { transition: initial;}.cmplz-cookiebanner .cmplz-buttons a.cmplz-btn.tcf { display: none;}.cmplz-cookiebanner.cmplz-dismissed { display: none;}.cmplz-cookiebanner .cmplz-body { width: 100%; grid-column: span 3; overflow-y: auto; overflow-x: hidden; max-height: 55vh;}.cmplz-cookiebanner .cmplz-body::-webkit-scrollbar-track { border-radius: 10px; -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0); background-color: transparent;}.cmplz-cookiebanner .cmplz-body::-webkit-scrollbar { width: 5px; background-color: transparent;}.cmplz-cookiebanner .cmplz-body::-webkit-scrollbar-thumb { background-color: var(--cmplz_button_accept_background_color); border-radius: 10px;}@media (min-width: 350px) { .cmplz-cookiebanner .cmplz-body { min-width: 300px; }}@media (max-height: 400px) { .cmplz-cookiebanner { height: calc(100vh - 20px); display: flex; flex-direction: column; overflow: hidden; gap: 1px; grid-row-gap: 1px; padding: 7px 12px !important; zoom: 0.6; } .cmplz-cookiebanner .cmplz-body { flex: 1; min-height: 0; overflow-y: auto; max-height: none; margin-top: 15px !important; } .cmplz-cookiebanner .cmplz-header, .cmplz-cookiebanner .cmplz-divider, .cmplz-cookiebanner .cmplz-links, .cmplz-cookiebanner .cmplz-buttons, .cmplz-cookiebanner .cmplz-documents { flex-shrink: 0; } .cmplz-cookiebanner .cmplz-header { margin-bottom: 15px !important; max-height: 10px; } .cmplz-close { zoom: 0.6 !important; } .cmplz-cookiebanner .cmplz-buttons { gap: 1px !important; } .cmplz-cookiebanner .cmplz-buttons .cmplz-btn { height: 15vh !important; min-height: unset !important; padding: 0 !important; white-space: nowrap !important; font-size: 1.1rem !important; line-height: 14px !important; zoom: 0.5 !important; } .cmplz-cookiebanner .cmplz-documents, .cmplz-cookiebanner .cmplz-information { zoom: 0.5 !important; }}@media (max-height: 400px) and (max-width: 768px) { .cmplz-cookiebanner { gap: 1px; }}.cmplz-cookiebanner { border-style: solid; border-color: var(--cmplz_banner_border_color); border-width: var(--cmplz_banner_border_width); border-radius: var(--cmplz_banner_border_radius); padding: 15px 20px; display: grid; grid-gap: 10px;}.cmplz-cookiebanner .cmplz-divider { margin-left: -20px; margin-right: -20px;}.cmplz-cookiebanner .cmplz-header { grid-template-columns: 100px 1fr 100px; align-items: center; display: grid; grid-column: span 3;}@media (max-width: 399px) { .cmplz-cookiebanner .cmplz-header { grid-template-columns: auto 1fr auto; }}.cmplz-cookiebanner .cmplz-logo svg { max-height: 35px; width: inherit;}.cmplz-cookiebanner .cmplz-logo img { max-height: 40px; width: inherit;}.cmplz-cookiebanner .cmplz-title { justify-self: center; grid-column-start: 2; font-size: var(--cmplz_title_font_size); color: var(--cmplz_text_color); font-weight: 500;}.cmplz-cookiebanner .cmplz-close { line-height: 20px; justify-self: end; grid-column-start: 3; font-size: 20px; cursor: pointer; width: 20px; height: 20px; color: var(--cmplz_text_color);}.cmplz-cookiebanner .cmplz-close svg { width: 20px; height: 20px;}.cmplz-cookiebanner .cmplz-close:hover { text-decoration: none; line-height: initial; font-size: 18px;}.cmplz-cookiebanner .cmplz-message { word-wrap: break-word; font-size: var(--cmplz_text_font_size); line-height: var(--cmplz_text_line_height); color: var(--cmplz_text_color); margin-bottom: 5px;}.cmplz-cookiebanner .cmplz-message a { color: var(--cmplz_hyperlink_color);}.cmplz-cookiebanner .cmplz-message,.cmplz-cookiebanner .cmplz-categories,.cmplz-cookiebanner .cmplz-links,.cmplz-cookiebanner .cmplz-buttons,.cmplz-cookiebanner .cmplz-divider { grid-column: span 3;}.cmplz-cookiebanner .cmplz-categories.cmplz-tcf .cmplz-category .cmplz-category-header { grid-template-columns: 1fr auto;}.cmplz-cookiebanner .cmplz-categories .cmplz-category { background-color: rgba(239, 239, 239, 0.5);}.cmplz-cookiebanner .cmplz-categories .cmplz-category:not(:last-child) { margin-bottom: 10px;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header { display: grid; grid-template-columns: 1fr auto 15px; grid-template-rows: minmax(0, 1fr); align-items: center; grid-gap: 10px; padding: 10px;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-category-title { font-weight: 500; grid-column-start: 1; justify-self: start; font-size: var(--cmplz_category_header_title_font_size); color: var(--cmplz_text_color); margin: 0;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-always-active { font-size: var(--cmplz_category_header_active_font_size); font-weight: 500; color: var(--cmplz_category_header_always_active_color);}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-always-active label { display: none;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-banner-checkbox { display: flex; align-items: center; margin: 0;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-banner-checkbox input[data-category=cmplz_functional] { display: none;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-category-toggle { background: none; border: none; padding: 0; margin: 0; cursor: pointer; grid-column-start: 3; display: flex; align-items: center; justify-content: center; color: inherit;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header .cmplz-icon.cmplz-open { cursor: pointer; content: ''; transform: rotate(0deg); -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; background-size: cover; height: 18px; width: 18px;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-description { font-size: var(--cmplz_category_body_font_size); color: var(--cmplz_text_color); margin: 0; max-width: 100%; padding: 10px;}@media (max-width: 425px) { .cmplz-cookiebanner .cmplz-category .cmplz-category-header { grid-template-columns: 1fr!important; }}@media (max-width: 425px) { .cmplz-cookiebanner .cmplz-message { margin-right: 5px; }}.cmplz-cookiebanner .cmplz-buttons { display: flex; gap: var(--cmplz_banner_margin);}.cmplz-cookiebanner .cmplz-buttons .cmplz-btn { min-height: 45px; padding: 10px; margin: initial; width: 100%; white-space: nowrap; border-radius: var(--cmplz_button_border_radius); cursor: pointer; font-size: var(--cmplz_button_font_size); font-weight: 500; text-decoration: none; line-height: 20px; text-align: center; flex: initial;}.cmplz-cookiebanner .cmplz-buttons .cmplz-btn:hover { text-decoration: none;}.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-accept { background-color: var(--cmplz_button_accept_background_color); border: 1px solid var(--cmplz_button_accept_border_color); color: var(--cmplz_button_accept_text_color);}.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-deny { background-color: var(--cmplz_button_deny_background_color); border: 1px solid var(--cmplz_button_deny_border_color); color: var(--cmplz_button_deny_text_color);}.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-view-preferences { background-color: var(--cmplz_button_settings_background_color); border: 1px solid var(--cmplz_button_settings_border_color); color: var(--cmplz_button_settings_text_color);}.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-save-preferences { background-color: var(--cmplz_button_settings_background_color); border: 1px solid var(--cmplz_button_settings_border_color); color: var(--cmplz_button_settings_text_color);}.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-manage-options { background-color: var(--cmplz_button_settings_background_color); border: 1px solid var(--cmplz_button_settings_border_color); color: var(--cmplz_button_settings_text_color);}.cmplz-cookiebanner .cmplz-buttons a.cmplz-btn { display: flex; align-items: center; justify-content: center; padding: initial;}@media (max-width: 425px) { .cmplz-cookiebanner .cmplz-links.cmplz-information { display: initial; text-align: center; }}.cmplz-cookiebanner .cmplz-links { display: flex; gap: var(--cmplz_banner_margin);}.cmplz-cookiebanner .cmplz-links.cmplz-information { justify-content: space-between;}.cmplz-cookiebanner .cmplz-links.cmplz-documents { justify-content: center;}.cmplz-cookiebanner .cmplz-links .cmplz-link { color: var(--cmplz_hyperlink_color); font-size: var(--cmplz_link_font_size); text-decoration: underline; margin: 0;}.cmplz-cookiebanner .cmplz-links .cmplz-link.cmplz-read-more-purposes { display: none;}.cmplz-cookiebanner .cmplz-links ul { margin: 0; padding: 0; list-style: none; display: flex; gap: var(--cmplz_banner_margin); justify-content: center;}.cmplz-categories .cmplz-category .cmplz-description-statistics-anonymous { display: none;}.cmplz-categories .cmplz-category .cmplz-description-statistics { display: block;}.cmplz-categories .cmplz-category .cmplz-category-header .cmplz-category-toggle { background: none; border: none; padding: 0; margin: 0; cursor: pointer; grid-column-start: 3; display: flex; align-items: center; justify-content: center; color: inherit;}.cmplz-categories .cmplz-category .cmplz-category-toggle[aria-expanded="true"] .cmplz-icon.cmplz-open { transform: rotate(180deg);}@media (max-width: 768px) { .cmplz-cookiebanner { width: 100%; } .cmplz-cookiebanner .cmplz-buttons { flex-direction: column; }}@media (max-width: 1023px) { .cmplz-cookiebanner { max-width: 100%; }}@media (max-width: 1023px) { .cmplz-cookiebanner { transform: translateX(-50%); bottom: 0; top: initial; }}@media (min-width: 1024px) { .cmplz-cookiebanner { margin: 10px; width: calc(100% - 20px); grid-column-gap: 10px; display: grid; grid-template-columns: 1fr 1fr; bottom: 0; left: initial; top: initial; transform: initial; } .cmplz-cookiebanner.cmplz-categories-type-save-preferences .cmplz-body > div { width: 49%; } .cmplz-cookiebanner.cmplz-categories-visible .cmplz-body > div { width: 49%; } .cmplz-cookiebanner .cmplz-body { grid-column: span 2; display: flex; gap: 10px; } .cmplz-cookiebanner .cmplz-message, .cmplz-cookiebanner .cmplz-categories, .cmplz-cookiebanner .cmplz-links, .cmplz-cookiebanner .cmplz-buttons { grid-column: inherit; } .cmplz-cookiebanner .cmplz-description { grid-column-start: 1; } .cmplz-cookiebanner.optin .cmplz-categories, .cmplz-cookiebanner.optout .cmplz-categories { width: 85vw; grid-column-start: 2; } .cmplz-cookiebanner .cmplz-buttons { grid-column-start: 3; grid-row-start: 3; display: flex; flex-direction: column; } .cmplz-cookiebanner .cmplz-buttons .cmplz-btn { min-width: 250px; width: 100%; } .cmplz-cookiebanner .cmplz-links.cmplz-documents { grid-column-end: 3; } .cmplz-cookiebanner .cmplz-links.cmplz-information { grid-column-start: 3; grid-column-end: 4; grid-row-start: 5; display: flex; justify-content: flex-end; } .cmplz-cookiebanner .cmplz-links.cmplz-documents { grid-column-start: 1; grid-row-start: 5; display: flex; justify-content: flex-start; } .cmplz-cookiebanner .cmplz-categories.cmplz-tcf { height: 160px; } .cmplz-cookiebanner.cmplz-categories-type-view-preferences .cmplz-buttons, .cmplz-cookiebanner.cmplz-categories-type-no .cmplz-buttons { flex-direction: initial; } .cmplz-cookiebanner.cmplz-categories-type-view-preferences.cmplz-categories-visible .cmplz-buttons, .cmplz-cookiebanner.cmplz-categories-type-no.cmplz-categories-visible .cmplz-buttons { flex-direction: column; }}.cmplz-cookiebanner .cmplz-categories,.cmplz-cookiebanner .cmplz-save-preferences,.cmplz-cookiebanner .cmplz-link.cmplz-manage-options,.cmplz-cookiebanner .cmplz-manage-vendors,.cmplz-cookiebanner .cmplz-read-more,.cmplz-cookiebanner .cmplz-btn.cmplz-manage-options { display: none;}.cmplz-cookiebanner .cmplz-categories.cmplz-fade-in { animation: fadeIn 1s; -webkit-animation: fadeIn 1s; -moz-animation: fadeIn 1s; -o-animation: fadeIn 1s; -ms-animation: fadeIn 1s; display: block;}@keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; }}@-moz-keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; }}@-webkit-keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; }}@-o-keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; }}@-ms-keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; }}.cmplz-cookiebanner .cmplz-links.cmplz-information { display: none;}.cmplz-cookiebanner .cmplz-preferences,.cmplz-manage-consent-container .cmplz-preferences { display: none;}@media (max-width: 768px) { #cmplz-manage-consent .cmplz-manage-consent { display: none; }}.cmplz-logo { display: none !important;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox { position: relative;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox input.cmplz-consent-checkbox { opacity: 0; margin: 0; margin-top: -10px; cursor: pointer; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); -moz-opacity: 0; -khtml-opacity: 0; position: absolute; z-index: 1; top: 0px; left: 0px; width: 40px; height: 20px;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox input.cmplz-consent-checkbox:focus + .cmplz-label:before { box-shadow: 0 0 0 2px #245fcc;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox input.cmplz-consent-checkbox:checked + .cmplz-label::before { display: block; background-color: var(--cmplz_slider_active_color); content: ""; padding-left: 6px;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox input.cmplz-consent-checkbox:checked + .cmplz-label:after { left: 14px;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox .cmplz-label { position: relative; padding-left: 30px; margin: 0;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox .cmplz-label:before,.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox .cmplz-label:after { box-sizing: border-box; position: absolute; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; transition: background-color 0.3s, left 0.3s;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox .cmplz-label:before { display: block; content: ""; color: #fff; box-sizing: border-box; font-family: 'FontAwesome', sans-serif; padding-left: 23px; font-size: 12px; line-height: 20px; background-color: var(--cmplz_slider_inactive_color); left: 0px; top: -7px; height: 15px; width: 28px; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px;}.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox .cmplz-label:after { display: block; content: ""; letter-spacing: 20px; background: var(--cmplz_slider_bullet_color); left: 4px; top: -5px; height: 11px; width: 11px;}.cmplz-cookiebanner { box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;}#cmplz-manage-consent .cmplz-manage-consent { box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;}.cmplz-cookiebanner.cmplz-show { box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;}.cmplz-cookiebanner.cmplz-show:hover { transition-duration: 1s; box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;} .twitter-tweet.cmplz-blocked-content-container {padding: 10px 40px;} .cmplz-placeholder-element > blockquote.fb-xfbml-parse-ignore { margin: 0 20px; } .instagram-media.cmplz-placeholder-element > div { max-width: 100%; }