/* ============================================================
   BLOG ARTICLE PAGE  —  blog-article.css
   Breakpoints: base(390) | 768 | 1024 | 1200 | 1440 | 1920
   ============================================================ */

/* ---- Article header ---------------------------------------- */
.blog-article__header {
    text-align: center;
    padding-top: 32px;
    padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
    .blog-article__header { padding-top: 48px; padding-bottom: 32px; }
}
@media screen and (min-width: 1920px) {
    .blog-article__header { padding-top: 64px; padding-bottom: 48px; }
}

.blog-article__category {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6f6763;
    margin-bottom: 12px;
}

.blog-article__title {
    margin-bottom: 12px;
}
@media screen and (min-width: 768px)  { .blog-article__title { margin-bottom: 16px; } }
@media screen and (min-width: 1920px) { .blog-article__title { margin-bottom: 20px; } }

.blog-article__date {
    color: #6f6763;
}

/* ---- Hero image -------------------------------------------- */
.blog-article__hero {
    width: 100%;
    overflow: hidden;
}
.blog-article__hero .lazy-holder {
    height: 56vw;
    min-height: 240px;
}
@media screen and (min-width: 768px)  { .blog-article__hero .lazy-holder { height: 44vw; } }
@media screen and (min-width: 1200px) { .blog-article__hero .lazy-holder { height: 38vw; } }
@media screen and (min-width: 1920px) { .blog-article__hero .lazy-holder { height: 600px; } }
.blog-article__hero .lazy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- Article body ------------------------------------------ */
.blog-article__body {
    padding-top: 40px;
    padding-bottom: 8px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (min-width: 768px)  { .blog-article__body { padding-top: 56px; } }
@media screen and (min-width: 1200px) { .blog-article__body { padding-top: 72px; } }
@media screen and (min-width: 1920px) { .blog-article__body { padding-top: 88px; max-width: 1040px; } }

/* Rich-text content */
.blog-article__text h2,
.blog-article__text h3 {
    color: #4a321e;
    margin-top: 32px;
    margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
    .blog-article__text h2,
    .blog-article__text h3 { margin-top: 40px; margin-bottom: 18px; }
}
@media screen and (min-width: 1920px) {
    .blog-article__text h2,
    .blog-article__text h3 { margin-top: 56px; margin-bottom: 24px; }
}
.blog-article__text h2:first-child,
.blog-article__text h3:first-child {
    margin-top: 0;
}
.blog-article__text p {
    color: #6f6763;
    margin-bottom: 14px;
    line-height: 1.7;
}
.blog-article__text strong,
.blog-article__text b {
    color: #4a321e;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    margin-top: 24px;
    margin-bottom: 10px;
}
@media screen and (min-width: 1920px) {
    .blog-article__text strong,
    .blog-article__text b { font-size: 14px; }
}
.blog-article__text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.blog-article__text ul li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 8px;
    color: #6f6763;
}
.blog-article__text ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #4a321e;
}

/* ---- Image pair -------------------------------------------- */
.blog-article__img-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 32px 0;
}
.blog-article__img-pair > b {
    display: block;
}
@media screen and (min-width: 768px) {
    .blog-article__img-pair { gap: 16px; }
}
@media screen and (min-width: 1200px) {
    .blog-article__img-pair { gap: 24px; margin: 48px 0; }
}
@media screen and (min-width: 1920px) {
    .blog-article__img-pair { gap: 32px; margin: 64px 0; }
}
.blog-article__img-pair .lazy-holder {
    overflow: hidden;
    height: 46vw;
}
@media screen and (min-width: 768px) {
    .blog-article__img-pair .lazy-holder { height: 30vw; }
}
@media screen and (min-width: 1200px) {
    .blog-article__img-pair .lazy-holder { height: 24vw; }
}
@media screen and (min-width: 1920px) {
    .blog-article__img-pair .lazy-holder { height: 420px; }
}
.blog-article__img-pair .lazy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- Blockquote -------------------------------------------- */
.blog-article__quote {
    margin: 32px 0;
    padding: 40px 24px;
    background: url('/img/quote.svg') no-repeat center / auto 80%;
    text-align: center;
    border: none;
}
@media screen and (min-width: 768px) {
    .blog-article__quote { margin: 48px 0; padding: 56px 48px; }
}
@media screen and (min-width: 1920px) {
    .blog-article__quote { margin: 64px 0; padding: 72px 80px; }
}
.blog-article__quote p {
    font-size: 18px;
    color: #4a321e;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    position: relative;
}
@media screen and (min-width: 768px)  { .blog-article__quote p { font-size: 20px; } }
@media screen and (min-width: 1200px) { .blog-article__quote p { font-size: 22px; } }
@media screen and (min-width: 1920px) { .blog-article__quote p { font-size: 26px; } }

