/* mixuebc.cyou - Mixue Bingcheng Theme Style */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Zcool+KuaiLe&display=swap');

:root {
    --primary-color: #ff334b; /* Mixue Red */
    --primary-hover: #e60021;
    --secondary-color: #ffeef0; /* Sweet Light Red */
    --accent-color: #ffcc00; /* Lemon Yellow */
    --bg-creamy: #fffcf7; /* Sweet Cream White */
    --bg-white: #ffffff;
    --text-main: #2d2d2d;
    --text-muted: #666666;
    --font-heading: 'Zcool KuaiLe', 'Outfit', sans-serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --shadow-soft: 0 10px 30px rgba(255, 51, 75, 0.08);
    --shadow-strong: 0 15px 40px rgba(255, 51, 75, 0.15);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-creamy);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Cursor Trail Container */
.cursor-particle {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease-out, height 0.5s ease-out, opacity 0.5s ease-out;
}

/* Navigation Bar */
header {
    background: rgba(255, 252, 247, 0.85);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px dashed rgba(255, 51, 75, 0.15);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-color);
    font-weight: bold;
    letter-spacing: 1px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    animation: float-slow 4s ease-in-out infinite;
}

nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--primary-color);
}

.nav-btn {
    background-color: var(--primary-color);
    color: var(--bg-white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255, 51, 75, 0.2);
    border: 2px solid transparent;
}

.nav-btn:hover {
    background-color: var(--bg-white);
    color: var(--primary-color) !important;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 75, 0.25);
}

.nav-btn::after {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 160px 5% 100px 5%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: radial-gradient(circle at 80% 20%, #ffeef0 0%, var(--bg-creamy) 60%);
    position: relative;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 51, 75, 0.2);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-main);
}

.hero-title span {
    color: var(--primary-color);
    position: relative;
}

.hero-desc {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 51, 75, 0.3);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 51, 75, 0.35);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 50px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-image-container {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.hero-bg-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,51,75,0.15) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
}

.hero-main-img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    animation: float-img 6s ease-in-out infinite;
}

/* Features / Elements Section */
.features {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-badge {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--text-main);
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-creamy);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '蜜雪冰城';
    position: absolute;
    right: -20px;
    bottom: -10px;
    font-family: var(--font-heading);
    font-size: 50px;
    color: rgba(255, 51, 75, 0.03);
    transform: rotate(-15deg);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 51, 75, 0.15);
    box-shadow: var(--shadow-strong);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 15px;
}

/* Pricing Menu Section */
.pricing {
    padding: 100px 5%;
    background-color: var(--bg-creamy);
    position: relative;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Mixue Style Pricing Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    justify-content: center;
}

.menu-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    position: relative;
    border: 3px solid rgba(255, 51, 75, 0.08);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.menu-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255,51,75,0.25);
    white-space: nowrap;
}

.menu-item-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
}

.menu-item-title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-main);
}

.menu-item-price {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-color);
}

.menu-item-price span {
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-muted);
}

.menu-features-list {
    list-style: none;
    margin-bottom: 30px;
}

.menu-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-muted);
}

.menu-features-list li svg {
    color: #28a745;
    flex-shrink: 0;
}

.menu-order-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    transition: var(--transition);
    display: block;
    border: 2px solid transparent;
}

.menu-card.popular .menu-order-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.menu-order-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 51, 75, 0.2);
}

.menu-card.popular .menu-order-btn:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Articles Section */
.articles-sec {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    background-color: var(--bg-creamy);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.article-thumb {
    height: 180px;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-thumb-svg {
    width: 80px;
    height: 80px;
    opacity: 0.85;
}

.article-meta {
    padding: 8px 20px;
    background-color: rgba(255, 51, 75, 0.05);
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    gap: 15px;
}

.article-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-card-title a {
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
}

.article-card-title a:hover {
    color: var(--primary-color);
}

.article-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-read-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.article-read-btn:hover {
    gap: 10px;
}

/* Single Article Layout */
.article-page {
    padding-top: 120px;
    padding-bottom: 100px;
    background-color: var(--bg-creamy);
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.article-header {
    margin-bottom: 30px;
    border-bottom: 2px dashed rgba(255, 51, 75, 0.1);
    padding-bottom: 25px;
}

.article-header h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--text-main);
}

.article-header-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-main);
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h2 {
    font-size: 22px;
    margin: 35px 0 15px 0;
    color: var(--primary-color);
}

