:root {
    --primary-graphite: #2D2D2D;
    --secondary-light-grey: #F5F5F5;
    --accent-border: #E0E0E0;
    --text-light-bg-primary: #1A1A1A;
    --text-light-bg-muted: #555555;
    --text-dark-bg-primary: #FFFFFF;
    --text-dark-bg-muted: #D1D1D1;
    --background-main: #FBFBFB;
    --transition-speed: 0.4s;
    --easing: cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-editorial-layout {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-main);
    color: var(--text-light-bg-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--primary-graphite);
}

.text-muted {
    color: var(--text-light-bg-muted) !important;
}

.smooth-transition {
    transition: all var(--transition-speed) var(--easing);
}

.editorial-card {
    background: #fff;
    border: 1px solid var(--accent-border);
    transition: transform var(--transition-speed) var(--easing), box-shadow var(--transition-speed) var(--easing);
}

.editorial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.btn-editorial {
    background-color: var(--primary-graphite);
    color: var(--text-dark-bg-primary);
    border-radius: 0;
    padding: 10px 24px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-editorial:hover {
    background-color: #1a1a1a;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .editorial-lead-title {
        font-size: 2.2rem;
    }
}

/* ===== header ===== */
.morv-capital-header .navbar {
    background-color: #2D2D2D !important;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #E0E0E0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.morv-capital-header .header-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.morv-capital-header .brand-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    color: #FFFFFF !important;
}

.morv-capital-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #FFFFFF !important;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.morv-capital-header .nav-link:hover {
    color: #D1D1D1 !important;
}

.morv-capital-header .navbar-toggler {
    border: none;
    color: #FFFFFF;
    padding: 0.5rem;
}

.morv-capital-header .navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .morv-capital-header .navbar-collapse {
        background-color: #2D2D2D;
        margin-top: 1rem;
        padding: 1rem 0;
    }

    .morv-capital-header .nav-link {
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 0.85rem;
    }

    .morv-capital-header .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

/* ===== hero ===== */
.hero-section {
    background-color: #FBFBFB;
}

.hero-section .trending-nav {
    gap: 0;
    border-bottom: 2px solid #E0E0E0;
}

.hero-section .trending-tab {
    flex: 1;
    padding: 16px 24px;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    color: #FFFFFF;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-section .trending-tab:last-child {
    border-right: none;
}

.hero-section .trending-tab:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.hero-section .trending-tab.active {
    background: #2D2D2D;
}

.hero-section .tab-date {
    font-size: 0.65rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    margin-bottom: 4px;
    opacity: 0.9;
    text-transform: uppercase;
}

.hero-section .tab-title {
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-section .tab-arrow {
    position: absolute;
    right: 15px;
    bottom: 15px;
    font-size: 0.7rem;
    opacity: 0.5;
}

.hero-section .hero-slider-container {
    height: 550px;
    background-color: #2D2D2D;
}

.hero-section .hero-slider {
    height: 100%;
    width: 100%;
    position: relative;
}

.hero-section .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, transform 1.2s ease;
    transform: scale(1.1);
}

.hero-section .hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-section .hero-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 12px 22px;
    background-color: #FFFFFF;
    color: #2D2D2D;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #FFFFFF;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-section .hero-read-more:hover {
    background-color: transparent;
    color: #FFFFFF;
}

.hero-section .hero-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(45, 45, 45, 0.95) 0%, rgba(45, 45, 45, 0) 100%);
}

.hero-section .hero-content-overlay {
    position: absolute;
    bottom: 60px;
    left: 40px;
    max-width: 800px;
    z-index: 5;
    color: #FFFFFF;
}

.hero-section .hero-timestamp {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    color: #D1D1D1;
    margin-bottom: 12px;
    display: block;
}

.hero-section .hero-headline {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 16px;
    line-height: 1.1;
    text-transform: uppercase;
    color: #FFFFFF;
}

.hero-section .hero-subtext {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #D1D1D1;
    max-width: 600px;
}

