:root {
    --primary: #6F4E37;
    --secondary: #D4AF37;
    --accent: #E67E22;
    --background-main: #FDFBF9;
    --surface-card: rgba(255, 255, 255, 0.75);
    --text-primary: #2D241E;
    --text-secondary: #5D5048;
    --border-color: rgba(111, 78, 55, 0.12);
    --font-headings: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --radius: 8px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    background-color: var(--background-main);
    font-family: var(--font-body);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--primary);
}

a {
    text-decoration: none;
    transition: var(--transition);
    color: var(--primary);
}

a:hover {
    color: var(--accent);
}

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

.premium-portal-layout {
    background-image: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.btn-portal {
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    background: var(--surface-card);
    backdrop-filter: blur(10px);
}

.btn-portal:hover {
    border-color: var(--secondary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ===== header ===== */
.linv-header {
    background-color: #FDFBF9;
    border-bottom: 1px solid rgba(111, 78, 55, 0.12);
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
}

.linv-header .navbar-collapse {
    background-color: #FDFBF9;
}

@media (min-width: 992px) {
    .linv-header .navbar-collapse {
        background-color: transparent;
    }
}

.linv-header .linv-logo-img {
    max-width: 48px;
    height: auto;
    object-fit: contain;
    display: inline-block;
}

.linv-header .nav-link {
    font-family: 'Inter', sans-serif;
    color: #2D241E !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.linv-header .nav-link:hover {
    color: #D4AF37 !important;
    transform: translateY(-1px);
}

.linv-header .navbar-toggler {
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid rgba(111, 78, 55, 0.2);
    border-radius: 4px;
}

.linv-header .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

@media (max-width: 991.98px) {
    .linv-header .navbar-nav {
        padding: 1rem 0;
        text-align: center;
    }

    .linv-header .nav-item {
        border-bottom: 1px solid rgba(111, 78, 55, 0.05);
    }

    .linv-header .nav-item:last-child {
        border-bottom: none;
    }

    .linv-header .navbar-collapse {
        margin-top: 0.5rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        border-radius: 0 0 8px 8px;
    }
}

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

.news-hero-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #2D241E;
    height: 100%;
    transition: transform 0.4s ease;
}

.news-card-featured {
    min-height: 550px;
}

.news-card-secondary {
    height: 100%;
    min-height: 263px;
}

.news-hero-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: #FFFBF2;
}

.news-hero-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.news-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.news-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(45, 36, 30, 0.95) 0%, rgba(45, 36, 30, 0.4) 50%, rgba(45, 36, 30, 0.1) 100%);
    z-index: 2;
    transition: background 0.4s ease;
}

.news-hero-card:hover .news-hero-overlay {
    background: linear-gradient(to top, rgba(45, 36, 30, 1) 0%, rgba(45, 36, 30, 0.5) 50%, rgba(45, 36, 30, 0.2) 100%);
}

.news-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 3;
}

.news-card-secondary .news-hero-content {
    padding: 1.5rem;
}

.news-hero-badge {
    display: inline-block;
    background: #D4AF37;
    color: #2D241E;
    padding: 4px 12px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-hero-badge.small {
    font-size: 0.65rem;
    margin-bottom: 0.5rem;
}

.news-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    line-height: 1.2;
    font-weight: 700;
    color: #FFFBF2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.news-hero-title-small {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    color: #FFFBF2;
}

.news-hero-meta {
    color: #E0D5C1;
    font-family: 'Inter', sans-serif;
    opacity: 0.9;
}

.news-hero-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    background: rgba(255, 255, 255, 0.1);
    color: #FFFBF2;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.news-hero-btn-small {
    padding: 6px 16px;
    font-size: 0.7rem;
}

.news-hero-card:hover .news-hero-btn {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #2D241E;
}

@media (max-width: 991px) {
    .news-card-featured {
        min-height: 450px;
    }

    .news-hero-title {
        font-size: 1.75rem;
    }

    .news-hero-content {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .news-hero-title {
        font-size: 1.25rem;
    }

    .news-hero-title-small {
        font-size: 1.15rem;
    }

    .news-card-featured {
        min-height: 380px;
    }

    .news-card-secondary {
        min-height: 250px;
    }
}

/* ===== news-grid ===== */
.news-grid-block {
    background-color: #FDFBF9;
    position: relative;
    overflow: hidden;
}

.news-grid-block .news-grid-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    color: #6F4E37;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.news-grid-block .news-grid-subtitle {
    font-family: 'Inter', sans-serif;
    color: #5D5048;
    font-size: 1.1rem;
    max-width: 600px;
}

.news-grid-block .btn-filter {
    background: rgba(111, 78, 55, 0.05);
    border: 1px solid rgba(111, 78, 55, 0.12);
    color: #6F4E37;
    padding: 0.5rem 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.news-grid-block .btn-filter.active,
.news-grid-block .btn-filter:hover {
    background-color: #6F4E37;
    color: #FFFBF2;
    border-color: #6F4E37;
}

.news-grid-block .news-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(111, 78, 55, 0.12);
    border-radius: 8px;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.news-grid-block .news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(111, 78, 55, 0.1);
}

.news-grid-block .news-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.news-grid-block .news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.news-grid-block .category-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #D4AF37;
    color: #FFFBF2;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.news-grid-block .news-card-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.news-grid-block .news-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #E67E22;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.news-grid-block .news-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #2D241E;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
}

.news-grid-block .news-card-excerpt {
    font-family: 'Inter', sans-serif;
    color: #5D5048;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-grid-block .btn-news {
    display: inline-block;
    text-decoration: none;
    background: transparent;
    border: 1px solid #6F4E37;
    color: #6F4E37;
    padding: 0.6rem 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.news-grid-block .btn-news:hover {
    background: #6F4E37;
    color: #FFFBF2;
}

@media (max-width: 767px) {
    .news-grid-block .news-grid-title {
        font-size: 1.5rem;
    }

    .news-grid-block .news-grid-subtitle {
        font-size: 0.9rem;
    }

    .news-grid-block .news-card-image {
        height: 200px;
    }
}

/* ===== expert-analysis ===== */
.expert-analysis-block {
    padding: 80px 0;
    background-color: #FDFBF9;
    color: #2D241E;
}

.expert-analysis-block__title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #6F4E37;
}

