:root {
    --primary: #0f172a;
    --secondary: #334155;
    --accent: #2563eb;
    --background: #f8fafc;
    --surface: rgba(255, 255, 255, 0.7);
    --border: rgba(255, 255, 255, 0.5);
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #0f172a;
    min-height: 100vh;
    scroll-behavior: smooth;
}

.text-muted {
    color: #64748b !important;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.heading-font {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

.transition-spring {
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== header ===== */
.norclive-header {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.norclive-header .js-mobile-menu {
    animation: headerSlideIn 0.3s ease-out forwards;
}

@keyframes headerSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.norclive-header a {
    position: relative;
}

.norclive-header nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.norclive-header nav a:hover::after {
    width: 100%;
}

/* ===== hero ===== */
.norclive-hero {
    position: relative;
    z-index: 1;
}

.norclive-hero .group:hover img {
    transform: scale(1.08);
}

.norclive-hero .group::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    pointer-events: none;
}

.norclive-hero h2,
.norclive-hero h3 {
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.norclive-hero .js-contact-wa {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.norclive-hero .js-contact-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
}

/* ===== latest-news ===== */
.latest-news-block .js-filter-btn.active {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.latest-news-block .js-news-item {
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.latest-news-block .js-news-item.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

@media (max-width: 767px) {
    .latest-news-block .js-news-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
}

/* ===== top-reviews ===== */
.top-reviews-section {
    position: relative;
    z-index: 1;
}

.top-reviews-section .review-card {
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.top-reviews-section .review-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
}

.top-reviews-section .line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 767px) {
    .top-reviews-section h2 {
        line-height: 1.2;
    }

    .top-reviews-section .review-card h3 {
        min-height: auto;
    }
}

/* ===== ev-tech-highlights ===== */
.ev-tech-highlights .js-ev-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.ev-tech-highlights .js-ev-card:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(37, 99, 235, 0.3);
}

.ev-tech-highlights h2 {
    letter-spacing: -0.02em;
}

.ev-tech-highlights .line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 767px) {
    .ev-tech-highlights .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ===== newsletter ===== */
.newsletter-block {
    background-image: url('../content/visuals/graphics/automotive-newsletter-background.webp');
    background-position: center;
    background-size: cover;
    position: relative;
}

.newsletter-block .newsletter-bg-overlay {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.85) 0%, rgba(226, 232, 240, 0.95) 100%);
    backdrop-blur: 4px;
}

.newsletter-block .newsletter-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.newsletter-block .newsletter-input::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.newsletter-block .newsletter-submit-btn {
    min-width: 160px;
}

@media (max-width: 767px) {
    .newsletter-block .newsletter-input {
        font-size: 14px;
    }

    .newsletter-block .newsletter-submit-btn {
        width: 100%;
    }
}

/* ===== footer ===== */
.footer-norclive {
    position: relative;
    z-index: 10;
}

.footer-norclive a {
    text-decoration: none;
}

.footer-norclive .footer-nav ul li a,
.footer-norclive .footer-legal ul li a {
    position: relative;
    display: inline-block;
}

.footer-norclive .footer-nav ul li a::after,
.footer-norclive .footer-legal ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.footer-norclive .footer-nav ul li a:hover::after,
.footer-norclive .footer-legal ul li a:hover::after {
    width: 100%;
}

.footer-norclive .footer-brand img {
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.footer-norclive .footer-brand img:hover {
    opacity: 0.8;
}

/* ===== PAGE: privacy ===== */
.policy-layout-wrapper { padding: 40px 20px; max-width: 1000px; margin: 0 auto; } .policy-content-container { font-family: 'Inter', sans-serif; } .policy-content-container h2, .policy-content-container h3, .policy-content-container h4 { font-family: 'Outfit', sans-serif; color: #0f172a; } .policy-content-container p { margin-bottom: 1rem; } .policy-content-container ul { margin-bottom: 1.5rem; } .policy-content-container strong { color: #1e293b; font-weight: 600; } @media (max-width: 767px) { .policy-layout-wrapper { padding: 20px 15px; } .policy-content-container { padding: 20px; } .policy-content-container h2 { font-size: 18px !important; } .policy-content-container h3 { font-size: 16px !important; } .policy-content-container p, .policy-content-container li { font-size: 14px; line-height: 1.6; } }

/* ===== PAGE: terms ===== */
.policy-content-container .js-terms-container { line-height: 1.6; color: #334155; }.policy-content-container h1, .policy-content-container h2, .policy-content-container h3 { font-family: 'Outfit', sans-serif; letter-spacing: -0.02em; }.policy-content-container .js-section { scroll-margin-top: 100px; }.policy-content-container .js-scroll-link { text-decoration: none; position: relative; }.policy-content-container .js-scroll-link::after { content: ''; position: absolute; width: 0; height: 1px; bottom: -2px; left: 0; background-color: #2563eb; transition: width 0.3s ease; }.policy-content-container .js-scroll-link:hover::after { width: 100%; }.policy-content-container .prose p { margin-bottom: 1.25rem; }.policy-content-container .js-toc { background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.4); }

/* ===== PAGE: disclaimer ===== */
.policy-layout-wrapper {
  padding: 2rem 1rem;
  max-width: 100%;
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.policy-content-container {
  width: 100%;
  max-width: 900px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  color: #0f172a;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
}

.policy-content-container .disclaimer-header-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
  text-align: center;
}

.policy-content-container .disclaimer-icon {
  font-size: 3rem;
  color: #2563eb;
  margin-bottom: 1rem;
}

.policy-content-container .last-updated-text {
  font-size: 0.875rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.policy-content-container h2 {
  font-family: 'Outfit', sans-serif;
  color: #0f172a;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  font-size: 16px;
  line-height: 1.3;
  border-bottom: 2px solid rgba(37, 99, 235, 0.1);
  padding-bottom: 0.5rem;
}

.policy-content-container p {
  margin-bottom: 1.25rem;
  font-size: 14px;
  text-align: justify;
  hyphens: auto;
}

.policy-content-container ul {
  margin-bottom: 1.5rem;
  list-style: none;
  padding-left: 0;
}

.policy-content-container li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 14px;
}

.policy-content-container li::before {
  content: '\e87a';
  font-family: "Phosphor";
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: #2563eb;
  font-weight: bold;
}

.policy-content-container ul.list-none li::before,
.policy-content-container .policy-nav-list li::before,
.policy-content-container .js-toc li::before {
  content: none;
}

.policy-content-container ul.list-none li,
.policy-content-container .policy-nav-list li,
.policy-content-container .js-toc li {
  padding-left: 0;
}

.policy-content-container .contact-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.policy-content-container .contact-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .policy-content-container {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .policy-content-container h2 {
    font-size: 1.1rem;
  }

  .policy-content-container p, .policy-content-container li {
    font-size: 0.95rem;
  }
}
.policy-content-container {
  padding: 2rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy-content-container {
    padding: 1.5rem 1.25rem;
  }
}

.policy-content-container .policy-content-container__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .policy-content-container .policy-content-container__inner {
    flex-direction: row;
    gap: 4rem;
  }
}

.policy-content-container .policy-nav-jump {
  position: sticky;
  top: 2rem;
  height: fit-content;
  width: 100%;
  max-width: 100%;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.75rem;
}

@media (max-width: 767px) {
  .policy-content-container .policy-nav-jump {
    display: none;
  }
}

@media (min-width: 768px) {
  .policy-content-container .policy-nav-jump {
    width: 280px;
    flex-shrink: 0;
  }
}

.policy-content-container .policy-nav-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}

.policy-content-container .policy-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.policy-content-container .policy-nav-list a {
  text-decoration: none;
  color: #475569;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.policy-content-container .policy-nav-list a:hover {
  color: #2563eb;
}

.policy-content-container .policy-article {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (max-width: 767px) {
  .policy-content-container .policy-article {
    gap: 2rem;
  }
  .policy-content-container .policy-content-container__inner {
    gap: 0;
  }
}

.policy-content-container .policy-section {
  scroll-margin-top: 2rem;
}

.policy-content-container .policy-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.policy-content-container .policy-text {
  line-height: 1.8;
  font-size: 1rem;
}

.policy-content-container .policy-feature-list {
  margin-top: 1.5rem;
  padding-left: 0;
  list-style: none;
}

.policy-content-container .policy-feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #475569;
}

.policy-content-container .policy-feature-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

.policy-content-container .policy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .policy-content-container .policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.policy-content-container .policy-card {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 1.5rem;
  border-radius: 0.75rem;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.policy-content-container .policy-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.6);
}

.policy-content-container .policy-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.policy-content-container .policy-browser-link {
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  color: #334155;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.policy-content-container .policy-browser-link:hover {
  border-color: #2563eb;
  color: #2563eb;
  background: #f8fafc;
}

.policy-content-container .policy-contact-box {
  background: #f1f5f9;
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid #2563eb;
}

/* ===== COOKIE BANNER RESPONSIVE ===== */
@media (max-width: 768px) {
    #cookieConsentService_Banner {
        padding: 0.625rem !important;
    }
    #cookieConsentService_Banner > div {
        gap: 0.5rem !important;
    }
    #cookieConsentService_Banner p {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
    }
    #cookieConsentService_Banner button {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.75rem !important;
    }
}

