:root {
    --background-gradient: linear-gradient(135deg, #FFF0F6 0%, #F0FFF9 100%);
    --background-base: #FFFFFF;
    --primary: #FF8FB1;
    --secondary: #B4E4FF;
    --accent-mint: #98D8AA;
    --accent-lavender: #D0BFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --border-color: rgba(0, 0, 0, 0.06);
    --shadow-soft: 0 10px 30px -5px rgba(0, 0, 0, 0.04);
}

.site-body {
    font-family: 'Inter', sans-serif;
    background: var(--background-gradient);
    background-attachment: fixed;
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

.text-muted {
    color: #71717A !important;
}

.heading-serif {
    font-family: 'DM Serif Display', serif;
}

* {
    box-sizing: border-box;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.rounded-card {
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pill-button {
    border-radius: 9999px;
    background: linear-gradient(90deg, var(--primary), var(--accent-mint));
    transition: transform 0.2s ease, filter 0.2s ease;
}

.pill-button:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* ===== header ===== */
.header-velv .logo-img {
    max-width: 50px;
    transition: transform 0.3s ease;
}

.header-velv .logo-img:hover {
    transform: scale(1.05);
}

.header-velv-link {
    position: relative;
    padding: 4px 0;
}

.header-velv-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF8FB1;
    transition: width 0.3s ease;
}

.header-velv-link:hover::after {
    width: 100%;
}

.header-velv .js-mobile-menu {
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.header-velv .js-mobile-menu.active {
    transform: translate-x(0);
}

/* ===== hero ===== */
#hero-velv-news .js-ticker-track {
    display: flex;
    animation: ticker-scroll 35s linear infinite;
}

#hero-velv-news .js-ticker-track:hover {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

#hero-velv-news .js-hero-slide.z-10 {
    opacity: 1;
    z-index: 10;
}

#hero-velv-news .js-hero-slide.z-0 {
    opacity: 0;
    z-index: 0;
}

#hero-velv-news .hero-slide-overlay {
    background: linear-gradient(0deg, rgba(18, 18, 18, 0.95) 0%, rgba(18, 18, 18, 0.4) 60%, rgba(18, 18, 18, 0) 100%);
}

#hero-velv-news h1,
#hero-velv-news h2 {
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

#hero-velv-news .ticker-item {
    min-width: 320px;
}

@media (max-width: 768px) {
    #hero-velv-news .js-ticker-track {
        animation-duration: 25s;
    }
}

/* ===== world_news ===== */
#world-news-section {
    position: relative;
    overflow: hidden;
}

#world-news-section .news-card {
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

#world-news-section .news-card img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#world-news-section .news-card:hover img {
    transform: scale(1.08);
}

#world-news-section .shadow-soft {
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04);
}

#world-news-section .news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

#world-news-section h2,
#world-news-section h3 {
    color: #1A1A1A !important;
}

#world-news-section a:hover h3 {
    color: #FF8FB1 !important;
}

/* ===== tech_news ===== */
.velv-tech-news .velv-tech-grid {
    display: grid;
    grid-auto-rows: 1fr;
}

.velv-tech-news .js-filter-btn.active {
    background-color: #B4E4FF;
    border-color: #B4E4FF;
    color: #1A1A1A;
}

.velv-tech-news .js-tech-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease, display 0.4s allow-discrete;
}

.velv-tech-news .js-tech-card.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

@media (max-width: 767px) {
    .velv-tech-news .js-tech-card.md\:col-span-2 {
        grid-column: span 1 / span 1 !important;
    }
}

/* ===== lifestyle_news ===== */
.lifestyle-news-block {
    font-family: 'Inter', sans-serif;
}

.lifestyle-news-block h2,
.lifestyle-news-block h3 {
    font-family: 'DM Serif Display', serif;
}

.lifestyle-news-block .lifestyle-card {
    backface-visibility: hidden;
    transform: translateZ(0);
    flex-basis: 100%;
}

.lifestyle-news-block .lifestyle-card:hover {
    transform: translateY(-8px);
}

.lifestyle-news-block .lifestyle-card h3 a {
    transition: color 0.3s ease;
}