.expert-analysis-block__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #5D5048;
    max-width: 700px;
    line-height: 1.6;
}

.expert-analysis-block__card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(111, 78, 55, 0.12);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.expert-analysis-block__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(111, 78, 55, 0.08);
}

.expert-analysis-block__image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.expert-analysis-block__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.expert-analysis-block__card:hover .expert-analysis-block__image {
    transform: scale(1.05);
}

.expert-analysis-block__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #D4AF37;
    color: #FFFBF2;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.expert-analysis-block__content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.expert-analysis-block__meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.expert-analysis-block__author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    border: 2px solid #D4AF37;
}

.expert-analysis-block__author-info {
    display: flex;
    flex-direction: column;
}

.expert-analysis-block__author-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #6F4E37;
}

.expert-analysis-block__date {
    font-size: 0.8rem;
    color: #5D5048;
}

.expert-analysis-block__card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D241E;
    margin-bottom: 16px;
    line-height: 1.3;
}

.expert-analysis-block__excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #5D5048;
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

.expert-analysis-block__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid #D4AF37;
    color: #6F4E37;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: fit-content;
}

.expert-analysis-block__btn:hover {
    background: #D4AF37;
    color: #FFFBF2;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

@media (max-width: 767px) {
    .expert-analysis-block {
        padding: 60px 0;
    }

    .expert-analysis-block__title {
        font-size: 1.75rem;
    }

    .expert-analysis-block__subtitle {
        font-size: 1rem;
    }

    .expert-analysis-block__card-title {
        font-size: 1.25rem;
    }
}

/* ===== newsletter ===== */
.newsletter-section {
    background-image: linear-gradient(rgba(111, 78, 55, 0.05), rgba(111, 78, 55, 0.05)),
    url('../media/uploads/media/premium-newsletter-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.newsletter-section .newsletter-card {
    background: rgba(255, 251, 242, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(111, 78, 55, 0.1);
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.newsletter-section .newsletter-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2D241E;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.newsletter-section .newsletter-description {
    font-family: 'Inter', sans-serif;
    color: #5D5048;
    font-size: 1rem;
    line-height: 1.6;
}

.newsletter-section .input-container {
    position: relative;
}

.newsletter-section .newsletter-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6F4E37;
    z-index: 10;
}

.newsletter-section .newsletter-input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid rgba(111, 78, 55, 0.2);
    border-radius: 6px;
    background-color: #FFFFFF;
    color: #2D241E;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-section .newsletter-input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.newsletter-section .newsletter-input::placeholder {
    color: #5D5048;
    opacity: 0.6;
}

.newsletter-section .newsletter-button {
    background: #6F4E37;
    color: #FFFBF2;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-section .newsletter-button:hover {
    background: #2D241E;
    box-shadow: 0 4px 15px rgba(111, 78, 55, 0.3);
    transform: translateY(-1px);
}

.newsletter-section .newsletter-privacy {
    font-size: 0.8rem;
    color: #5D5048;
    font-family: 'Inter', sans-serif;
}

.newsletter-section .newsletter-privacy a {
    color: #6F4E37;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.newsletter-section .newsletter-privacy a:hover {
    color: #D4AF37;
}

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

    .newsletter-section .newsletter-form-group {
        width: 100%;
    }

    .newsletter-section .newsletter-button {
        width: 100%;
    }
}

/* ===== footer ===== */
.linv-footer {
    background-color: #FDFBF9;
    color: #2D241E;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(111, 78, 55, 0.1);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.linv-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.1) 0%, rgba(253, 251, 249, 0) 70%);
    pointer-events: none;
}

.linv-footer-title {
    font-family: 'Playfair Display', serif;
    color: #6F4E37;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 24px;
    position: relative;
}

.linv-footer-text {
    color: #5D5048;
    line-height: 1.7;
    font-size: 0.95rem;
}

.linv-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.linv-footer-list li {
    margin-bottom: 12px;
}

.linv-footer-link {
    color: #5D5048;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.linv-footer-link:hover {
    color: #E67E22;
    transform: translateX(5px);
}

.linv-newsletter-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(111, 78, 55, 0.2);
    background: rgba(255, 255, 255, 0.8);
    color: #2D241E;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.linv-newsletter-input:focus {
    outline: none;
    border-color: #D4AF37;
}

.linv-newsletter-input::placeholder {
    color: #5D5048;
    opacity: 0.7;
}

.linv-btn-subscribe {
    width: 100%;
    padding: 12px 24px;
    background: #6F4E37;
    color: #FFFBF2;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.4s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.linv-btn-subscribe:hover {
    background: #2D241E;
    box-shadow: 0 4px 15px rgba(111, 78, 55, 0.2);
}

.linv-contact-details {
    font-size: 0.9rem;
    color: #5D5048;
}

.linv-contact-item {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.linv-contact-item i {
    color: #D4AF37;
    margin-top: 4px;
}

.linv-contact-link {
    color: #5D5048;
    text-decoration: none;
    transition: color 0.3s ease;
}

.linv-contact-link:hover {
    color: #E67E22;
}

.linv-footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(111, 78, 55, 0.08);
}

.linv-copyright {
    font-size: 0.85rem;
    color: #5D5048;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .linv-footer {
        padding: 60px 0 30px;
    }

    .linv-footer-title {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .linv-footer-link,
    .linv-contact-details {
        font-size: 0.9rem;
    }

    .linv-footer-brand {
        text-align: center;
        margin-bottom: 30px;
    }

    .linv-footer-logo-link img {
        margin: 0 auto 20px !important;
    }

    .linv-footer-title {
        text-align: center;
    }

    .linv-footer-list {
        text-align: center;
    }

    .linv-contact-item {
        justify-content: center;
    }

    .linv-newsletter-box {
        max-width: 400px;
        margin: 0 auto;
    }
}

.category-page {
    background-color: #FDFBF9;
    overflow-x: hidden;
}