/* ===== PAGE: news ===== */
.js-filter-btn.active {
    background-color: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}
.js-filter-btn:not(.active) {
    background-color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.5);
    color: #0f172a;
}
.js-filter-btn:not(.active):hover {
    background-color: #2563eb;
    color: #ffffff;
}
.category-grid .news-card img { transition: transform 0.6s ease; } .category-grid .news-card:hover img { transform: scale(1.1); } .subscription-section .js-tariff-trigger.active { border-color: #2563eb; background: rgba(37, 99, 235, 0.1); } .subscription-section .js-subscription-form input::placeholder { color: #64748b; opacity: 1; }

/* ===== PAGE: reviews ===== */
.reviews-section .js-filter-btn.active {
  background-color: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
}
.reviews-section .js-filter-btn:not(.active):hover {
  border-color: #2563eb;
  color: #2563eb;
}
.reviews-section .js-review-item.hidden {
  display: none;
}
.subscription-section .js-tariff-card.active {
  border-color: #2563eb;
  background-color: rgba(37, 99, 235, 0.1);
}
.subscription-section .js-tariff-card.active .js-radio-visual {
  border-color: #2563eb;
}
.subscription-section .js-tariff-card.active .js-radio-visual div {
  background-color: #2563eb;
}
.subscription-section .js-tariff-card:not(.active) .js-radio-visual div {
  background-color: transparent;
}
.reviews-section__title {
  font-family: 'Outfit', sans-serif;
}

/* ===== PAGE: ev-tech ===== */
.ev-tech-section .js-post-card {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}
.ev-tech-section .js-post-card:hover {
  transform: translateY(-8px);
}
.ev-tech-section select option {
  background: #fff;
  color: #0f172a;
}
.ev-tech-section .js-service-btn.active {
  background: rgba(37, 99, 235, 0.2);
  border-color: #2563eb;
}
.ev-tech-section .js-consultation-section::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* ===== PAGE: about-contact ===== */
.about-contact-wrapper { font-family: 'Inter', sans-serif; overflow-x: hidden; }
.about-contact-wrapper h1, .about-contact-wrapper h2, .about-contact-wrapper h3 { font-family: 'Outfit', sans-serif; }
.about-us-block .about-card { transition: transform 0.3s ease, background 0.3s ease; }
.about-us-block .about-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.85); }
.contact-form-side input::placeholder, .contact-form-side textarea::placeholder { color: #94a3b8; }
.js-contact-form input:focus, .js-contact-form textarea:focus { border-color: #2563eb; box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1); }
@media (max-width: 767px) {
  .about-us-block h1 { font-size: 24px; }
  .about-us-block h2 { font-size: 18px; }
  .contact-info-block h2 { font-size: 22px; }
}

.comment-avatar-main {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #e2e8f0;
}

.norclive-comment-block {
    position: relative;
    overflow: hidden;
}

.comment-content-text p {
    word-break: break-word;
    color: #334155;
}

.norclive-comment-block:hover {
    border-color: rgba(37, 99, 235, 0.2);
}

.comment-avatar-reply {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #e2e8f0;
}

.reply-connector::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 15px;
    height: 1px;
    background: #e2e8f0;
}

.norclive-reply-block {
    border-left: 3px solid rgba(37, 99, 235, 0.1);
}

.norclive-reply-block:hover {
    background-color: rgba(255, 255, 255, 0.7);
    border-left-color: #2563eb;
}


/* ===== PAGE TEMPLATE: news-posts ===== */
.norclive-header {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.norclive-header nav a {
    position: relative;
}

.norclive-header nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.norclive-header nav a:hover::after {
    width: 100%;
}

.norclive-article-content {
    color: #334155;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
}

.norclive-article-content p {
    margin-bottom: 1.5rem;
    font-size: 16px;
}

.norclive-article-content h1,
.norclive-article-content h2,
.norclive-article-content h3 {
    color: #0f172a;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.norclive-article-content h2 {
    font-size: 32px;
}

.norclive-article-content h3 {
    font-size: 26px;
}

@media (max-width: 767px) {
    .norclive-article-content h2 {
        font-size: 16px;
    }

    .norclive-article-content h3 {
        font-size: 14px;
    }
}

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

.norclive-article-content ul {
    list-style-type: disc;
}

.norclive-article-content ol {
    list-style-type: decimal;
}

.norclive-article-content li {
    margin-bottom: 0.5rem;
}

.norclive-article-content ul.list-none {
    list-style: none;
    padding-left: 0;
}

.norclive-article-content ul.list-none li {
    list-style: none;
}

.norclive-article-content strong {
    color: #0f172a;
    font-weight: 600;
}

.js-like-btn.active i {
    color: #2563eb;
}

.footer-norclive a:hover {
    color: #2563eb;
}

.footer-norclive .footer-brand img {
    filter: brightness(0) invert(1);
}

/* ===== PAGE TEMPLATE: reviews-posts ===== */
.norclive-header {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.norclive-detail-page .prose-custom p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.norclive-detail-page .prose-custom .article-main-text {
    hyphens: auto;
}

.norclive-detail-page .prose-custom ul.list-none {
    list-style: none;
    padding-left: 0;
}

.norclive-detail-page .prose-custom ul.list-none li {
    list-style: none;
}

.norclive-comment-block {
    position: relative;
}

.norclive-reply-wrapper::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 0;
    width: 24px;
    height: 20px;
    border-left: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    border-bottom-left-radius: 12px;
}

@media (max-width: 768px) {
    .norclive-detail-page h1 {
        font-size: 24px !important;
    }

    .norclive-detail-page h2 {
        font-size: 20px !important;
    }

    .norclive-detail-page h3 {
        font-size: 18px !important;
    }

    .norclive-reply-wrapper {
        margin-left: 1.5rem !important;
    }
}

/* ===== PAGE TEMPLATE: ev-tech-posts ===== */
.norclive-post-detail .article-content h1,
.norclive-post-detail .article-content h2,
.norclive-post-detail .article-content h3 {
    color: #0f172a;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.norclive-post-detail .article-content h2 {
    font-size: 16px;
}

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

.norclive-post-detail .article-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.norclive-post-detail .article-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.norclive-post-detail .article-content ul li {
    list-style-type: disc;
    margin-bottom: 0.5rem;
}

.norclive-post-detail .article-content ul.list-none {
    list-style: none;
    padding-left: 0;
}

.norclive-post-detail .article-content ul.list-none li {
    list-style: none;
}

.norclive-post-detail .article-content strong {
    color: #0f172a;
    font-weight: 600;
}

.norclive-header {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.norclive-comment-block img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-avatar-reply {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-norclive .footer-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.footer-norclive .footer-nav ul li a:hover::after {
    width: 100%;
}

.footer-norclive .footer-brand img {
    filter: brightness(0) invert(1);
}