/* ---- Bottom full-width image ------------------------------- */
.blog-article__img-full {
    width: 100%;
    overflow: hidden;
    margin-top: 16px;
}
.blog-article__img-full .lazy-holder {
    height: 56vw;
    min-height: 240px;
}
@media screen and (min-width: 768px)  { .blog-article__img-full .lazy-holder { height: 44vw; } }
@media screen and (min-width: 1200px) { .blog-article__img-full .lazy-holder { height: 36vw; } }
@media screen and (min-width: 1920px) { .blog-article__img-full .lazy-holder { height: 560px; } }
.blog-article__img-full .lazy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- Share -------------------------------------------------- */
.blog-article__share {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 28px;
    padding-bottom: 48px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (min-width: 768px)  { .blog-article__share { padding-top: 36px; padding-bottom: 64px; } }
@media screen and (min-width: 1920px) { .blog-article__share { max-width: 1040px; gap: 32px; padding-bottom: 88px; } }

.blog-article__share-label {
    color: #6f6763;
    flex-shrink: 0;
}
.blog-article__share-list {
    display: flex;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}
@media screen and (min-width: 768px) { .blog-article__share-list { gap: 24px; } }
.blog-article__share-list a {
    color: #4a321e;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    transition: opacity 0.3s ease;
}
.blog-article__share-list a:hover { opacity: 0.55; }

/* ---- Nav buttons (shared) ---------------------------------- */
.blog-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}
.blog-nav-btn:hover { opacity: 0.55; }

/* ============================================================
   LATEST ARTICLES SECTION
   ============================================================ */
.blog-latest {
    padding-top: 80px;
    padding-bottom: 80px;
}

.blog-latest__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
@media screen and (min-width: 768px)  { .blog-latest__head { margin-bottom: 32px; } }
@media screen and (min-width: 1920px) { .blog-latest__head { margin-bottom: 40px; } }

.blog-latest__head-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.blog-latest__view-all {
    color: #4a321e;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    display: none;
    transition: opacity 0.3s ease;
}
.blog-latest__view-all:hover { opacity: 0.55; }
@media screen and (min-width: 768px) { .blog-latest__view-all { display: block; } }

.blog-latest__nav { display: flex; gap: 8px; }

.blog-latest__slider { overflow: hidden; }

/* Card: horizontal (image left, content right) */
.blog-latest__card {
    display: flex;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
@media screen and (min-width: 768px) { .blog-latest__card { gap: 24px; } }
@media screen and (min-width: 1920px) { .blog-latest__card { gap: 32px; } }

.blog-latest__card-img {
    width: 130px;
    flex-shrink: 0;
    overflow: hidden;
    height: 110px;
}
@media screen and (min-width: 768px) {
    .blog-latest__card-img { width: 210px; height: 168px; }
}
@media screen and (min-width: 1200px) {
    .blog-latest__card-img { width: 270px; height: 210px; }
}
@media screen and (min-width: 1920px) {
    .blog-latest__card-img { width: 340px; height: 260px; }
}
.blog-latest__card-img .lazy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-latest__card:hover .blog-latest__card-img .lazy-img {
    transform: scale(1.06);
}

.blog-latest__card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.blog-latest__card-cat {
    color: #6f6763;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    font-size: 11px;
}
.blog-latest__card-title {
    color: #4a321e;
    margin-bottom: 8px;
    line-height: 1.4;
}
@media screen and (min-width: 768px) { .blog-latest__card-title { margin-bottom: 12px; } }

.blog-latest__card-desc {
    color: #6f6763;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    margin-bottom: 12px;
    line-height: 1.6;
}
.blog-latest__card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.blog-latest__card-foot span:first-child { color: #6f6763; font-size: 12px; }
.blog-latest__read {
    color: #4a321e;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
}