.category-hero {
    padding: 100px 0 60px;
    background: linear-gradient(rgba(45, 36, 30, 0.05), rgba(45, 36, 30, 0)), url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M54.627 0l.83.83L.83 55.456l-.83-.83L54.627 0zm-53.797 0l.83.83L.83 1.66l-.83-.83L.83 0z" fill="%236f4e37" fill-opacity="0.03" fill-rule="evenodd"/%3E%3C/svg%3E');
    border-bottom: 1px solid rgba(111, 78, 55, 0.08);
}

.category-hero .hero-badge {
    display: inline-block;
    background: #D4AF37;
    color: #FFFBF2;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.category-hero .hero-title {
    font-family: 'Playfair Display', serif;
    color: #2D241E;
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.category-hero .hero-description {
    font-family: 'Inter', sans-serif;
    color: #5D5048;
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 600px;
}

.article-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(111, 78, 55, 0.12);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(111, 78, 55, 0.1);
}

.card-img-box {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.article-card:hover .card-img {
    transform: scale(1.05);
}

.card-body-box {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #D4AF37;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.card-title {
    font-family: 'Playfair Display', serif;
    color: #2D241E;
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-excerpt {
    font-family: 'Inter', sans-serif;
    color: #5D5048;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-btn {
    margin-top: auto;
    display: inline-block;
    background: #6F4E37;
    color: #FFFBF2 !important;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.card-btn:hover {
    background: #2D241E;
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .category-hero .hero-title {
        font-size: 2rem;
    }

    .category-hero {
        padding: 60px 0 40px;
    }
}

.linv-header {
    background-color: #FDFBF9;
    border-bottom: 1px solid rgba(111, 78, 55, 0.12);
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
}

.linv-header .navbar-collapse {
    background-color: #FDFBF9;
}

@media (min-width: 992px) {
    .linv-header .navbar-collapse {
        background-color: transparent;
    }
}

.linv-header .linv-logo-img {
    max-width: 48px;
    height: auto;
    object-fit: contain;
    display: inline-block;
}

.linv-header .nav-link {
    font-family: 'Inter', sans-serif;
    color: #2D241E !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.linv-header .nav-link:hover {
    color: #D4AF37 !important;
    transform: translateY(-1px);
}

.linv-header .navbar-toggler {
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid rgba(111, 78, 55, 0.2);
    border-radius: 4px;
}

.linv-header .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.linv-footer {
    background-color: #FDFBF9;
    color: #2D241E;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(111, 78, 55, 0.1);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.linv-footer-title {
    font-family: 'Playfair Display', serif;
    color: #6F4E37;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 24px;
    position: relative;
}

.linv-footer-text {
    color: #5D5048;
    line-height: 1.7;
    font-size: 0.95rem;
}

.linv-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.linv-footer-list li {
    margin-bottom: 12px;
}

.linv-footer-link {
    color: #5D5048;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.linv-footer-link:hover {
    color: #E67E22;
    transform: translateX(5px);
}

.linv-newsletter-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(111, 78, 55, 0.2);
    background: rgba(255, 255, 255, 0.8);
    color: #2D241E;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.linv-newsletter-input::placeholder {
    color: #5D5048;
    opacity: 0.7;
}

.linv-btn-subscribe {
    width: 100%;
    padding: 12px 24px;
    background: #6F4E37;
    color: #FFFBF2;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.4s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.linv-btn-subscribe:hover {
    background: #2D241E;
    box-shadow: 0 4px 15px rgba(111, 78, 55, 0.2);
}

.linv-contact-details {
    font-size: 0.9rem;
    color: #5D5048;
}

.linv-contact-item {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.linv-contact-item i {
    color: #D4AF37;
    margin-top: 4px;
}

.linv-contact-link {
    color: #5D5048;
    text-decoration: none;
    transition: color 0.3s ease;
}

.linv-contact-link:hover {
    color: #E67E22;
}


/* ===== PAGE: privacy ===== */
.policy-wrapper-unique { padding: 60px 20px; background-color: #FDFBF9; font-family: 'Inter', sans-serif; color: #2D241E; line-height: 1.8; } .policy-wrapper-unique .policy-content-inner { max-width: 900px; margin: 0 auto; background: rgba(255, 255, 255, 0.75); padding: 40px; border-radius: 8px; border: 1px solid rgba(111, 78, 55, 0.12); backdrop-filter: blur(10px); } .policy-wrapper-unique h2 { font-family: 'Playfair Display', serif; color: #1a1a1a; font-size: 2.25rem; margin-top: 2rem; margin-bottom: 1.25rem; border-bottom: 1px solid rgba(212, 175, 55, 0.3); padding-bottom: 0.5rem; } .policy-wrapper-unique p { margin-bottom: 1.5rem; font-size: 1rem; color: #444; } .policy-wrapper-unique ul { margin-bottom: 2rem; padding-left: 1.5rem; list-style-type: none; } .policy-wrapper-unique li { margin-bottom: 0.75rem; position: relative; padding-left: 1.5rem; color: #444; } .policy-wrapper-unique li::before { content: '\f058'; font-family: 'Font Awesome 5 Free'; font-weight: 900; position: absolute; left: 0; color: #D4AF37; } .policy-wrapper-unique strong { color: #6F4E37; font-weight: 700; } .policy-wrapper-unique a { color: #E67E22; text-decoration: none; transition: color 0.3s ease; border-bottom: 1px dashed transparent; } .policy-wrapper-unique a:hover { color: #6F4E37; border-bottom-color: #D4AF37; } @media (max-width: 767.98px) { .policy-wrapper-unique { padding: 30px 15px; } .policy-wrapper-unique .policy-content-inner { padding: 20px; } .policy-wrapper-unique h2 { font-size: 16px; margin-top: 1.5rem; } .policy-wrapper-unique p, .policy-wrapper-unique li { font-size: 14px; line-height: 1.6; } }

/* ===== PAGE: terms ===== */
.policy-wrapper-unique {
  font-family: 'Inter', sans-serif;
  background-color: #FDFBF9;
  color: #5D5048;
  padding: 4rem 0;
}

.policy-wrapper-unique .terms-card-wrapper {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid rgba(111, 78, 55, 0.12);
  box-shadow: 0 10px 30px rgba(111, 78, 55, 0.05);
}

.policy-wrapper-unique .terms-header-meta {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  color: #6F4E37;
  border-bottom: 1px solid rgba(111, 78, 55, 0.1);
  padding-bottom: 1.5rem;
  flex-wrap: wrap;
}

.policy-wrapper-unique h2 {
  font-family: 'Playfair Display', serif;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.policy-wrapper-unique h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: #D4AF37;
  margin-top: 0.5rem;
}

.policy-wrapper-unique p {
  line-height: 1.8;
  margin-bottom: 1.25rem;
  text-align: justify;
}

.policy-wrapper-unique .terms-list {
  list-style: none;
  padding-left: 0;
}

.policy-wrapper-unique .terms-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.policy-wrapper-unique .terms-list li::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #D4AF37;
}

.policy-wrapper-unique .terms-contact-info {
  background: rgba(111, 78, 55, 0.05);
  border-left: 4px solid #6F4E37;
  border-radius: 0 4px 4px 0;
}

.policy-wrapper-unique h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .policy-wrapper-unique {
    padding: 2rem 0;
  }
  .policy-wrapper-unique .terms-card-wrapper {
    padding: 1.5rem;
  }
  .policy-wrapper-unique h2 {
    font-size: 1.5rem;
  }
  .policy-wrapper-unique .terms-header-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ===== PAGE: disclaimer ===== */
.policy-wrapper-unique {
  padding: 40px 20px;
  background: #FDFBF9;
  min-height: 600px;
}
.policy-wrapper-unique .disclaimer-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 8px;
  border: 1px solid rgba(111, 78, 55, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.policy-wrapper-unique h2 {
  font-family: 'Playfair Display', serif;
  color: #1a1a1a;
  font-size: 24px;
  margin-top: 35px;
  margin-bottom: 20px;
  border-bottom: 2px solid #D4AF37;
  display: inline-block;
  padding-bottom: 5px;
}
.policy-wrapper-unique p {
  font-family: 'Inter', sans-serif;
  color: #444444;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}
.policy-wrapper-unique ul {
  margin-bottom: 25px;
  padding-left: 20px;
}
.policy-wrapper-unique li {
  font-family: 'Inter', sans-serif;
  color: #444444;
  margin-bottom: 12px;
  line-height: 1.6;
  list-style-type: none;
  position: relative;
}
.policy-wrapper-unique li::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #6F4E37;
  position: absolute;
  left: -20px;
}
.policy-wrapper-unique strong {
  color: #2D241E;
  font-weight: 700;
}
@media (max-width: 767px) {
  .policy-wrapper-unique {
    padding: 20px 15px;
  }
  .policy-wrapper-unique .disclaimer-container {
    padding: 25px 20px;
  }
  .policy-wrapper-unique h2 {
    font-size: 16px !important;
  }
  .policy-wrapper-unique p, .policy-wrapper-unique li {
    font-size: 14px !important;
    hyphens: auto;
  }
}

/* ===== PAGE: cookies ===== */
.policy-wrapper-unique { padding: 40px 15px; background: #FDFBF9; min-height: 60vh; display: flex; justify-content: center; }.policy-wrapper-unique .policy-inner-content { max-width: 850px; width: 100%; background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(10px); border: 1px solid rgba(111, 78, 55, 0.12); border-radius: 8px; padding: 48px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); }.policy-wrapper-unique .policy-text-section h2 { font-family: 'Playfair Display', serif; color: #1a1a1a; font-size: 2.25rem; margin-bottom: 2rem; border-bottom: 2px solid #D4AF37; display: inline-block; padding-bottom: 10px; }.policy-wrapper-unique .policy-text-section h3 { font-family: 'Playfair Display', serif; color: #1a1a1a; font-size: 1.75rem; margin-top: 2.5rem; margin-bottom: 1.25rem; font-weight: 700; }.policy-wrapper-unique .policy-text-section p { font-family: 'Inter', sans-serif; color: #444; line-height: 1.7; margin-bottom: 1.5rem; font-size: 1.1rem; }.policy-wrapper-unique .policy-text-section ul { padding-left: 20px; margin-bottom: 2rem; list-style: none; }.policy-wrapper-unique .policy-text-section ul li { position: relative; padding-left: 25px; margin-bottom: 12px; color: #444; line-height: 1.6; }.policy-wrapper-unique .policy-text-section ul li::before { content: '\f00c'; font-family: 'Font Awesome 5 Free'; font-weight: 900; position: absolute; left: 0; color: #D4AF37; font-size: 0.9rem; top: 2px; }.policy-wrapper-unique .policy-text-section a { color: #6F4E37; text-decoration: none; font-weight: 500; transition: color 0.3s ease; border-bottom: 1px solid transparent; }.policy-wrapper-unique .policy-text-section a:hover { color: #D4AF37; border-bottom-color: #D4AF37; }.policy-wrapper-unique .policy-text-section strong { color: #1a1a1a; font-weight: 600; }@media (max-width: 767px) { .policy-wrapper-unique { padding: 20px 10px; } .policy-wrapper-unique .policy-inner-content { padding: 24px; } .policy-wrapper-unique .policy-text-section h2 { font-size: 18px !important; margin-bottom: 1.5rem; } .policy-wrapper-unique .policy-text-section h3 { font-size: 16px !important; margin-top: 1.8rem; } .policy-wrapper-unique .policy-text-section p { font-size: 14px !important; } .policy-wrapper-unique .policy-text-section ul li { font-size: 14px !important; } }

/* ===== PAGE: about-contacts ===== */
.linv-content-wrapper { background-color: #FDFBF9; color: #2D241E; font-family: 'Inter', sans-serif; overflow: hidden; }.linv-content-wrapper .linv-about-card { background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(10px); border: 1px solid rgba(111, 78, 55, 0.12); border-radius: 8px; }.linv-content-wrapper .linv-heading { font-family: 'Playfair Display', serif; color: #6F4E37; font-weight: 700; margin-bottom: 1.5rem; }.linv-content-wrapper .linv-subheading { font-family: 'Playfair Display', serif; color: #6F4E37; font-size: 1.25rem; font-weight: 700; }.linv-content-wrapper .linv-text { line-height: 1.7; color: #5D5048; }.linv-content-wrapper .linv-stats .stat-number { font-size: 1.5rem; font-weight: 700; color: #D4AF37; }.linv-content-wrapper .linv-stats .stat-label { font-size: 0.85rem; color: #5D5048; text-transform: uppercase; letter-spacing: 1px; }.linv-content-wrapper .linv-image-wrapper img { width: 100%; height: 400px; object-fit: cover; }.linv-content-wrapper .linv-contact-card { background: rgba(255, 255, 255, 0.75); border: 1px solid rgba(111, 78, 55, 0.12); border-radius: 8px; transition: transform 0.4s ease, box-shadow 0.4s ease; }.linv-content-wrapper .linv-contact-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(111, 78, 55, 0.05); }.linv-content-wrapper .contact-icon { font-size: 2rem; color: #D4AF37; }.linv-content-wrapper .contact-link { color: #6F4E37; text-decoration: none; font-weight: 500; }.linv-content-wrapper .contact-link:hover { color: #E67E22; }.linv-content-wrapper .btn-whatsapp { background-color: #25D366; color: #fff; font-weight: 600; border-radius: 50px; padding: 0.5rem 1.5rem; border: none; }.linv-content-wrapper .btn-whatsapp:hover { background-color: #128C7E; color: #fff; }.linv-content-wrapper .linv-form-container { background: rgba(255, 255, 255, 0.75); border: 1px solid rgba(111, 78, 55, 0.12); border-radius: 8px; }.linv-content-wrapper .form-label { font-weight: 500; color: #6F4E37; margin-bottom: 0.5rem; }.linv-content-wrapper .form-control { background-color: #FDFBF9; border: 1px solid rgba(111, 78, 55, 0.2); border-radius: 4px; padding: 0.75rem; color: #2D241E; }.linv-content-wrapper .form-control::placeholder { color: #A0938A; }.linv-content-wrapper .form-control:focus { box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25); border-color: #D4AF37; }.linv-content-wrapper .btn-primary { background-color: #6F4E37; border-color: #6F4E37; color: #FFFBF2; font-weight: 700; transition: all 0.3s ease; }.linv-content-wrapper .btn-primary:hover { background-color: #5D422F; border-color: #5D422F; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(111, 78, 55, 0.2); }@media (max-width: 767px) { .linv-content-wrapper .linv-heading { font-size: 1.5rem; } .linv-content-wrapper .linv-image-wrapper img { height: 250px; } }

.comment-card-main {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(111, 78, 55, 0.12);
    border-radius: 8px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.comment-card-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(111, 78, 55, 0.08);
}

.comment-avatar-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #D4AF37;
    padding: 2px;
}

.author-name {
    font-family: 'Playfair Display', serif;
    color: #2D241E;
    font-weight: 700;
    font-size: 1.1rem;
}

.comment-timestamp {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #5D5048;
    opacity: 0.8;
}

.comment-body-text {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #5D5048;
    font-size: 1rem;
}

.btn-comment-link {
    background: transparent;
    border: none;
    padding: 0;
    color: #6F4E37;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-comment-link:hover {
    color: #E67E22;
}

.reply-container {
    border-left: 2px solid rgba(212, 175, 55, 0.3);
    padding-left: 1rem;
}

.reply-card {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(111, 78, 55, 0.08);
}

.reply-avatar-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #D4AF37;
}

.reply-author-name {
    font-family: 'Inter', sans-serif;
    color: #2D241E;
    font-weight: 600;
    font-size: 0.95rem;
}

.reply-body-text {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #5D5048;
    font-size: 0.9rem;
}

.btn-sm-text {
    font-size: 0.8rem;
}

.comment-timestamp {
    font-size: 0.75rem;
    color: #5D5048;
}


/* ===== PAGE TEMPLATE: world-agenda ===== */
.linv-header {
    background-color: #FDFBF9;
    border-bottom: 1px solid rgba(111, 78, 55, 0.12);
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
}

.linv-header .linv-logo-img {
    max-width: 48px;
    height: auto;
    object-fit: contain;
    display: inline-block;
}

.linv-header .nav-link {
    font-family: 'Inter', sans-serif;
    color: #2D241E !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.linv-header .nav-link:hover {
    color: #D4AF37 !important;
    transform: translateY(-1px);
}

.linv-detail-wrapper {
    background-color: #FDFBF9;
    font-family: 'Inter', sans-serif;
}

.linv-hero-detail {
    min-height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #FFFBF2;
    padding: 100px 0 60px;
}

.linv-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #FFFBF2;
}

.linv-hero-meta {
    font-size: 0.9rem;
    opacity: 0.9;
}

.linv-hero-meta .meta-item i {
    color: #D4AF37;
}

.linv-main-content {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    border: 1px solid rgba(111, 78, 55, 0.08);
}

.content-rich-text {
    color: #2D241E;
    line-height: 1.8;
    font-size: 1.1rem;
}

.content-rich-text h2,
.content-rich-text h3 {
    font-family: 'Playfair Display', serif;
    color: #6F4E37;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-rich-text p {
    margin-bottom: 1.5rem;
}

.share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #6F4E37;
    color: #FFFBF2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-link:hover {
    background: #E67E22;
    transform: translateY(-3px);
    color: #FFFBF2;
}


.widget-title {
    font-family: 'Playfair Display', serif;
    color: #6F4E37;
    font-weight: 700;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #D4AF37;
}

.recent-post-link {
    color: #2D241E;
    transition: color 0.3s ease;
}

.recent-post-link:hover {
    color: #E67E22;
}

.recent-post-link .post-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}