.hero-section .hero-pagination {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

.hero-section .pagination-num {
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-section .pagination-num.js-current-num {
    color: #00c6ff;
}

.hero-section .pagination-divider {
    width: 40px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 15px;
}

@media (max-width: 991px) {
    .hero-section .hero-slider-container {
        height: 450px;
    }

    .hero-section .hero-headline {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section .hero-slider-container {
        height: 400px;
    }

    .hero-section .hero-headline {
        font-size: 1.25rem;
    }

    .hero-section .hero-content-overlay {
        left: 20px;
        bottom: 40px;
        padding-right: 20px;
    }

    .hero-section .hero-pagination {
        display: none !important;
    }

    .hero-section .trending-tab {
        padding: 12px 15px;
    }
}

/* ===== latest-news ===== */
.latest-news-block {
    background-color: #FBFBFB;
    padding: 60px 0;
}

.latest-news-block__title {
    font-family: 'Inter', sans-serif;
    color: #2D2D2D;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.latest-news-block__line-decorator {
    width: 50px;
    height: 3px;
    background-color: #2D2D2D;
    margin-bottom: 3rem;
}

.latest-news-block__card {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.latest-news-block__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #2D2D2D;
}

.latest-news-block__media {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.latest-news-block__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.latest-news-block__card:hover .latest-news-block__img {
    transform: scale(1.08);
}

.latest-news-block__label {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #2D2D2D;
    color: #FFFFFF;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 5;
}

.latest-news-block__body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.latest-news-block__meta {
    font-size: 0.75rem;
    color: #555555;
    margin-bottom: 0.75rem;
    font-family: 'Roboto', sans-serif;
}

.latest-news-block__heading {
    font-family: 'Inter', sans-serif;
    color: #1A1A1A;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.latest-news-block__cta {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background-color: #2D2D2D;
    color: #FFFFFF !important;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid #2D2D2D;
}

.latest-news-block__cta:hover {
    background-color: #FFFFFF;
    color: #2D2D2D !important;
}

@media (max-width: 767.98px) {
    .latest-news-block {
        padding: 40px 0;
    }

    .latest-news-block__title {
        font-size: 1.6rem;
    }

    .latest-news-block__heading {
        font-size: 1.1rem;
    }
}

/* ===== experts-analysis ===== */
#experts-analysis-section {
    background-color: #FBFBFB !important;
    overflow: hidden;
}

#experts-analysis-section .ea-title {
    color: #2D2D2D;
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    letter-spacing: -0.5px;
    border-left: 5px solid #2D2D2D;
    padding-left: 15px;
}

#experts-analysis-section .ea-subtitle {
    color: #555555;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

#experts-analysis-section .ea-card {
    border: 1px solid #E0E0E0;
    border-radius: 0px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

#experts-analysis-section .ea-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

#experts-analysis-section .ea-image-wrapper {
    height: 220px;
}

#experts-analysis-section .ea-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

#experts-analysis-section .ea-card:hover .ea-img {
    transform: scale(1.1);
}

#experts-analysis-section .ea-badge {
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 700;
    z-index: 2;
}

#experts-analysis-section .ea-card-title {
    color: #2D2D2D;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
}

#experts-analysis-section .ea-card-text {
    color: #555555;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

#experts-analysis-section .ea-meta {
    color: #2D2D2D;
    opacity: 0.7;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 10px;
}

#experts-analysis-section .ea-btn {
    border-radius: 0px;
    padding: 12px 20px;
    font-weight: 700;
    background-color: #2D2D2D;
    border-color: #2D2D2D;
    transition: all 0.3s ease;
}

#experts-analysis-section .ea-btn:hover {
    background-color: #1A1A1A;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    #experts-analysis-section .ea-title {
        font-size: 1.5rem;
    }

    #experts-analysis-section .ea-image-wrapper {
        height: 180px;
    }
}

/* ===== popular-categories ===== */
.popular-categories-section {
    background-color: #FBFBFB;
    font-family: 'Inter', sans-serif;
}

.popular-categories-section .section-title {
    color: #2D2D2D;
    letter-spacing: 2px;
    font-size: 1.75rem;
}

.popular-categories-section .title-divider {
    width: 60px;
    height: 3px;
    background-color: #2D2D2D;
}

.popular-categories-section .category-card {
    height: 420px;
    border-radius: 0;
    background-color: #2D2D2D;
    transition: box-shadow 0.4s ease;
}