.lifestyle-news-block .lifestyle-card .bg-gradient-to-r {
    background-size: 200% auto;
    transition: background-position 0.5s ease, transform 0.2s ease;
}

.lifestyle-news-block .lifestyle-card .bg-gradient-to-r:hover {
    background-position: right center;
}

@media (max-width: 767px) {
    .lifestyle-news-block h2 {
        font-size: 16px !important;
    }

    .lifestyle-news-block h3 {
        font-size: 14px !important;
    }
}

/* ===== travel_news ===== */
.travel-news-block {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.travel-news-block .travel-card {
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.travel-news-block .travel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.travel-news-block .travel-card img {
    transition: transform 0.6s ease;
}

.travel-news-block .travel-card:hover img {
    transform: scale(1.05);
}

.travel-news-block h2,
.travel-news-block h3 {
    color: #1A1A1A;
}

.travel-news-block .bg-gradient-soft {
    background: linear-gradient(135deg, #FFF0F6 0%, #F0FFF9 100%);
}

/* ===== footer ===== */
.footer-velv {
    font-family: 'Inter', sans-serif;
}

.footer-velv .font-serif {
    font-family: 'DM Serif Display', serif;
}

.footer-velv .footer-col-nav a,
.footer-velv .footer-col-legal a {
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.footer-velv .footer-col-nav a::after,
.footer-velv .footer-col-legal a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #FF8FB1;
    transition: width 0.3s ease;
}

.footer-velv .footer-col-nav a:hover::after,
.footer-velv .footer-col-legal a:hover::after {
    width: 100%;
}

.footer-velv .js-newsletter-form input::placeholder {
    color: #71717A !important;
    opacity: 1;
}

@media (max-width: 767px) {

    .footer-velv .footer-col-nav,
    .footer-velv .footer-col-legal,
    .footer-velv .footer-col-brand,
    .footer-velv .footer-col-newsletter {
        text-align: center;
    }

    .footer-velv .footer-col-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-velv .js-newsletter-form {
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ===== PAGE: privacy ===== */
.policy-content-wrapper { background: #FFFFFF; border-radius: 24px; box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04); margin-bottom: 40px; } .policy-container { line-height: 1.8; color: #1A1A1A; } .policy-section h2 { color: #1A1A1A; border-bottom: 2px solid rgba(255, 143, 177, 0.2); padding-bottom: 8px; display: inline-block; width: 100%; } .policy-section p, .policy-section li { color: #4A4A4A; } .policy-section strong { color: #1A1A1A; font-weight: 600; } .policy-section ul li i { font-size: 1.2rem; min-width: 24px; }

/* ===== PAGE: terms ===== */
.policy-content-wrapper { background: #FFFFFF; font-family: 'Inter', sans-serif; overflow-x: hidden; width: 100%; }.policy-content-wrapper .terms-section { transition: opacity 0.3s ease-in-out; }.policy-content-wrapper .shadow-soft { box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04); }.policy-content-wrapper .terms-container { hyphens: auto; }.policy-content-wrapper a { text-decoration: none; }.policy-content-wrapper .terms-body section + section { margin-top: 48px; }@media (max-width: 768px) { .policy-content-wrapper .terms-body section + section { margin-top: 32px; } }

/* ===== PAGE: cookies ===== */
.policy-content-wrapper { padding: 40px 20px; max-width: 900px; margin: 0 auto; line-height: 1.6; color: #1A1A1A; font-family: 'Inter', sans-serif; } .cookies-policy-container .cookies-header { margin-bottom: 48px; text-align: left; } .cookies-policy-container .cookies-title { font-family: 'DM Serif Display', serif; color: #1A1A1A; font-size: 32px; margin-bottom: 16px; line-height: 1.2; } @media (min-width: 768px) { .cookies-policy-container .cookies-title { font-size: 42px; } } .cookies-policy-container .cookies-intro { font-size: 16px; color: #4A4A4A; } .cookies-policy-container .cookies-section { margin-bottom: 32px; } .cookies-policy-container .cookies-subtitle { font-family: 'DM Serif Display', serif; color: #FF8FB1; font-size: 16px; margin-bottom: 12px; font-weight: 600; line-height: 1.3; } @media (min-width: 768px) { .cookies-policy-container .cookies-subtitle { font-size: 26px; } } .cookies-policy-container .cookies-text { font-size: 14px; margin-bottom: 12px; color: #4A4A4A; } @media (min-width: 768px) { .cookies-policy-container .cookies-text { font-size: 16px; } } .cookies-policy-container .cookies-list { list-style: none; padding-left: 0; margin-bottom: 16px; } .cookies-policy-container .cookies-list-item { font-size: 14px; color: #4A4A4A; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 10px; } @media (min-width: 768px) { .cookies-policy-container .cookies-list-item { font-size: 16px; } } .cookies-policy-container .cookies-list-item i { color: #98D8AA; flex-shrink: 0; margin-top: 4px; } .cookies-policy-container .cookies-note { padding: 16px; background-color: rgba(180, 228, 255, 0.1); border-left: 4px solid #B4E4FF; font-style: italic; font-size: 14px; color: #71717A; } .cookies-policy-container .cookies-date { margin-top: 40px; font-size: 12px; color: #A1A1AA; border-top: 1px solid rgba(0,0,0,0.06); padding-top: 20px; }

/* ===== PAGE: disclaimer ===== */
.policy-content-wrapper { padding: 40px 20px; background: #ffffff; min-height: 100vh; font-family: 'Inter', sans-serif; color: #1A1A1A; } .policy-container { max-width: 800px; margin: 0 auto; line-height: 1.8; } .policy-header { margin-bottom: 48px; border-bottom: 1px solid rgba(0,0,0,0.06); padding-bottom: 24px; } .policy-header h1 { font-family: 'DM Serif Display', serif; color: #1A1A1A; font-size: 28px; line-height: 1.2; margin-bottom: 12px; } @media (min-width: 768px) { .policy-header h1 { font-size: 42px; } } .last-updated { font-size: 14px; color: #71717A; font-weight: 500; } .policy-body h2 { font-family: 'DM Serif Display', serif; color: #1A1A1A; font-size: 18px; margin-top: 32px; margin-bottom: 16px; border-left: 4px solid #FF8FB1; padding-left: 16px; } @media (min-width: 768px) { .policy-body h2 { font-size: 26px; } } .policy-body p { margin-bottom: 20px; font-size: 16px; text-align: justify; hyphens: auto; } .policy-body ul, .policy-body ol { margin-bottom: 24px; padding-left: 20px; } .policy-body li { margin-bottom: 12px; position: relative; list-style-type: none; padding-left: 10px; } .policy-body ul li::before { content: '•'; color: #FF8FB1; font-weight: bold; display: inline-block; width: 1em; margin-left: -1em; } .policy-body ol { list-style-type: decimal; } .policy-body ol li { padding-left: 5px; list-style-position: outside; } .policy-body strong { color: #1A1A1A; font-weight: 600; } .policy-body a { color: #FF8FB1; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s ease; } .policy-body a:hover { border-bottom-color: #FF8FB1; }

/* ===== PAGE: world-news ===== */
.world-news-section .shadow-soft { box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04); }
.world-news-section .js-news-card { border: 1px solid rgba(0, 0, 0, 0.06); }
.world-news-section .js-news-card:hover { border-color: rgba(255, 143, 177, 0.3); }
.world-news-section .js-search-input::placeholder { color: #71717A; opacity: 1; }
.world-news-section .line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ===== PAGE: tech-news ===== */
.velv-tech-section .velv-controls input::placeholder {
  color: #9CA3AF;
  opacity: 1;
}
.velv-tech-section .velv-controls select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}
.velv-tech-section .js-article-card {
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04);
}
.velv-tech-section .js-article-card h3 {
  font-family: 'DM Serif Display', serif;
}

/* ===== PAGE: lifestyle-news ===== */
.category-list-section .shadow-soft { box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04); }
.category-list-section .js-article-card { transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.category-list-section input::placeholder { color: #71717A; opacity: 1; }
.category-list-section .js-article-title { transition: color 0.3s ease; }
.category-list-section .js-no-results.hidden { display: none; }

/* ===== PAGE: travel-news ===== */
.travel-list .shadow-soft {
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04);
}

.travel-list .line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.travel-list input::placeholder {
  color: #71717A;
  opacity: 0.6;
}

.travel-list .js-article-card {
  will-change: transform, opacity;
}

@media (max-width: 767px) {
  .travel-list .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* ===== PAGE: food-news ===== */
.food-category-section {
  font-family: 'Inter', sans-serif;
}
.food-category-section .font-serif {
  font-family: 'DM Serif Display', serif;
}
.food-category-section .shadow-soft {
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04);
}
.food-category-section .js-article-card {
  height: 100%;
}
.food-category-section .js-search-input::placeholder {
  color: #71717A;
  opacity: 1;
}
.food-category-section .js-search-input:-ms-input-placeholder {
  color: #71717A;
}
.food-category-section .js-search-input::-ms-input-placeholder {
  color: #71717A;
}
.food-category-section .line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== PAGE: about ===== */
.velv-about-content .container { position: relative; z-index: 10; }
.velv-values .velv-value-card { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.velv-values .velv-value-card:hover { transform: translateY(-10px); }
.velv-team .velv-team-member img { transition: transform 0.5s ease; }
.velv-team .velv-team-member:hover img { transform: scale(1.05); }
.velv-team .ri-quill-pen-line, .velv-team .ri-rocket-line, .velv-team .ri-palette-line { font-size: 1.25rem; }

/* ===== PAGE: contact ===== */
.velv-contact .velv-input::placeholder,
.velv-contact .velv-textarea::placeholder {
  color: #A1A1AA;
  opacity: 1;
}

.velv-contact .velv-input:focus,
.velv-contact .velv-textarea:focus {
  border-color: #FF8FB1;
  background-color: #FFFFFF;
}

.velv-contact .velv-submit-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.velv-contact .velv-contact-info-card {
  position: relative;
  overflow: hidden;
}

.velv-contact .js-form-success.hidden {
  display: none;
}

@media (max-width: 767px) {
  .velv-contact .velv-submit-btn {
    width: 100%;
  }
}

.velv-avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
    background-color: #F0FFF9;
}

.velv-comment-container {
    transition: all 0.3s ease;
}

.velv-comment-container:hover {
    border-color: rgba(255, 143, 177, 0.2);
}

.velv-avatar-sm {
    width: 40px;
    height: 40px;
    object-fit: cover;
    background-color: #FFF0F6;
}

.velv-reply-container {
    background-color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.velv-reply-wrapper {
    position: relative;
}

.velv-reply-wrapper::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 50%;
    width: 2px;
    border-left: 2px solid rgba(0, 0, 0, 0.04);
    border-bottom: 2px solid rgba(0, 0, 0, 0.04);
    border-bottom-left-radius: 12px;
}


/* ===== PAGE TEMPLATE: world-news ===== */
.site-body {
    background: linear-gradient(135deg, #FFF0F6 0%, #F0FFF9 100%);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

.header-velv-link {
    position: relative;
    padding: 4px 0;
}

.header-velv-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF8FB1;
    transition: width 0.3s ease;
}

.header-velv-link:hover::after {
    width: 100%;
}

.prose-velv h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 16px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1A1A1A;
    line-height: 1.3;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .prose-velv h2 {
        font-size: 32px;
    }
}

.prose-velv h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 14px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1A1A1A;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .prose-velv h3 {
        font-size: 26px;
    }
}

.prose-velv p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #4A4A4A;
    font-size: 16px;
}

.prose-velv ul {
    margin-bottom: 20px;
    list-style: none;
    padding-left: 0;
}

.prose-velv ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: #4A4A4A;
}

.prose-velv ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #FF8FB1;
    border-radius: 50%;
}

.footer-velv {
    font-family: 'Inter', sans-serif;
}

.footer-velv .font-serif {
    font-family: 'DM Serif Display', serif;
}

.footer-velv .footer-col-nav a,
.footer-velv .footer-col-legal a {
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.footer-velv .footer-col-nav a::after,
.footer-velv .footer-col-legal a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #FF8FB1;
    transition: width 0.3s ease;
}

.footer-velv .footer-col-nav a:hover::after,
.footer-velv .footer-col-legal a:hover::after {
    width: 100%;
}

.js-like-btn.liked {
    color: #FF8FB1 !important;
}

.shadow-soft {
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04);
}

/* ===== PAGE TEMPLATE: tech-news ===== */
.tech-detail-page {
    font-family: 'Inter', sans-serif;
}

.tech-detail-page .font-serif {
    font-family: 'DM Serif Display', serif;
}

.tech-detail-page .header-velv-link {
    position: relative;
    padding: 4px 0;
}

.tech-detail-page .header-velv-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF8FB1;
    transition: width 0.3s ease;
}

.tech-detail-page .header-velv-link:hover::after {
    width: 100%;
}

.tech-detail-page .js-mobile-menu.active {
    transform: translateX(0);
}

.tech-article-content h1,
.tech-article-content h2,
.tech-article-content h3 {
    font-family: 'DM Serif Display', serif;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1A1A1A;
}

.tech-article-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #4A4A4A;
}

