.blog-hero {
position: relative;
min-height: 45vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
background-color: #2D2A26;
}
.blog-hero__bg {
position: absolute;
inset: 0;
z-index: 1;
}
.blog-hero__bg-img {
width: 100%;
height: 100%;
object-fit: cover;
}
.blog-hero__overlay {
position: absolute;
inset: 0;
background: linear-gradient(
180deg,
rgba(45, 42, 38, 0.5) 0%,
rgba(45, 42, 38, 0.7) 100%
);
z-index: 2;
}
.blog-hero__content {
position: relative;
z-index: 3;
text-align: center;
padding: var(--hd-space-4xl) var(--hd-gutter) var(--hd-space-2xl);
max-width: 700px;
}
.blog-hero__title {
font-family: var(--hd-font-heading);
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 800;
color: var(--hd-white);
margin-bottom: 0;
}
.blog-hero__subtitle {
font-size: 1.0625rem;
color: rgba(255, 255, 255, 0.75);
margin-bottom: 0;
} .blog-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--hd-space-xl);
} .blog-card {
border-radius: var(--hd-radius-lg);
overflow: hidden;
background: var(--hd-white);
border: 1px solid var(--hd-border);
transition: var(--hd-transition-slow);
}
.blog-card:hover {
transform: translateY(-4px);
box-shadow: var(--hd-shadow-lg);
border-color: var(--hd-gold-lighter);
}
.blog-card__link {
display: block;
text-decoration: none;
color: inherit;
}
.blog-card__image {
position: relative;
aspect-ratio: 16 / 10;
overflow: hidden;
}
.blog-card__img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card:hover .blog-card__img {
transform: scale(1.05);
}
.blog-card__placeholder {
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--hd-gold-pale), var(--hd-cream-dark));
display: flex;
align-items: center;
justify-content: center;
color: var(--hd-gold);
}
.blog-card__category {
position: absolute;
top: var(--hd-space-md);
left: var(--hd-space-md);
padding: 4px 14px;
background: rgba(184, 134, 11, 0.85);
backdrop-filter: blur(4px);
color: var(--hd-white);
font-size: 0.6875rem;
font-weight: 700;
letter-spacing: 0.05em;
text-transform: uppercase;
border-radius: var(--hd-radius-full);
}
.blog-card__body {
padding: var(--hd-space-lg);
}
.blog-card__meta {
display: flex;
align-items: center;
gap: 6px;
font-size: 0.8125rem;
color: var(--hd-text-muted);
margin-bottom: var(--hd-space-sm);
}
.blog-card__meta-sep {
color: var(--hd-gold);
}
.blog-card__title {
font-family: var(--hd-font-heading);
font-size: 1.25rem;
font-weight: 700;
line-height: 1.3;
color: var(--hd-text-primary);
margin: 0 0 var(--hd-space-sm);
}
.blog-card:hover .blog-card__title {
color: var(--hd-gold-dark);
}
.blog-card__excerpt {
font-size: 0.9375rem;
color: var(--hd-text-secondary);
line-height: 1.6;
margin: 0 0 var(--hd-space-md);
}
.blog-card__read-more {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 0.875rem;
font-weight: 600;
color: var(--hd-gold);
transition: var(--hd-transition);
}
.blog-card:hover .blog-card__read-more {
gap: 10px;
color: var(--hd-gold-dark);
} .blog-pagination {
margin-top: var(--hd-space-2xl);
}
.blog-pagination ul {
display: flex;
align-items: center;
justify-content: center;
gap: var(--hd-space-xs);
list-style: none;
margin: 0;
padding: 0;
}
.blog-pagination a,
.blog-pagination span {
display: flex;
align-items: center;
justify-content: center;
min-width: 40px;
height: 40px;
padding: 0 var(--hd-space-sm);
border-radius: var(--hd-radius-md);
font-size: 0.875rem;
font-weight: 600;
color: var(--hd-text-secondary);
text-decoration: none;
transition: var(--hd-transition);
}
.blog-pagination a:hover {
background: var(--hd-gold-pale);
color: var(--hd-gold-dark);
}
.blog-pagination .current {
background: var(--hd-gold);
color: var(--hd-white);
} .blog-empty {
text-align: center;
padding: var(--hd-space-3xl) 0;
}
.blog-empty h2 {
margin: var(--hd-space-lg) 0 var(--hd-space-sm);
} .post-hero {
position: relative;
min-height: 50vh;
display: flex;
align-items: flex-end;
justify-content: center;
overflow: hidden;
background-color: #2D2A26;
}
.post-hero__bg {
position: absolute;
inset: 0;
z-index: 1;
}
.post-hero__bg-img {
width: 100%;
height: 100%;
object-fit: cover;
}
.post-hero__overlay {
position: absolute;
inset: 0;
background: linear-gradient(
180deg,
rgba(45, 42, 38, 0.2) 0%,
rgba(45, 42, 38, 0.85) 100%
);
z-index: 2;
}
.post-hero__content {
position: relative;
z-index: 3;
text-align: center;
padding: var(--hd-space-4xl) var(--hd-gutter) var(--hd-space-2xl);
max-width: 800px;
}
.post-hero__category {
display: inline-block;
padding: 4px 16px;
background: rgba(184, 134, 11, 0.3);
border: 1px solid rgba(212, 168, 67, 0.4);
border-radius: var(--hd-radius-full);
color: var(--hd-gold-lighter);
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
margin-bottom: var(--hd-space-md);
}
.post-hero__title {
font-family: var(--hd-font-heading);
font-size: clamp(2rem, 5vw, 3rem);
font-weight: 800;
color: var(--hd-white);
line-height: 1.15;
margin-bottom: var(--hd-space-md);
}
.post-hero__meta {
display: flex;
align-items: center;
justify-content: center;
gap: var(--hd-space-sm);
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.65);
} .post-content {
max-width: 720px;
margin: 0 auto;
}
.post-content__body {
font-size: 1.0625rem;
line-height: 1.8;
color: var(--hd-text-primary);
}
.post-content__body h2 {
margin-top: var(--hd-space-2xl);
margin-bottom: var(--hd-space-md);
}
.post-content__body h3 {
margin-top: var(--hd-space-xl);
margin-bottom: var(--hd-space-sm);
}
.post-content__body p {
margin-bottom: var(--hd-space-lg);
}
.post-content__body a {
color: var(--hd-gold-dark);
text-decoration: underline;
text-underline-offset: 2px;
}
.post-content__body a:hover {
color: var(--hd-gold);
}
.post-content__body ul,
.post-content__body ol {
margin: 0 0 var(--hd-space-lg) var(--hd-space-lg);
padding: 0;
}
.post-content__body li {
margin-bottom: var(--hd-space-xs);
} .post-footer {
margin-top: var(--hd-space-2xl);
}
.post-footer__tags {
display: flex;
flex-wrap: wrap;
gap: var(--hd-space-sm);
}
.post-footer__tag {
display: inline-block;
padding: 4px 14px;
background: var(--hd-gold-pale);
color: var(--hd-gold-dark);
font-size: 0.8125rem;
font-weight: 600;
border-radius: var(--hd-radius-full);
text-decoration: none;
transition: var(--hd-transition);
}
.post-footer__tag:hover {
background: var(--hd-gold);
color: var(--hd-white);
}
.post-footer__divider {
height: 1px;
background: var(--hd-border);
margin: var(--hd-space-xl) 0;
} .post-nav {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--hd-space-lg);
}
.post-nav__link {
display: flex;
align-items: center;
gap: var(--hd-space-sm);
padding: var(--hd-space-lg);
border: 1px solid var(--hd-border);
border-radius: var(--hd-radius-md);
text-decoration: none;
color: var(--hd-text-primary);
transition: var(--hd-transition);
}
.post-nav__link:hover {
border-color: var(--hd-gold-lighter);
background: var(--hd-gold-pale);
color: var(--hd-text-primary);
}
.post-nav__link--next {
text-align: right;
justify-content: flex-end;
grid-column: 2;
}
.post-nav__link svg {
flex-shrink: 0;
color: var(--hd-gold);
}
.post-nav__label {
display: block;
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 0.05em;
text-transform: uppercase;
color: var(--hd-gold);
margin-bottom: 2px;
}
.post-nav__title {
display: block;
font-family: var(--hd-font-heading);
font-size: 1rem;
font-weight: 600;
line-height: 1.3;
} @media (max-width: 1024px) {
.blog-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.blog-grid {
grid-template-columns: 1fr;
}
.post-nav {
grid-template-columns: 1fr;
}
.post-nav__link--next {
grid-column: 1;
text-align: left;
justify-content: flex-start;
flex-direction: row-reverse;
}
.blog-hero {
min-height: 35vh;
}
.post-hero {
min-height: 40vh;
}
}