.popular-categories-section .category-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.popular-categories-section .category-image {
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(20%);
}

.popular-categories-section .category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(45, 45, 45, 0) 40%, rgba(45, 45, 45, 0.95) 90%);
    transition: background 0.4s ease;
}

.popular-categories-section .category-name {
    color: #FFFFFF;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.popular-categories-section .category-desc {
    color: #D1D1D1;
    font-size: 0.9rem;
    font-family: 'Roboto', sans-serif;
    line-height: 1.4;
    opacity: 0.9;
}

.popular-categories-section .category-btn {
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    border-bottom: 2px solid #FFFFFF;
    align-self: flex-start;
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.popular-categories-section .category-card:hover .category-image {
    transform: scale(1.05);
}

.popular-categories-section .category-card:hover .category-overlay {
    background: linear-gradient(180deg, rgba(45, 45, 45, 0.2) 0%, rgba(45, 45, 45, 0.95) 90%);
}

.popular-categories-section .category-card:hover .category-btn {
    color: #F5F5F5;
    border-color: transparent;
}

@media (max-width: 767.98px) {
    .popular-categories-section .section-title {
        font-size: 1.25rem;
    }

    .popular-categories-section .category-card {
        height: 350px;
    }
}

/* ===== footer ===== */
.footer-block {
    background-color: #2D2D2D;
    color: #D1D1D1;
    font-family: 'Roboto', sans-serif;
    position: relative;
}

.footer-block .footer-heading {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.footer-block .footer-logo {
    width: 150px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: none;
}

.footer-block .footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-block .footer-link {
    color: #D1D1D1;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-block .footer-link:hover {
    color: #FFFFFF;
    transform: translateX(3px);
}

.footer-block .footer-list li {
    margin-bottom: 0.75rem;
}

.footer-block .footer-input {
    background-color: #F5F5F5;
    border: 1px solid #E0E0E0;
    border-radius: 0;
    color: #1A1A1A;
    padding: 0.75rem 1rem;
}

.footer-block .footer-input:focus {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    box-shadow: none;
    color: #1A1A1A;
}

.footer-block .footer-input::placeholder {
    color: #555555;
    font-size: 0.9rem;
}

.footer-block .btn-editorial {
    background-color: #FFFFFF;
    color: #2D2D2D;
    border-radius: 0;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
}

.footer-block .btn-editorial:hover {
    background-color: #E0E0E0;
    color: #1A1A1A;
}

.footer-block .footer-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer-block .footer-copy {
    font-size: 0.85rem;
    color: #999999;
}

@media (max-width: 991.98px) {
    .footer-block {
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .footer-block .input-group {
        display: flex;
        flex-direction: column;
    }

    .footer-block .footer-input {
        width: 100% !important;
        margin-bottom: 10px;
    }

    .footer-block .btn-editorial {
        width: 100%;
    }
}

/* ===== PAGE: privacy ===== */
.policy-document-wrapper .policy-document-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
  color: #1A1A1A;
  font-family: 'Roboto', sans-serif;
  line-height: 1.7;
}

.policy-document-wrapper .policy-last-updated {
  font-size: 0.9rem;
  color: #555555;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #E0E0E0;
  display: inline-block;
  padding-bottom: 5px;
}

.policy-document-wrapper .policy-section {
  margin-bottom: 40px;
}

.policy-document-wrapper .policy-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #2D2D2D;
  margin-bottom: 20px;
  position: relative;
  padding-left: 15px;
  border-left: 4px solid #2D2D2D;
}

.policy-document-wrapper .policy-text {
  margin-bottom: 15px;
  font-size: 1.05rem;
  text-align: center;
  hyphens: auto;
}

.policy-document-wrapper .policy-list {
  display: inline-block;
  margin-bottom: 20px;
  padding-left: 25px;
  text-align: left;
}

.policy-document-wrapper .policy-list li {
  margin-bottom: 10px;
  position: relative;
}

.policy-document-wrapper .policy-contact-box {
  background-color: #F5F5F5;
  border: 1px solid #E0E0E0;
  border-radius: 0px;
}

.policy-document-wrapper .policy-contact-box h3 {
  color: #2D2D2D;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

@media (max-width: 768px) {
  .policy-document-wrapper .policy-document-container {
    padding: 20px 15px;
  }
  
  .policy-document-wrapper .policy-heading {
    font-size: 1.25rem;
  }
  
  .policy-document-wrapper .policy-text {
    font-size: 1rem;
    text-align: center;
  }
}

/* ===== PAGE: terms ===== */
.policy-document-wrapper { background-color: #FBFBFB; padding: 80px 0; min-height: 100vh; font-family: 'Roboto', sans-serif; color: #1A1A1A; } .policy-document-wrapper .policy-container { max-width: 800px; margin: 0 auto; padding: 0 20px; } .policy-document-wrapper .editorial-content h1 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 3rem; color: #2D2D2D; margin-bottom: 20px; letter-spacing: -1px; line-height: 1.1; } .policy-document-wrapper .editorial-content .lead-text { font-size: 1.25rem; color: #555555; margin-bottom: 60px; line-height: 1.5; border-bottom: 2px solid #E0E0E0; padding-bottom: 30px; } .policy-document-wrapper .content-block { margin-bottom: 40px; } .policy-document-wrapper h2 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.5rem; color: #2D2D2D; margin-bottom: 20px; position: relative; padding-left: 15px; border-left: 4px solid #2D2D2D; line-height: 1.3; } .policy-document-wrapper p { font-size: 1.1rem; line-height: 1.7; margin-bottom: 20px; color: #1A1A1A; } .policy-document-wrapper ul { margin-bottom: 25px; padding-left: 20px; } .policy-document-wrapper li { margin-bottom: 12px; font-size: 1.05rem; line-height: 1.6; } .policy-document-wrapper strong { color: #2D2D2D; font-weight: 500; } .policy-document-wrapper .last-updated { margin-top: 60px; padding-top: 20px; border-top: 1px solid #E0E0E0; font-style: italic; color: #555555; font-size: 0.9rem; } @media (max-width: 768px) { .policy-document-wrapper { padding: 40px 0; } .policy-document-wrapper .editorial-content h1 { font-size: 1.75rem; } .policy-document-wrapper h2 { font-size: 1.25rem; } .policy-document-wrapper p, .policy-document-wrapper li { font-size: 1rem; } .policy-document-wrapper .editorial-content .lead-text { font-size: 1.1rem; margin-bottom: 40px; } }

/* ===== PAGE: disclaimer ===== */
.policy-document-wrapper { background-color: #FBFBFB; padding: 60px 0; color: #1A1A1A; font-family: 'Roboto', sans-serif; line-height: 1.8; } .policy-container { max-width: 900px; margin: 0 auto; padding: 0 20px; } .policy-header { border-bottom: 2px solid #E0E0E0; padding-bottom: 30px; margin-bottom: 40px; } .policy-title { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 2.5rem; color: #2D2D2D; margin-bottom: 10px; line-height: 1.2; } .policy-subtitle { font-size: 1.1rem; color: #555555; margin-bottom: 15px; } .policy-meta { font-size: 0.9rem; color: #888888; text-transform: uppercase; letter-spacing: 1px; } .policy-body h2 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.5rem; color: #2D2D2D; margin-top: 40px; margin-bottom: 20px; border-left: 4px solid #2D2D2D; padding-left: 15px; } .policy-body p { margin-bottom: 20px; text-align: justify; hyphens: auto; } .policy-body ul { margin-bottom: 25px; padding-left: 20px; } .policy-body li { margin-bottom: 10px; position: relative; } .policy-body li::marker { color: #2D2D2D; } .policy-body strong { color: #2D2D2D; font-weight: 500; } @media (max-width: 768px) { .policy-document-wrapper { padding: 40px 0; } .policy-title { font-size: 1.75rem; } .policy-body h2 { font-size: 1.25rem; } .policy-body p { text-align: left; } }

/* ===== PAGE: cookies ===== */
.policy-document-wrapper { background-color: #FBFBFB; padding: 60px 0; color: #1A1A1A; } .policy-document-wrapper .policy-inner-container { max-width: 850px; margin: 0 auto; padding: 0 24px; } .policy-document-wrapper h2 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.5rem; color: #2D2D2D; margin-top: 40px; margin-bottom: 20px; border-left: 5px solid #2D2D2D; padding-left: 20px; line-height: 1.2; text-transform: uppercase; letter-spacing: 0.5px; } .policy-document-wrapper p { font-family: 'Roboto', sans-serif; font-size: 1rem; line-height: 1.8; color: #555555; margin-bottom: 20px; } .policy-document-wrapper .policy-lead-text { font-size: 1.15rem; color: #2D2D2D; font-weight: 400; border-bottom: 1px solid #E0E0E0; padding-bottom: 30px; margin-bottom: 30px; } .policy-document-wrapper ul { list-style: none; padding-left: 0; margin-bottom: 30px; } .policy-document-wrapper li { position: relative; padding-left: 30px; margin-bottom: 15px; font-family: 'Roboto', sans-serif; font-size: 0.95rem; line-height: 1.6; color: #555555; } .policy-document-wrapper li::before { content: '\f058'; font-family: 'Font Awesome 5 Free'; font-weight: 900; position: absolute; left: 0; top: 2px; color: #2D2D2D; font-size: 1.1rem; } .policy-document-wrapper strong { color: #2D2D2D; font-weight: 700; } @media (max-width: 768px) { .policy-document-wrapper { padding: 40px 0; } .policy-document-wrapper h2 { font-size: 1.25rem; margin-top: 30px; } .policy-document-wrapper p { font-size: 0.95rem; line-height: 1.6; } .policy-document-wrapper .policy-lead-text { font-size: 1rem; } }

/* ===== PAGE: world-events ===== */
.world-events-header .category-divider {
  width: 80px;
  height: 4px;
  background-color: #2D2D2D;
}

.world-events-header h1 {
  color: #1A1A1A;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}

.world-events-content .search-wrapper {
  transition: border-color 0.3s ease;
}

.world-events-content .search-wrapper:focus-within {
  border-color: #2D2D2D !important;
}

.world-events-content .news-card {
  background: #FFFFFF;
  border-radius: 0px !important;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.world-events-content .news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.world-events-content .news-card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.world-events-content .news-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.world-events-content .news-card:hover .news-card-img-wrapper img {
  transform: scale(1.05);
}

.world-events-content .news-card-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
}

.world-events-content .news-card .card-title {
  color: #1A1A1A;
  transition: color 0.3s ease;
}

.world-events-content .news-card:hover .card-title {
  color: #2D2D2D;
}

.world-events-content .news-comment-preview {
  border-left-color: #E0E0E0 !important;
}

.world-events-content .btn-outline-dark {
  border-radius: 0px !important;
  border: 2px solid #2D2D2D;
  color: #2D2D2D;
  transition: all 0.3s ease;
}

.world-events-content .btn-outline-dark:hover {
  background-color: #2D2D2D;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ===== PAGE: tech ===== */
.tech-page-content {
  background-color: #FBFBFB;
}

.tech-page-content .tech-category-title-block {
  background-color: #F5F5F5;
  margin-bottom: 3rem;
}

.tech-page-content .tech-news-card {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0;
  border: 1px solid #E0E0E0 !important;
}

.tech-page-content .tech-news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.tech-page-content .tech-news-card-img-wrapper {
  height: 220px;
}

.tech-page-content .tech-news-img {
  visibility: hidden;
  width: 100%;
  height: 100%;
}

.tech-page-content .tech-news-card-hover-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  transition: transform 0.6s ease;
}

.tech-page-content .tech-news-card:hover .tech-news-card-hover-bg {
  transform: scale(1.1);
}

.tech-page-content .tech-news-card-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}

.tech-page-content .tech-news-meta small {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.tech-page-content .card-title {
  line-height: 1.3;
  color: #2D2D2D !important;
}

.tech-page-content .tech-news-btn {
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.tech-page-content .tech-news-btn:hover {
  background-color: #2D2D2D;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .tech-page-content .tech-news-card-img-wrapper {
    height: 200px;
  }
  .tech-page-content .display-4 {
    font-size: 2rem;
  }
}

/* ===== PAGE: lifestyle ===== */
.lifestyle-section {
  background-color: #FBFBFB;
}
.lifestyle-section h1 {
  font-family: 'Inter', sans-serif;
  color: #2D2D2D;
}
.lifestyle-section .lifestyle-card {
  border-radius: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), shadow 0.4s ease;
  border: 1px solid #E0E0E0 !important;
}
.lifestyle-section .lifestyle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}
.lifestyle-section .lifestyle-img-wrapper img {
  transition: transform 0.6s ease;
}
.lifestyle-section .lifestyle-card:hover img {
  transform: scale(1.05);
}
.lifestyle-section .lifestyle-badge {
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}
.lifestyle-section .btn-outline-dark {
  border-radius: 0;
  border-width: 2px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.lifestyle-section .btn-dark {
  border-radius: 0;
  border-width: 2px;
  font-weight: 600;
}
.lifestyle-section .lifestyle-content h2 {
  color: #1A1A1A;
  line-height: 1.3;
}
.lifestyle-section .lifestyle-content p {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
}
.lifestyle-section .btn-link:hover {
  color: #555555 !important;
}
@media (max-width: 768px) {
  .lifestyle-section h1 {
    font-size: 1.5rem !important;
  }
  .lifestyle-section .lifestyle-header-block p {
    font-size: 0.9rem;
  }
}

/* ===== PAGE: hobbies ===== */
.hobbies-section-wrapper {
  color: #2D2D2D;
  font-family: 'Roboto', sans-serif;
}
.hobbies-section-wrapper h1, .hobbies-section-wrapper h2, .hobbies-section-wrapper h3 {
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
}
.hobbies-section-wrapper .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #E0E0E0;
}
.hobbies-section-wrapper .card {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  background: #FFFFFF;
  border: 1px solid #E0E0E0 !important;
}
.hobbies-section-wrapper .card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
  transform: translateY(-5px);
}
.hobbies-section-wrapper .card:hover .js-card-img {
  transform: scale(1.05);
}
.hobbies-section-wrapper .btn-dark {
  background-color: #2D2D2D;
  border: none;
  transition: background-color 0.3s ease;
}
.hobbies-section-wrapper .btn-dark:hover {
  background-color: #1A1A1A;
}
.hobbies-section-wrapper .form-control:focus {
  box-shadow: none;
  border-color: #2D2D2D;
}
@media (max-width: 768px) {
  .hobbies-section-wrapper .display-3 {
    font-size: 2rem;
  }
  .hobbies-section-wrapper .lead {
    font-size: 1rem;
  }
}

/* ===== PAGE: about-contact ===== */
.about-contact-page {
  background-color: #FBFBFB;
  font-family: 'Roboto', sans-serif;
}

.about-contact-page .text-graphite {
  color: #2D2D2D !important;
}

.about-contact-page h2, .about-contact-page h3 {
  font-family: 'Inter', sans-serif;
  color: #2D2D2D;
}

.about-contact-page .bg-secondary-light {
  background-color: #F5F5F5;
}

.about-contact-page .feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-contact-page .icon-box {
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-contact-page .about-image-container img {
  border-left: 5px solid #2D2D2D;
  transition: transform 0.4s ease;
}

.about-contact-page .about-image-container img:hover {
  transform: scale(1.02);
}

.about-contact-page .contact-form-wrapper {
  border-color: #E0E0E0 !important;
}

.about-contact-page .form-control {
  border-radius: 0;
  border: 1px solid #E0E0E0;
  background-color: #FFFFFF !important;
}

.about-contact-page .form-control:focus {
  border-color: #2D2D2D;
  box-shadow: none;
}

.about-contact-page .btn-dark {
  background-color: #2D2D2D;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.about-contact-page .btn-dark:hover {
  background-color: #404040;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.about-contact-page .contact-item a:hover {
  color: #2D2D2D !important;
}

@media (max-width: 767.98px) {
  .about-contact-page h2 {
    font-size: 1.5rem !important;
  }
  .about-contact-page .about-image-container img {
    height: 300px !important;
  }
}

.text-graphite {
    color: #2D2D2D !important;
}

.text-dark-muted {
    color: #555555 !important;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 0px;
    object-fit: cover;
    border: 1px solid #E0E0E0;
    flex-shrink: 0;
}

.main-comment-wrapper {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-comment-wrapper:hover {
    border-color: #2D2D2D;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.comment-footer button {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.comment-footer button:hover {
    color: #2D2D2D !important;
}

.reply-avatar {
    width: 45px;
    height: 45px;
    border-radius: 0px;
    object-fit: cover;
    border: 1px solid #E0E0E0;
    flex-shrink: 0;
}

.reply-comment-wrapper {
    position: relative;
    transition: opacity 0.3s ease;
}

.reply-comment-wrapper:hover {
    opacity: 0.9;
}

.text-graphite {
    color: #2D2D2D !important;
}

.text-dark-muted {
    color: #555555 !important;
}


/* ===== PAGE TEMPLATE: world-events ===== */
.world-events-detail .hero-detail-section {
    z-index: 1;
}

.world-events-detail .rich-text-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
}

.world-events-detail .rich-text-content h2,
.world-events-detail .rich-text-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #2D2D2D;
}

.world-events-detail .comment-avatar,
.world-events-detail .reply-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.world-events-detail .sidebar-sticky {
    position: sticky;
    top: 100px;
}

.world-events-detail .btn-dark {
    background-color: #2D2D2D !important;
    border-radius: 0;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.world-events-detail .btn-dark:hover {
    background-color: #1A1A1A !important;
}

.world-events-detail .text-graphite {
    color: #2D2D2D;
}

.world-events-detail .text-dark-muted {
    color: #555555;
}

.world-events-detail .x-small {
    font-size: 0.75rem;
}

.world-events-detail .ratio img {
    transition: transform 0.4s ease;
}

.world-events-detail .ratio:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .world-events-detail .display-4 {
        font-size: 1.75rem;
    }

    .world-events-detail .hero-detail-section {
        padding: 80px 0 40px !important;
    }

    .world-events-detail .main-comment-wrapper {
        padding: 1.5rem !important;
    }
}

/* ===== PAGE TEMPLATE: tech ===== */
.tech-detail-template {
    background-color: #FBFBFB;
    color: #1A1A1A;
    font-family: 'Roboto', sans-serif;
}

.tech-detail-template .text-graphite {
    color: #2D2D2D !important;
}

.tech-detail-template .bg-graphite {
    background-color: #2D2D2D !important;
}

.tech-detail-template .border-accent {
    border-color: #E0E0E0 !important;
}

.tech-detail-template .bg-main {
    background-color: #FBFBFB;
}

.tech-detail-template .hero-section .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.tech-detail-template .article-body h1,
.tech-detail-template .article-body h2,
.tech-detail-template .article-body h3 {
    font-family: 'Inter', sans-serif;
    color: #2D2D2D;
}

.tech-detail-template .transition-smooth {
    transition: transform 0.5s ease-in-out;
}

.tech-detail-template .comment-avatar,
.tech-detail-template .reply-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.tech-detail-template .btn-link:hover {
    color: #000 !important;
}


.tech-detail-template .morv-capital-header .navbar {
    background-color: #2D2D2D !important;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #E0E0E0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tech-detail-template .header-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.tech-detail-template .brand-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #FFFFFF !important;
}

.tech-detail-template .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #FFFFFF !important;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.tech-detail-template .nav-link:hover {
    color: #D1D1D1 !important;
}


.tech-detail-template .footer-block {
    background-color: #2D2D2D;
    color: #D1D1D1;
}

.tech-detail-template .footer-heading {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.tech-detail-template .footer-logo {
    width: 150px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: none;
}

.tech-detail-template .footer-link {
    color: #D1D1D1;
    text-decoration: none;
    transition: 0.3s;
}

.tech-detail-template .footer-link:hover {
    color: #FFFFFF;
    transform: translateX(3px);
}

.tech-detail-template .btn-editorial {
    background-color: #FFFFFF;
    color: #2D2D2D;
    border-radius: 0;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    border: none;
}

.tech-detail-template .btn-editorial:hover {
    background-color: #E0E0E0;
}

@media (max-width: 768px) {
    .tech-detail-template .display-3 {
        font-size: 1.5rem;
    }

    .tech-detail-template .lead {
        font-size: 0.9rem;
    }

    .tech-detail-template .article-container {
        padding: 1.5rem !important;
    }
}

/* ===== PAGE TEMPLATE: lifestyle ===== */
.lifestyle-detail-template .lifestyle-hero-section {
    min-height: 400px;
    position: relative;
}

.lifestyle-detail-template .text-graphite {
    color: #2D2D2D !important;
}

.lifestyle-detail-template .text-dark-muted {
    color: #555555 !important;
}

.lifestyle-detail-template .lifestyle-content-wrapper {
    border-radius: 0;
    line-height: 1.8;
}

.lifestyle-detail-template .lifestyle-rich-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #1A1A1A;
}

.lifestyle-detail-template .lifestyle-rich-text h2,
.lifestyle-detail-template .lifestyle-rich-text h3 {
    font-family: 'Inter', sans-serif;
    margin-top: 2rem;
}

.lifestyle-detail-template .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.lifestyle-detail-template .sidebar-widget {
    border-radius: 0;
}

.lifestyle-detail-template .btn-editorial {
    background-color: #FFFFFF;
    color: #2D2D2D;
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    border: none;
    transition: background-color 0.3s ease;
}

.lifestyle-detail-template .btn-editorial:hover {
    background-color: #E0E0E0;
}

.lifestyle-detail-template .comment-avatar,
.lifestyle-detail-template .reply-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.lifestyle-detail-template .main-comment-wrapper,
.lifestyle-detail-template .reply-comment-wrapper {
    transition: background-color 0.3s ease;
}

.lifestyle-detail-template .form-control:focus {
    box-shadow: none;
    border-color: #2D2D2D;
}

@media (max-width: 768px) {
    .lifestyle-detail-template .lifestyle-hero-section {
        min-height: 300px;
        padding: 40px 15px;
    }

    .lifestyle-detail-template .display-4 {
        font-size: 1.75rem !important;
    }

    .lifestyle-detail-template .lifestyle-rich-text {
        font-size: 1rem;
    }

    .lifestyle-detail-template .reply-comment-wrapper {
        margin-left: 1.5rem !important;
        padding-left: 1rem !important;
    }
}


.morv-capital-header .navbar {
    background-color: #2D2D2D !important;
    border-bottom: 2px solid #E0E0E0;
}

.morv-capital-header .header-logo {
    max-width: 45px;
    height: auto;
}

.morv-capital-header .brand-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #FFFFFF !important;
}

.footer-block {
    background-color: #2D2D2D;
    color: #D1D1D1;
}

.footer-block .footer-heading {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.footer-block .footer-link {
    color: #D1D1D1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-block .footer-link:hover {
    color: #FFFFFF;
    padding-left: 5px;
}

/* ===== PAGE TEMPLATE: hobbies ===== */
.modern-editorial-layout {
    background-color: #FBFBFB;
    font-family: 'Roboto', sans-serif;
}

.hobbies-detail-page h1,
.hobbies-detail-page h2,
.hobbies-detail-page h3,
.hobbies-detail-page h4,
.hobbies-detail-page h5 {
    font-family: 'Inter', sans-serif;
    color: #1A1A1A;
}

.text-graphite {
    color: #2D2D2D !important;
}

.text-dark-muted {
    color: #555555 !important;
}

.article-body {
    line-height: 1.8;
    font-size: 1.1rem;
}

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

.hero-section {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-list a:hover h5 {
    color: #555555 !important;
}

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

.btn-editorial {
    background-color: #FFFFFF;
    color: #2D2D2D;
    border-radius: 0;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    border: none;
}

.morv-capital-header .navbar {
    background-color: #2D2D2D !important;
    border-bottom: 2px solid #E0E0E0;
}

.footer-block {
    background-color: #2D2D2D;
    color: #D1D1D1;
}

.footer-link {
    color: #D1D1D1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 1.5rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .article-body {
        padding: 1.5rem !important;
    }
}

.category-content-wrapper .policy-document-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.category-content-wrapper .policy-document-container .policy-text {
  text-align: center;
}

.category-content-wrapper .policy-document-container .policy-list {
  display: inline-block;
  text-align: left;
}