.tech-article-content ul,
.tech-article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.tech-article-content li {
    margin-bottom: 0.5rem;
    color: #4A4A4A;
}

.tech-article-content strong {
    color: #1A1A1A;
}

.tech-article-content blockquote {
    border-left: 4px solid #FF8FB1;
    padding-left: 1.5rem;
    font-style: italic;
    margin: 2rem 0;
    color: #71717A;
}

.footer-velv .footer-col-nav a,
.footer-velv .footer-col-legal a {
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.footer-velv .footer-col-nav a::after,
.footer-velv .footer-col-legal a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #FF8FB1;
    transition: width 0.3s ease;
}

.footer-velv .footer-col-nav a:hover::after,
.footer-velv .footer-col-legal a:hover::after {
    width: 100%;
}

@media (max-width: 767px) {

    .tech-detail-page .footer-col-nav,
    .tech-detail-page .footer-col-legal,
    .tech-detail-page .footer-col-brand,
    .tech-detail-page .footer-col-newsletter {
        text-align: center;
    }

    .tech-detail-page .footer-col-brand p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== PAGE TEMPLATE: lifestyle-news ===== */
.lifestyle-detail-page .article-main-title {
    font-size: 24px;
}

@media (min-width: 768px) {
    .lifestyle-detail-page .article-main-title {
        font-size: 42px;
    }
}

.lifestyle-detail-page .article-content-body {
    font-family: 'Inter', sans-serif;
    color: #4A4A4A;
    line-height: 1.8;
}

.lifestyle-detail-page .article-content-body p {
    margin-bottom: 1.5rem;
    font-size: 16px;
}

.lifestyle-detail-page .article-content-body h2 {
    font-family: 'DM Serif Display', serif;
    color: #1A1A1A;
    font-size: 16px;
    margin: 2rem 0 1rem;
}

@media (min-width: 768px) {
    .lifestyle-detail-page .article-content-body h2 {
        font-size: 32px;
    }
}

.lifestyle-detail-page .article-content-body ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.lifestyle-detail-page .article-content-body li {
    margin-bottom: 0.5rem;
}

.lifestyle-detail-page .header-velv-link {
    position: relative;
    padding: 4px 0;
}

.lifestyle-detail-page .header-velv-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF8FB1;
    transition: width 0.3s ease;
}