.linv-btn-primary {
    background: #6F4E37;
    color: #FFFBF2;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.linv-btn-primary:hover {
    background: #2D241E;
    box-shadow: 0 4px 15px rgba(111, 78, 55, 0.2);
}

.linv-btn-outline {
    background: transparent;
    color: #6F4E37;
    border: 1px solid #6F4E37;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.linv-btn-outline:hover {
    background: #6F4E37;
    color: #FFFBF2;
}


.comment-card-main,
.reply-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(111, 78, 55, 0.1);
}

.comment-avatar-img,
.reply-avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #D4AF37;
}

.reply-avatar-img {
    width: 45px;
    height: 45px;
}

.author-name,
.reply-author-name {
    font-family: 'Playfair Display', serif;
    color: #6F4E37;
    font-weight: 700;
}

.comment-timestamp {
    font-size: 0.8rem;
    color: #888;
}

.comment-body-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5D5048;
}

.btn-comment-link {
    background: none;
    border: none;
    color: #6F4E37;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0;
    transition: color 0.3s ease;
}

.btn-comment-link:hover {
    color: #E67E22;
}

.btn-comment-link.text-primary {
    color: #D4AF37 !important;
}

.linv-comment-form .form-control {
    background: #FFF;
    border: 1px solid rgba(111, 78, 55, 0.2);
    border-radius: 4px;
    padding: 12px;
}