.article-content h3 {
    font-size: 18px;
    margin: 25px 0 10px 0;
    color: var(--text-main);
}

.article-content ul, .article-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content strong {
    color: var(--primary-color);
}

.article-tags {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed rgba(0,0,0,0.1);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.article-tag {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 13px;
    text-decoration: none;
}

.article-tag:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.article-nav {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 2px dashed rgba(255, 51, 75, 0.15);
    padding-top: 25px;
}

.article-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    max-width: 48%;
    transition: var(--transition);
}

.article-nav a:hover {
    color: var(--primary-color);
}

.article-nav span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: normal;
    margin-bottom: 5px;
}

/* FAQ Section */
.faq {
    padding: 100px 5%;
    background-color: var(--bg-creamy);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
    transition: var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(255, 51, 75, 0.1);
}

.faq-question {
    padding: 24px;
    font-weight: 700;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active {
    border-color: var(--primary-color);
}

/* User Reviews Section */
.reviews {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

.reviews-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.reviews-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    padding: 15px 5px;
}

.reviews-slider::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.review-card {
    flex: 0 0 calc(50% - 15px);
    scroll-snap-align: start;
    background-color: var(--bg-creamy);
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-text {
    font-style: italic;
    color: var(--text-main);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 18px;
    border: 2px solid var(--primary-color);
}

.review-user-info h4 {
    font-size: 15px;
    font-weight: 700;
}

.review-rating {
    display: flex;
    color: var(--accent-color);
    gap: 2px;
    font-size: 13px;
    margin-top: 3px;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    width: 24px;
    border-radius: 5px;
}

/* Floating Snow King Helper */
.snow-helper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
}

.snow-helper:hover {
    transform: scale(1.1) rotate(5deg);
}

.snow-helper-img {
    width: 65px;
    height: 65px;
    filter: drop-shadow(0 5px 15px rgba(255, 51, 75, 0.2));
}

.snow-helper-tooltip {
    position: absolute;
    bottom: 75px;
    right: 0;
    background-color: var(--bg-white);
    color: var(--text-main);
    padding: 12px 18px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-strong);
    border: 2px solid var(--primary-color);
    font-weight: bold;
    font-size: 13px;
    width: 180px;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.snow-helper-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 25px;
    border: 10px solid transparent;
    border-top-color: var(--primary-color);
}

.snow-helper:hover .snow-helper-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* Footer & PBN Links */
footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 5% 30px 5%;
    border-top: 5px solid var(--primary-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    text-decoration: none;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--bg-white);
}

.footer-desc {
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.6;
}

.footer-col h3 {
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #2d2d2d;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.footer-copyright {
    font-size: 13px;
    color: #777777;
}

/* Precision Weight Transfusion PBN Links Area */
.pbn-links-area {
    margin-top: 15px;
    font-size: 12px;
    color: #555555;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.pbn-links-area a {
    color: #666666;
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px dotted #444444;
}

.pbn-links-area a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Animations */
@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes float-img {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

/* Responsive Rules */
@media (max-width: 991px) {
    .hero {
        flex-direction: column;
        padding-top: 120px;
        padding-bottom: 70px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-image-container {
        max-width: 380px;
        margin: 0 auto;
    }

    .review-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-creamy);
        flex-direction: column;
        padding: 30px 20px;
        border-bottom: 2px dashed rgba(255, 51, 75, 0.15);
        gap: 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        display: none;
    }
    
    nav.active {
        display: flex;
    }
    
    .nav-btn {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 30px;
    }

    .article-container {
        padding: 25px;
    }

    .article-header h1 {
        font-size: 24px;
    }

    .article-nav {
        flex-direction: column;
    }

    .article-nav a {
        max-width: 100%;
    }
}
