.ht {
--ht-bg: #ffffff;
--ht-text: #2f2f2f;
--ht-sub: #777777;
--ht-line: #e5e5e5;
--ht-line-soft: #e8e8e8;
--ht-radius: 6px;
--ht-maxw-card: 1200px;
--ht-maxw-text: 900px;
--ht-gutter: clamp(20px, 5vw, 64px);
--ht-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
color: var(--ht-text);
background: var(--ht-bg);
font-feature-settings: "palt";
-webkit-font-smoothing: antialiased;
} .ht__inner,
.ht-hero__inner,
.ht-intro__inner,
.ht-stories__inner,
.ht-topics__inner,
.ht-picks__inner,
.ht-closing__inner {
margin-inline: auto;
padding-inline: var(--ht-gutter);
} .ht-fade {
opacity: 0;
transform: translateY(16px);
transition: opacity 0.7s var(--ht-ease), transform 0.7s var(--ht-ease);
will-change: opacity, transform;
}
.ht-fade.is-visible {
opacity: 1;
transform: none;
}
@media (prefers-reduced-motion: reduce) {
.ht-fade {
opacity: 1;
transform: none;
transition: none;
}
} .ht-hero {
position: relative;
min-height: 600px;
height: 68vh;
max-height: 700px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: #ffffff;
background-color: #1d1d1d;
background-image:
linear-gradient(rgba(20, 20, 20, 0.42), rgba(20, 20, 20, 0.42)),
var(--ht-hero-image);
background-size: cover;
background-position: center;
}
.ht-hero__inner {
max-width: var(--ht-maxw-text);
}
.ht-hero__kicker {
margin: 0 0 1.4rem;
font-size: 0.78rem;
letter-spacing: 0.42em;
text-transform: uppercase;
font-weight: 500;
}
.ht-hero__title {
margin: 0;
font-size: clamp(2rem, 5.2vw, 3.6rem);
font-weight: 400;
line-height: 1.32;
letter-spacing: 0.01em;
}
.ht-hero__lead {
margin: 1.8rem auto 0;
max-width: 36em;
font-size: 0.92rem;
line-height: 2;
color: rgba(255, 255, 255, 0.86);
}
.ht-hero__scroll {
position: absolute;
bottom: 32px;
left: 50%;
width: 1px;
height: 54px;
background: rgba(255, 255, 255, 0.6);
transform: translateX(-50%);
animation: ht-scroll 2.4s var(--ht-ease) infinite;
}
@keyframes ht-scroll {
0% { transform: translateX(-50%) scaleY(0); transform-origin: top; }
45% { transform: translateX(-50%) scaleY(1); transform-origin: top; }
55% { transform: translateX(-50%) scaleY(1); transform-origin: bottom; }
100% { transform: translateX(-50%) scaleY(0); transform-origin: bottom; }
} .ht-intro {
padding-block: clamp(72px, 12vw, 140px);
}
.ht-intro__inner {
max-width: 680px;
text-align: center;
}
.ht-intro__label {
margin: 0 0 1.6rem;
font-size: 0.72rem;
letter-spacing: 0.36em;
text-transform: uppercase;
color: var(--ht-sub);
}
.ht-intro__text {
margin: 0;
font-size: 1.02rem;
line-height: 2.15;
} .ht-stories {
padding-block: clamp(48px, 9vw, 110px);
}
.ht-stories__inner {
max-width: 1160px; }
.ht-stories__head {
margin-bottom: clamp(48px, 7vw, 80px);
padding-bottom: 1.6rem;
border-bottom: 1px solid var(--ht-line-soft);
text-align: center;
}
.ht-stories__title {
margin: 0;
font-size: clamp(1.4rem, 3vw, 1.9rem);
font-weight: 400;
letter-spacing: 0.14em;
text-transform: uppercase;
} .ht-stories__list {
display: grid;
gap: 0;
}
.ht-stories__empty {
color: var(--ht-sub);
font-size: 0.95rem;
text-align: center;
} .ht-card--wide {
padding-block: clamp(40px, 6vw, 72px);
border-bottom: 1px solid var(--ht-line-soft);
}
.ht-card--wide:first-child {
padding-top: 0;
}
.ht-card__media {
display: block;
overflow: hidden;
border-radius: var(--ht-radius);
background: #f4f4f4;
}
.ht-card__image {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 1s var(--ht-ease);
}
.ht-card__image--placeholder {
display: block;
aspect-ratio: 3 / 2;
background: repeating-linear-gradient(135deg, #f3f3f3 0 14px, #ededed 14px 28px);
} .ht-card__media:hover .ht-card__image,
.ht-card__media:focus-visible .ht-card__image {
transform: scale(1.05);
} .ht-card__no {
margin: 0 0 1.3rem;
font-size: 0.66rem;
letter-spacing: 0.42em;
text-transform: uppercase;
color: var(--ht-sub);
} .ht-card__title {
margin: 0 0 1.2rem;
font-size: clamp(1.5rem, 3.4vw, 2.15rem);
font-weight: 400;
line-height: 1.42;
letter-spacing: 0.005em;
}
.ht-card__link {
color: inherit;
text-decoration: none;
transition: opacity 0.4s var(--ht-ease);
}
.ht-card__link:hover {
opacity: 0.6;
} .ht-card__excerpt {
margin: 0 0 1.6rem;
font-size: 0.94rem;
line-height: 1.95;
color: #4f4f4f;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
} .ht-card__date {
margin: 0 0 1.5rem;
font-size: 0.74rem;
letter-spacing: 0.06em;
color: var(--ht-sub);
} .ht-card__more {
display: inline-block;
font-size: 0.82rem;
letter-spacing: 0.08em;
color: var(--ht-text);
text-decoration: none;
transition: opacity 0.4s var(--ht-ease);
}
.ht-card__arrow {
display: inline-block;
margin-left: 0.3em;
transition: transform 0.4s var(--ht-ease);
}
.ht-card__more:hover {
text-decoration: underline;
text-underline-offset: 4px;
text-decoration-thickness: 1px;
}
.ht-card__more:hover .ht-card__arrow {
transform: translateX(4px);
} @media (min-width: 768px) {
.ht-card--wide {
display: grid;
grid-template-columns: 40% 60%;
align-items: center;
gap: clamp(32px, 5vw, 64px);
}
.ht-card--wide .ht-card__media {
aspect-ratio: 4 / 3;
}
} @media (max-width: 767px) {
.ht-card--wide .ht-card__media {
aspect-ratio: 16 / 10;
margin-bottom: 1.8rem;
}
} .ht-card__meta {
display: flex;
align-items: center;
gap: 1rem;
margin-top: 1.4rem;
font-size: 0.74rem;
letter-spacing: 0.04em;
color: var(--ht-sub);
}
.ht-card--pick .ht-card__media {
aspect-ratio: 4 / 5;
margin-bottom: 1.6rem;
}
.ht-card--pick .ht-card__no {
margin-bottom: 0.9rem;
}
.ht-card--pick .ht-card__title {
font-size: clamp(1.2rem, 2.4vw, 1.55rem);
margin-bottom: 0.9rem;
} .ht-pagination {
margin-top: clamp(56px, 8vw, 88px);
}
.ht-pagination__list {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 0.4rem;
margin: 0;
padding: 0;
list-style: none;
}
.ht-pagination__item .page-numbers {
display: grid;
place-items: center;
min-width: 40px;
height: 40px;
padding: 0 0.6rem;
font-size: 0.85rem;
color: var(--ht-text);
text-decoration: none;
border: 1px solid var(--ht-line);
border-radius: var(--ht-radius);
transition: border-color 0.3s var(--ht-ease), background 0.3s var(--ht-ease);
}
.ht-pagination__item .page-numbers:hover {
border-color: var(--ht-text);
}
.ht-pagination__item .page-numbers.current {
background: var(--ht-text);
color: #ffffff;
border-color: var(--ht-text);
}
.ht-pagination__item .page-numbers.dots {
border-color: transparent;
} .ht-topics {
padding-block: clamp(72px, 12vw, 130px);
border-top: 1px solid var(--ht-line-soft);
}
.ht-topics__inner {
max-width: var(--ht-maxw-text);
text-align: center;
}
.ht-topics__list {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0.7rem;
margin: 2.6rem 0 0;
padding: 0;
list-style: none;
}
.ht-topics__tag {
display: inline-block;
padding: 0.55rem 1.25rem;
font-size: 0.82rem;
letter-spacing: 0.04em;
color: var(--ht-text);
border: 1px solid var(--ht-line);
border-radius: 999px;
cursor: default;
transition: border-color 0.3s var(--ht-ease), color 0.3s var(--ht-ease);
}
.ht-topics__tag:hover {
border-color: var(--ht-text);
} .ht-picks {
padding-block: clamp(40px, 8vw, 96px);
}
.ht-picks__inner {
max-width: var(--ht-maxw-card);
}
.ht-picks__title {
margin-bottom: clamp(36px, 6vw, 60px);
text-align: center;
} .ht-picks__grid {
display: grid;
gap: clamp(28px, 4vw, 48px);
}
@media (min-width: 768px) {
.ht-picks__grid {
grid-template-columns: repeat(3, 1fr);
}
} .ht-closing {
padding-block: clamp(120px, 18vw, 220px);
text-align: center;
}
.ht-closing__mark {
margin: 0 0 2rem;
font-size: 0.9rem;
letter-spacing: 0.5em;
color: var(--ht-sub);
}
.ht-closing__text {
margin: 0;
font-size: clamp(1.2rem, 3vw, 1.7rem);
font-weight: 400;
letter-spacing: 0.02em;
}