.lifestyle-detail-page .header-velv-link:hover::after {
    width: 100%;
}

.lifestyle-detail-page .js-mobile-menu.active {
    transform: translateX(0);
}

.lifestyle-detail-page .font-serif {
    font-family: 'DM Serif Display', serif;
}

.lifestyle-detail-page .footer-col-nav a,
.lifestyle-detail-page .footer-col-legal a {
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.lifestyle-detail-page .footer-col-nav a::after,
.lifestyle-detail-page .footer-col-legal a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #FF8FB1;
    transition: width 0.3s ease;
}

.lifestyle-detail-page .footer-col-nav a:hover::after,
.lifestyle-detail-page .footer-col-legal a:hover::after {
    width: 100%;
}

.lifestyle-detail-page .js-newsletter-form input::placeholder {
    color: #71717A !important;
    opacity: 1;
}

/* ===== PAGE TEMPLATE: travel-news ===== */
.header-velv .logo-img {
    max-width: 50px;
    transition: transform 0.3s ease;
}

.header-velv .logo-img:hover {
    transform: scale(1.05);
}

.header-velv-link {
    position: relative;
    padding: 4px 0;
}

.header-velv-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF8FB1;
    transition: width 0.3s ease;
}

.header-velv-link:hover::after {
    width: 100%;
}