.linv-comment-form .form-control:focus {
    border-color: #D4AF37;
    box-shadow: none;
}

.linv-comment-form .form-control::placeholder {
    color: #5D5048;
    opacity: 0.6;
}

.linv-footer {
    background-color: #FDFBF9;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(111, 78, 55, 0.1);
}

.linv-footer-title {
    font-family: 'Playfair Display', serif;
    color: #6F4E37;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.linv-btn-subscribe {
    width: 100%;
    padding: 12px 24px;
    background: #6F4E37;
    color: #FFFBF2;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s ease;
}

.linv-btn-subscribe:hover {
    background: #2D241E;
}

.breadcrumb-item a {
    color: #D4AF37;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #E0D5C1;
}

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

@media (max-width: 991.98px) {
    .linv-hero-detail {
        min-height: 350px;
        padding: 80px 0 40px;
    }

    .linv-sidebar {
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .linv-main-content {
        padding: 20px !important;
    }

    .reply-container {
        margin-left: 20px !important;
    }
}

/* ===== PAGE TEMPLATE: tech-innovation ===== */
.linv-header {
    background-color: #FDFBF9;
    border-bottom: 1px solid rgba(111, 78, 55, 0.12);
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
}

.linv-header .linv-logo-img {
    max-width: 48px;
    height: auto;
    object-fit: contain;
    display: inline-block;
}

.linv-header .nav-link {
    font-family: 'Inter', sans-serif;
    color: #2D241E !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.linv-header .nav-link:hover {
    color: #D4AF37 !important;
    transform: translateY(-1px);
}

.linv-detail-wrapper {
    background-color: #FDFBF9;
    font-family: 'Inter', sans-serif;
}

.linv-hero-detail {
    min-height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #FFFBF2;
    padding: 100px 0 60px;
}

.linv-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #FFFBF2;
}