.header-velv .js-mobile-menu {
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.header-velv .js-mobile-menu.active {
    transform: translateX(0);
}

.article-content h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 16px;
    line-height: 1.2;
    color: #1A1A1A;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .article-content h2 {
        font-size: 32px;
    }
}

.article-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 1.5rem;
}

.article-content ul {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

.article-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.article-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FF8FB1;
    font-weight: bold;
}

.footer-velv .font-serif {
    font-family: 'DM Serif Display', serif;
}

.footer-velv .footer-col-nav a,
.footer-velv .footer-col-legal a {
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.footer-velv .footer-col-nav a::after,
.footer-velv .footer-col-legal a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #FF8FB1;
    transition: width 0.3s ease;
}

.footer-velv .footer-col-nav a:hover::after,
.footer-velv .footer-col-legal a:hover::after {
    width: 100%;
}

.footer-velv .js-newsletter-form input::placeholder {
    color: #71717A !important;
    opacity: 1;
}

@media (max-width: 767px) {

    .footer-velv .footer-col-nav,
    .footer-velv .footer-col-legal,
    .footer-velv .footer-col-brand,
    .footer-velv .footer-col-newsletter {
        text-align: center;
    }

    .footer-velv .footer-col-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-velv .js-newsletter-form {
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ===== PAGE TEMPLATE: food-news ===== */
.velv-detail-page {
    font-family: 'Inter', sans-serif;
}

.header-velv .logo-img {
    max-width: 50px;
    transition: transform 0.3s ease;
}

.header-velv-link {
    position: relative;
    padding: 4px 0;
}

.header-velv-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF8FB1;
    transition: width 0.3s ease;
}

.header-velv-link:hover::after {
    width: 100%;
}

.velv-article-body h1,
.velv-article-body h2,
.velv-article-body h3 {
    font-family: 'DM Serif Display', serif;
    color: #1A1A1A;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.velv-article-body h1 {
    font-size: 18px;
}

.velv-article-body h2 {
    font-size: 16px;
}

.velv-article-body h3 {
    font-size: 14px;
}

@media (min-width: 768px) {
    .velv-article-body h1 {
        font-size: 42px;
    }

    .velv-article-body h2 {
        font-size: 32px;
    }

    .velv-article-body h3 {
        font-size: 26px;
    }
}

.velv-article-body p {
    margin-bottom: 1.5rem;
    hyphens: auto;
}

.velv-article-body blockquote {
    border-left: 4px solid #FF8FB1;
    padding-left: 1.5rem;
    font-style: italic;
    color: #4A4A4A;
    margin: 2rem 0;
    font-size: 1.1rem;
}

.footer-velv .font-serif {
    font-family: 'DM Serif Display', serif;
}

.footer-velv .footer-col-nav a,
.footer-velv .footer-col-legal a {
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.footer-velv .footer-col-nav a::after,
.footer-velv .footer-col-legal a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #FF8FB1;
    transition: width 0.3s ease;
}

.footer-velv .footer-col-nav a:hover::after,
.footer-velv .footer-col-legal a:hover::after {
    width: 100%;
}

.footer-velv .js-newsletter-form input::placeholder {
    color: #71717A !important;
    opacity: 1;
}

@media (max-width: 767px) {

    .footer-velv .footer-col-nav,
    .footer-velv .footer-col-legal,
    .footer-velv .footer-col-brand,
    .footer-velv .footer-col-newsletter {
        text-align: center;
    }

    .footer-velv .js-newsletter-form {
        max-width: 320px;
        margin: 0 auto;
    }
}