.linv-hero-meta {
    font-size: 0.9rem;
    opacity: 0.9;
}

.linv-hero-meta .meta-item i {
    color: #D4AF37;
}

.linv-main-content {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    border: 1px solid rgba(111, 78, 55, 0.08);
}

.content-rich-text {
    color: #2D241E;
    line-height: 1.8;
    font-size: 1.1rem;
}

.content-rich-text h2,
.content-rich-text h3 {
    font-family: 'Playfair Display', serif;
    color: #6F4E37;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-rich-text p {
    margin-bottom: 1.5rem;
}

.share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #6F4E37;
    color: #FFFBF2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-link:hover {
    background: #E67E22;
    transform: translateY(-3px);
    color: #FFFBF2;
}


.widget-title {
    font-family: 'Playfair Display', serif;
    color: #6F4E37;
    font-weight: 700;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #D4AF37;
}

.recent-post-link {
    color: #2D241E;
    transition: color 0.3s ease;
}

.recent-post-link:hover {
    color: #E67E22;
}

.recent-post-link .post-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}


.linv-btn-primary {
    background: #6F4E37;
    color: #FFFBF2;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.linv-btn-primary:hover {
    background: #2D241E;
    box-shadow: 0 4px 15px rgba(111, 78, 55, 0.2);
}

.linv-btn-outline {
    background: transparent;
    color: #6F4E37;
    border: 1px solid #6F4E37;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.linv-btn-outline:hover {
    background: #6F4E37;
    color: #FFFBF2;
}


.comment-card-main,
.reply-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(111, 78, 55, 0.1);
}

.comment-avatar-img,
.reply-avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #D4AF37;
}

.reply-avatar-img {
    width: 45px;
    height: 45px;
}

.author-name,
.reply-author-name {
    font-family: 'Playfair Display', serif;
    color: #6F4E37;
    font-weight: 700;
}

.comment-timestamp {
    font-size: 0.8rem;
    color: #888;
}

.comment-body-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5D5048;
}

.btn-comment-link {
    background: none;
    border: none;
    color: #6F4E37;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0;
    transition: color 0.3s ease;
}

.btn-comment-link:hover {
    color: #E67E22;
}

.btn-comment-link.text-primary {
    color: #D4AF37 !important;
}

.linv-comment-form .form-control {
    background: #FFF;
    border: 1px solid rgba(111, 78, 55, 0.2);
    border-radius: 4px;
    padding: 12px;
}

.linv-comment-form .form-control:focus {
    border-color: #D4AF37;
    box-shadow: none;
}

.linv-comment-form .form-control::placeholder {
    color: #5D5048;
    opacity: 0.6;
}

.linv-footer {
    background-color: #FDFBF9;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(111, 78, 55, 0.1);
}

.linv-footer-title {
    font-family: 'Playfair Display', serif;
    color: #6F4E37;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.linv-btn-subscribe {
    width: 100%;
    padding: 12px 24px;
    background: #6F4E37;
    color: #FFFBF2;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s ease;
}

.linv-btn-subscribe:hover {
    background: #2D241E;
}

.breadcrumb-item a {
    color: #D4AF37;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #E0D5C1;
}

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

@media (max-width: 991.98px) {
    .linv-hero-detail {
        min-height: 350px;
        padding: 80px 0 40px;
    }

    .linv-sidebar {
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .linv-main-content {
        padding: 20px !important;
    }

    .reply-container {
        margin-left: 20px !important;
    }
}

/* ===== PAGE TEMPLATE: music ===== */
.linv-header {
    background-color: #FDFBF9;
    border-bottom: 1px solid rgba(111, 78, 55, 0.12);
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
}

.linv-header .linv-logo-img {
    max-width: 48px;
    height: auto;
    object-fit: contain;
    display: inline-block;
}

.linv-header .nav-link {
    font-family: 'Inter', sans-serif;
    color: #2D241E !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.linv-header .nav-link:hover {
    color: #D4AF37 !important;
    transform: translateY(-1px);
}

.linv-detail-wrapper {
    background-color: #FDFBF9;
    font-family: 'Inter', sans-serif;
}

.linv-hero-detail {
    min-height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #FFFBF2;
    padding: 100px 0 60px;
}

.linv-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #FFFBF2;
}

.linv-hero-meta {
    font-size: 0.9rem;
    opacity: 0.9;
}

.linv-hero-meta .meta-item i {
    color: #D4AF37;
}

.linv-main-content {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    border: 1px solid rgba(111, 78, 55, 0.08);
}

.content-rich-text {
    color: #2D241E;
    line-height: 1.8;
    font-size: 1.1rem;
}

.content-rich-text h2,
.content-rich-text h3 {
    font-family: 'Playfair Display', serif;
    color: #6F4E37;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-rich-text p {
    margin-bottom: 1.5rem;
}

.share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #6F4E37;
    color: #FFFBF2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-link:hover {
    background: #E67E22;
    transform: translateY(-3px);
    color: #FFFBF2;
}


.widget-title {
    font-family: 'Playfair Display', serif;
    color: #6F4E37;
    font-weight: 700;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #D4AF37;
}

.recent-post-link {
    color: #2D241E;
    transition: color 0.3s ease;
}

.recent-post-link:hover {
    color: #E67E22;
}

.recent-post-link .post-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}


.linv-btn-primary {
    background: #6F4E37;
    color: #FFFBF2;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.linv-btn-primary:hover {
    background: #2D241E;
    box-shadow: 0 4px 15px rgba(111, 78, 55, 0.2);
}

.linv-btn-outline {
    background: transparent;
    color: #6F4E37;
    border: 1px solid #6F4E37;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.linv-btn-outline:hover {
    background: #6F4E37;
    color: #FFFBF2;
}


.comment-card-main,
.reply-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(111, 78, 55, 0.1);
}

.comment-avatar-img,
.reply-avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #D4AF37;
}

.reply-avatar-img {
    width: 45px;
    height: 45px;
}

.author-name,
.reply-author-name {
    font-family: 'Playfair Display', serif;
    color: #6F4E37;
    font-weight: 700;
}

.comment-timestamp {
    font-size: 0.8rem;
    color: #888;
}

.comment-body-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5D5048;
}

.btn-comment-link {
    background: none;
    border: none;
    color: #6F4E37;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0;
    transition: color 0.3s ease;
}

.btn-comment-link:hover {
    color: #E67E22;
}

.btn-comment-link.text-primary {
    color: #D4AF37 !important;
}

.linv-comment-form .form-control {
    background: #FFF;
    border: 1px solid rgba(111, 78, 55, 0.2);
    border-radius: 4px;
    padding: 12px;
}

.linv-comment-form .form-control:focus {
    border-color: #D4AF37;
    box-shadow: none;
}

.linv-comment-form .form-control::placeholder {
    color: #5D5048;
    opacity: 0.6;
}

.linv-footer {
    background-color: #FDFBF9;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(111, 78, 55, 0.1);
}

.linv-footer-title {
    font-family: 'Playfair Display', serif;
    color: #6F4E37;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.linv-btn-subscribe {
    width: 100%;
    padding: 12px 24px;
    background: #6F4E37;
    color: #FFFBF2;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s ease;
}

.linv-btn-subscribe:hover {
    background: #2D241E;
}

.breadcrumb-item a {
    color: #D4AF37;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #E0D5C1;
}

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

@media (max-width: 991.98px) {
    .linv-hero-detail {
        min-height: 350px;
        padding: 80px 0 40px;
    }

    .linv-sidebar {
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .linv-main-content {
        padding: 20px !important;
    }

    .reply-container {
        margin-left: 20px !important;
    }
}

/* ===== PAGE TEMPLATE: culture-society ===== */
.linv-header {
    background-color: #FDFBF9;
    border-bottom: 1px solid rgba(111, 78, 55, 0.12);
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
}

.linv-header .linv-logo-img {
    max-width: 48px;
    height: auto;
    object-fit: contain;
    display: inline-block;
}

.linv-header .nav-link {
    font-family: 'Inter', sans-serif;
    color: #2D241E !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.linv-header .nav-link:hover {
    color: #D4AF37 !important;
    transform: translateY(-1px);
}

.linv-detail-wrapper {
    background-color: #FDFBF9;
    font-family: 'Inter', sans-serif;
}

.linv-hero-detail {
    min-height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #FFFBF2;
    padding: 100px 0 60px;
}

.linv-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #FFFBF2;
}

.linv-hero-meta {
    font-size: 0.9rem;
    opacity: 0.9;
}

.linv-hero-meta .meta-item i {
    color: #D4AF37;
}

.linv-main-content {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    border: 1px solid rgba(111, 78, 55, 0.08);
}

.content-rich-text {
    color: #2D241E;
    line-height: 1.8;
    font-size: 1.1rem;
}

.content-rich-text h2,
.content-rich-text h3 {
    font-family: 'Playfair Display', serif;
    color: #6F4E37;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-rich-text p {
    margin-bottom: 1.5rem;
}

.share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #6F4E37;
    color: #FFFBF2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-link:hover {
    background: #E67E22;
    transform: translateY(-3px);
    color: #FFFBF2;
}


.widget-title {
    font-family: 'Playfair Display', serif;
    color: #6F4E37;
    font-weight: 700;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #D4AF37;
}

.recent-post-link {
    color: #2D241E;
    transition: color 0.3s ease;
}

.recent-post-link:hover {
    color: #E67E22;
}

.recent-post-link .post-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}


.linv-btn-primary {
    background: #6F4E37;
    color: #FFFBF2;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.linv-btn-primary:hover {
    background: #2D241E;
    box-shadow: 0 4px 15px rgba(111, 78, 55, 0.2);
}

.linv-btn-outline {
    background: transparent;
    color: #6F4E37;
    border: 1px solid #6F4E37;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.linv-btn-outline:hover {
    background: #6F4E37;
    color: #FFFBF2;
}


.comment-card-main,
.reply-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(111, 78, 55, 0.1);
}

.comment-avatar-img,
.reply-avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #D4AF37;
}

.reply-avatar-img {
    width: 45px;
    height: 45px;
}

.author-name,
.reply-author-name {
    font-family: 'Playfair Display', serif;
    color: #6F4E37;
    font-weight: 700;
}

.comment-timestamp {
    font-size: 0.8rem;
    color: #888;
}

.comment-body-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5D5048;
}

.btn-comment-link {
    background: none;
    border: none;
    color: #6F4E37;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0;
    transition: color 0.3s ease;
}

.btn-comment-link:hover {
    color: #E67E22;
}

.btn-comment-link.text-primary {
    color: #D4AF37 !important;
}

.linv-comment-form .form-control {
    background: #FFF;
    border: 1px solid rgba(111, 78, 55, 0.2);
    border-radius: 4px;
    padding: 12px;
}

.linv-comment-form .form-control:focus {
    border-color: #D4AF37;
    box-shadow: none;
}

.linv-comment-form .form-control::placeholder {
    color: #5D5048;
    opacity: 0.6;
}

.linv-footer {
    background-color: #FDFBF9;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(111, 78, 55, 0.1);
}

.linv-footer-title {
    font-family: 'Playfair Display', serif;
    color: #6F4E37;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.linv-btn-subscribe {
    width: 100%;
    padding: 12px 24px;
    background: #6F4E37;
    color: #FFFBF2;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s ease;
}

.linv-btn-subscribe:hover {
    background: #2D241E;
}

.breadcrumb-item a {
    color: #D4AF37;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #E0D5C1;
}

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

@media (max-width: 991.98px) {
    .linv-hero-detail {
        min-height: 350px;
        padding: 80px 0 40px;
    }

    .linv-sidebar {
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .linv-main-content {
        padding: 20px !important;
    }

    .reply-container {
        margin-left: 20px !important;
    }
}

/* ===== PAGE TEMPLATE: ai ===== */
.linv-header {
    background-color: #FDFBF9;
    border-bottom: 1px solid rgba(111, 78, 55, 0.12);
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
}

.linv-header .linv-logo-img {
    max-width: 48px;
    height: auto;
    object-fit: contain;
    display: inline-block;
}

.linv-header .nav-link {
    font-family: 'Inter', sans-serif;
    color: #2D241E !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.linv-header .nav-link:hover {
    color: #D4AF37 !important;
    transform: translateY(-1px);
}

.linv-detail-wrapper {
    background-color: #FDFBF9;
    font-family: 'Inter', sans-serif;
}

.linv-hero-detail {
    min-height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #FFFBF2;
    padding: 100px 0 60px;
}

.linv-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #FFFBF2;
}

.linv-hero-meta {
    font-size: 0.9rem;
    opacity: 0.9;
}

.linv-hero-meta .meta-item i {
    color: #D4AF37;
}

.linv-main-content {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    border: 1px solid rgba(111, 78, 55, 0.08);
}

.content-rich-text {
    color: #2D241E;
    line-height: 1.8;
    font-size: 1.1rem;
}

.content-rich-text h2,
.content-rich-text h3 {
    font-family: 'Playfair Display', serif;
    color: #6F4E37;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-rich-text p {
    margin-bottom: 1.5rem;
}

.share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #6F4E37;
    color: #FFFBF2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-link:hover {
    background: #E67E22;
    transform: translateY(-3px);
    color: #FFFBF2;
}


.widget-title {
    font-family: 'Playfair Display', serif;
    color: #6F4E37;
    font-weight: 700;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #D4AF37;
}

.recent-post-link {
    color: #2D241E;
    transition: color 0.3s ease;
}

.recent-post-link:hover {
    color: #E67E22;
}

.recent-post-link .post-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}


.linv-btn-primary {
    background: #6F4E37;
    color: #FFFBF2;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.linv-btn-primary:hover {
    background: #2D241E;
    box-shadow: 0 4px 15px rgba(111, 78, 55, 0.2);
}

.linv-btn-outline {
    background: transparent;
    color: #6F4E37;
    border: 1px solid #6F4E37;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.linv-btn-outline:hover {
    background: #6F4E37;
    color: #FFFBF2;
}


.comment-card-main,
.reply-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(111, 78, 55, 0.1);
}

.comment-avatar-img,
.reply-avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #D4AF37;
}

.reply-avatar-img {
    width: 45px;
    height: 45px;
}

.author-name,
.reply-author-name {
    font-family: 'Playfair Display', serif;
    color: #6F4E37;
    font-weight: 700;
}

.comment-timestamp {
    font-size: 0.8rem;
    color: #888;
}

.comment-body-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5D5048;
}

.btn-comment-link {
    background: none;
    border: none;
    color: #6F4E37;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0;
    transition: color 0.3s ease;
}

.btn-comment-link:hover {
    color: #E67E22;
}

.btn-comment-link.text-primary {
    color: #D4AF37 !important;
}

.linv-comment-form .form-control {
    background: #FFF;
    border: 1px solid rgba(111, 78, 55, 0.2);
    border-radius: 4px;
    padding: 12px;
}

.linv-comment-form .form-control:focus {
    border-color: #D4AF37;
    box-shadow: none;
}

.linv-comment-form .form-control::placeholder {
    color: #5D5048;
    opacity: 0.6;
}

.linv-footer {
    background-color: #FDFBF9;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(111, 78, 55, 0.1);
}

.linv-footer-title {
    font-family: 'Playfair Display', serif;
    color: #6F4E37;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.linv-btn-subscribe {
    width: 100%;
    padding: 12px 24px;
    background: #6F4E37;
    color: #FFFBF2;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s ease;
}

.linv-btn-subscribe:hover {
    background: #2D241E;
}

.breadcrumb-item a {
    color: #D4AF37;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #E0D5C1;
}

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

@media (max-width: 991.98px) {
    .linv-hero-detail {
        min-height: 350px;
        padding: 80px 0 40px;
    }

    .linv-sidebar {
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .linv-main-content {
        padding: 20px !important;
    }

    .reply-container {
        margin-left: 20px !important;
    }
}