/* FONTS */


/* VARIABLES */
:root {
    --c-dark: #1d1916;
    --c-brand: #7b3f2d;
    --c-brand-light: #9e5a45;
    --c-brand-rgb: 123, 63, 45;
    --c-body: #645a54;
    --c-surface: #f5efe8;
    --c-surface-strong: #eadfd4;
    --font-base: "Manrope", sans-serif;
    --font-heading: "Fraunces", serif;
    --box-shadow: 0px 15px 25px rgba(0,0,0,0.08);
    --transition: all 0.5s ease;
}

/* RESET & HELPERS */
body {
    font-family: var(--font-base);
    line-height: 1.75;
    color: var(--c-body);
    overflow-x: hidden;
    background-color: #fcfaf7;
}

h1, h2, h3,h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--c-dark);
    letter-spacing: -0.02em;
}

p,
li,
label,
input,
textarea,
button,
.nav-link,
.dropdown-item,
.btn {
    font-family: var(--font-base);
}

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

a:hover {
    color: var(--c-brand-light);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding-top: 140px;
    padding-bottom: 140px;
}

.min-vh-40 {
    min-height: 40vh;
}

.theme-shadow {
    box-shadow: var(--box-shadow);
}

/* IMAGE ZOOM */
.image-zoom {
    position: relative;
    /* overflow: hidden; */
}

.image-zoom-wrapper {
    overflow: hidden;
    position: relative;
}

.image-zoom-wrapper img{
     transition: var(--transition);
}

.image-zoom:hover .image-zoom-wrapper img {
    transform: scale(1.03);
}


/* NAVBAR */
.navbar {
    box-shadow: var(--box-shadow);
    background-color: rgba(252, 250, 247, 0.96) !important;
    backdrop-filter: blur(12px);
}

.navbar .container {
    gap: 12px;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
}

.site-logo {
    width: 100px;
    height: auto;
    margin-right: 0;
    padding-right: 0;
}

.navbar-toggler {
    border: 0;
    padding: 6px;
}

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

.site-navbar-collapse {
    flex-grow: 1;
}

.navbar-auth {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-nav .nav-link {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--c-dark);
}

.navbar-nav .nav-link.active {
    color: var(--c-brand);
}


/* BTN */
.btn {
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 0;
    padding: 10px 24px;
    letter-spacing: 0.08em;
}

.btn-brand {
    background-color: var(--c-brand);
    border-color: var(--c-brand);
    color: white;
}

.btn-brand:hover {
    background-color: var(--c-brand-light);
    border-color: var(--c-brand-light);
    color: white;
}

.btn-outline-brand {
    color: var(--c-brand);
    border: 1px solid var(--c-brand);
    background-color: transparent;
}

.btn-outline-brand:hover {
    background-color: var(--c-brand);
    border-color: var(--c-brand);
    color: white;
}



/* SECTION TITLE */
.section-title {
    margin-bottom: 60px;
}

.section-title .line {
    width: 60px;
    height: 4px;
    background-color: var(--c-brand);
    margin: 16px auto 24px auto;
}

.section-title p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.errorlist {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.error-message {
    color: red;
}
/* ICONBOX */
.iconbox {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--c-brand-rgb), 0.1);
    color: var(--c-brand);
    font-size: 34px;
    flex: none;
}

/* SERVICE */
.service {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service::after {
    content: "";
    width: 40px;
    height: 40px;
    background: rgba(var(--c-brand-rgb), 0.2);
    position: absolute;
    bottom: 0;
    right: 0;
    transition: var(--transition);
}


.service:hover::after {
    width: 100%;
    height: 100%;
    background: var(--c-brand);
    z-index: -1;
}

.service:hover h5,
.service:hover p {
    color: white;
}

.service:hover .iconbox {
    background-color: rgba(255,255,255,0.2);
    color: white;
}

/* COUNTER */
#counter {
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.8), rgba(var(--c-brand-rgb), 0.8)), url(../images/wonder.jpeg);
    background-position: center;
    background-size: cover;
}

/* PORTFOLIO */
.portfolio-item .iconbox {
    background-color: var(--c-brand);
    color: white;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.portfolio-item:hover .iconbox {
    opacity: 1;
    top: 50%;
}

/* REVIEW */
.review small {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--c-brand);
}

.review-head {
    position: relative;
}

.review-head::after {
    content: "";
    width: 28px;
    height: 28px;
    position: absolute;
    bottom: -14px;
    background-color: white;
    transform: rotate(45deg);
}

/* TEAM */
.team-member-content {
    background-color: var(--c-brand);
    position: absolute;
    bottom: -24px;
    left: 50%;
    width: calc(100% - 50px);
    transform: translateX(-50%);
    padding: 24px;
    transition: var(--transition);
    opacity: 0;
}

.team-member:hover .team-member-content {
    opacity: 1;
    bottom: 24px;
}

/* CONTACT */
#contact {
    position: relative;
    z-index: 2;
}

#contact::after {
    content: "";
    width: 100%;
    height: 70%;
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.8), rgba(var(--c-brand-rgb), 0.8)), url(../images/wonder.jpeg);
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#contact .form-control {
    border-radius: 0;
}

#contact .form-control:focus {
    box-shadow: none;
    border-color: var(--c-brand);
}

/* FOOTER */
footer {
    padding-top: 30px;
    background: linear-gradient(180deg, #241915 0%, #17100d 100%);
}



.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom {
    padding-top: 40px;
    padding-bottom: 80px;
}


footer li,
footer p,
footer a {
    color: rgba(255,255,255,0.7);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer .line {
    width: 40px;
    height: 4px;
    background-color: var(--c-brand);
    margin-top: 12px;
    margin-bottom: 24px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 100px;
}

.social-icons a:hover {
    background-color: var(--c-brand);
    color: white;
}

.color-overlay {
    position: relative;
    display: inline-block;
  }
  
  .color-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #4e57d4;
    mix-blend-mode: multiply; /* You can experiment with other blend modes */
  }

/* style.css */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(221, 82, 82, 0.493);
    z-index: 1000;
    display: none;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #f3f3f3;
    border-top: 5px solid #4d0a0b;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.btn-unstyled {
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    outline: none;
}

.profile-picture-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: green; /* Green circle background */
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-picture-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropdown-arrow {
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    margin-left: 5px; /* Add some space between the photo and the arrow */
}

.dropdown-menu .dropdown-item:hover {
    background-color: transparent; /* Remove background color on hover */
}


#typing-text {
    min-height: 2.3em; /* Adjust the height as needed */
    overflow: hidden;
}

.welcome-message {
    position: absolute;
    top: 20px;
    left: 180px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

.preview-img {
    max-width: 200px; /* Adjust the maximum width as needed */
    max-height: 200px; /* Adjust the maximum height as needed */
}


    /* Add CSS for previous and next buttons */
    .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        padding: 16px;
        margin-top: -22px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .carousel-item img {
        max-width: 80%;
        height: auto;
        border-radius: 10%; /* Add rounded corners */
        display: block; /* Ensures the image is treated as a block element */
        margin: 0 auto; /* Center the image horizontally */
    }

    .next {
        right: 0;
        border-radius: 3px 0 0 3px;
    }

    .prev:hover, .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

    /* CSS for thumbnails */
    .banner-thumbnail {
        width: 100px;
        height: auto;
        cursor: pointer;
        margin-bottom: 10px;
    }

    .banner-thumbnail:hover {
        opacity: 0.7;
    }
    @media (max-width: 768px) {
    /* Apply grid layout for smaller devices */
    #thumbnails .row {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }
}

.rounded-image {
    position: absolute;
    top: -30px; /* Adjust as needed */
    left: -30px; /* Adjust as needed */
    z-index: 1; /* Ensure the image is above the text */
}

.rounded-image img {
    width: 80px; /* Adjust size as needed */
    height: 80px; /* Adjust size as needed */
}

.president-message {
    padding-left: 80px; /* Adjust to accommodate the width of the image */
}

.hero-actions {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.hero-actions .btn {
    margin: 0;
}

.article-meta,
.author-info {
    gap: 16px;
}

.article-content,
.card-text,
.text-secondary,
.footer-bottom p,
.footer-top li,
.footer-top a {
    overflow-wrap: anywhere;
}

.footer-bottom {
    padding-bottom: 40px;
}

.footer-bottom p {
    margin-bottom: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-brand);
}

.eyebrow::before {
    content: "";
    width: 38px;
    height: 1px;
    background-color: rgba(var(--c-brand-rgb), 0.55);
}

.feature-card {
    height: 100%;
    padding: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(var(--c-brand-rgb), 0.12);
    box-shadow: var(--box-shadow);
}

.feature-card h3,
.feature-card h4 {
    margin-bottom: 12px;
}

.soft-panel {
    background: linear-gradient(180deg, rgba(234, 223, 212, 0.55) 0%, rgba(255, 255, 255, 0.92) 100%);
    border: 1px solid rgba(var(--c-brand-rgb), 0.12);
    box-shadow: var(--box-shadow);
}

.stat-chip {
    padding: 22px 24px;
    border: 1px solid rgba(var(--c-brand-rgb), 0.12);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--box-shadow);
}

.stat-chip strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--c-dark);
}

.stat-chip span {
    font-size: 0.92rem;
    color: var(--c-body);
}

.page-shell {
    position: relative;
    overflow: hidden;
}

.page-shell::before {
    content: "";
    position: absolute;
    inset: 0 0 auto auto;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(var(--c-brand-rgb), 0.12) 0%, rgba(var(--c-brand-rgb), 0) 70%);
    pointer-events: none;
}

.editorial-card {
    height: 100%;
    padding: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 239, 232, 0.92) 100%);
    border: 1px solid rgba(var(--c-brand-rgb), 0.12);
    box-shadow: var(--box-shadow);
}

.editorial-card p:last-child,
.feature-card p:last-child,
.soft-panel p:last-child {
    margin-bottom: 0;
}

.hero-panel {
    max-width: 680px;
    padding: 40px 42px;
    background: linear-gradient(180deg, rgba(20, 13, 10, 0.68) 0%, rgba(20, 13, 10, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.hero-stage {
    position: relative;
    max-width: 1100px;
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-panel-centered {
    position: relative;
    max-width: 760px;
    z-index: 2;
}

.hero-panel-centered::before {
    content: "";
    position: absolute;
    inset: -18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.hero-panel h1,
.hero-panel p {
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.hero-intro {
    max-width: 620px;
    font-size: 1.08rem;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-highlights-centered {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlights span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.09);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.94);
}

.hero-actions-centered {
    justify-content: center;
}

.hero-float {
    position: absolute;
    z-index: 1;
    width: 230px;
    padding: 22px;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(var(--c-brand-rgb), 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    animation: heroFloat 7s ease-in-out infinite;
}

.hero-float-left {
    left: 0;
    top: 16%;
}

.hero-float-right {
    right: 0;
    bottom: 14%;
    animation-delay: 1.4s;
}

.hero-float-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-brand);
}

.hero-float strong {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    line-height: 1.15;
    color: var(--c-dark);
}

.hero-float small {
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--c-body);
}

.hero-pulse-row {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-pulse-row span {
    position: relative;
    padding-left: 18px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.86);
}

.hero-pulse-row span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    transform: translateY(-50%);
    animation: heroPulse 2.4s ease-in-out infinite;
}

.hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    animation: heroCue 2.8s ease-in-out infinite;
}

.hero-scroll-cue span {
    position: relative;
    width: 26px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 20px;
}

.hero-scroll-cue span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 9px;
    width: 4px;
    height: 8px;
    border-radius: 999px;
    background: #fff;
    transform: translateX(-50%);
    animation: heroScrollDot 1.8s ease-in-out infinite;
}

.hero-scroll-cue small {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

@keyframes heroFloat {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes heroPulse {
    0%,
    100% {
        opacity: 0.7;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.35);
    }
}

@keyframes heroCue {
    0%,
    100% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes heroScrollDot {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0px);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(14px);
    }
}

.trail-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(var(--c-brand-rgb), 0.1);
    box-shadow: var(--box-shadow);
}

.trail-card img {
    width: 100%;
    height: auto;
    display: block;
}

.trail-card .trail-card-body {
    padding: 24px;
}

.trail-kicker {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-brand);
}

.leader-note {
    position: relative;
    padding: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 239, 232, 0.92) 100%);
    border: 1px solid rgba(var(--c-brand-rgb), 0.12);
    box-shadow: var(--box-shadow);
}

.leader-note::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--c-brand) 0%, rgba(var(--c-brand-rgb), 0.3) 100%);
}

.leader-note img {
    width: 108px;
    height: 108px;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.legal-shell {
    position: relative;
}

.legal-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(245, 239, 232, 0.8) 0%, rgba(252, 250, 247, 0) 45%);
    pointer-events: none;
}

.legal-card {
    position: relative;
    padding: 36px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(var(--c-brand-rgb), 0.12);
    box-shadow: var(--box-shadow);
}

.legal-card h2,
.legal-card h3 {
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-card h2:first-child,
.legal-card h3:first-child {
    margin-top: 0;
}

.legal-card ul {
    padding-left: 20px;
}

.pagination {
    flex-wrap: wrap;
    gap: 8px;
}

.page-link {
    border-radius: 0;
}

ul.thumb{
    margin:0 auto;
    padding:0;
    float: left;
  }
  ul.thumb li{
    list-style: none;
    margin: 10px;
  }
  ul.thumb li img{
    width: 80px;
    height: 80px;
    border: 1px solid gray;
  }

@media (max-width: 991.98px) {
    .section-padding {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .site-navbar-collapse {
        margin-top: 8px;
        padding-top: 16px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .navbar-nav {
        gap: 6px;
    }

    .navbar-auth {
        margin-top: 16px;
        justify-content: flex-start;
    }

    .welcome-message {
        left: 24px;
        right: 24px;
        top: 88px;
        font-size: 14px;
    }

    .rounded-image {
        position: static;
        top: auto;
        left: auto;
        margin-bottom: 16px;
    }

    .president-message {
        padding-left: 0;
    }

    .hero-stage {
        min-height: auto;
    }

    .hero-panel-centered {
        max-width: 100%;
    }

}

@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    .section-padding {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .display-1 {
        font-size: clamp(2.4rem, 9vw, 4rem);
        line-height: 1.1;
    }

    .display-4 {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.15;
    }

    .section-title {
        margin-bottom: 36px;
    }

    .hero-actions {
        display: grid;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-actions .btn,
    .payment-holder .btn,
    .d-grid .btn {
        width: 100%;
        padding: 12px 18px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .article-meta > div,
    .author-info {
        width: 100%;
    }

    .author-info {
        align-items: flex-start !important;
    }

    .footer-top,
    .footer-bottom {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
    }

    .welcome-message {
        position: static;
        margin-top: 24px;
        font-size: 14px;
    }

    .profile-picture-container {
        width: 44px;
        height: 44px;
    }

    .site-logo {
        width: 84px;
    }

    .feature-card,
    .soft-panel,
    .stat-chip,
    .editorial-card,
    .hero-panel,
    .leader-note,
    .legal-card {
        padding: 22px;
    }

    .hero-highlights {
        gap: 10px;
    }

    .hero-highlights span {
        width: 100%;
        justify-content: center;
    }

    .hero-panel-centered::before {
        inset: -10px;
    }

    .hero-pulse-row {
        gap: 12px;
    }

    .hero-pulse-row span {
        width: 100%;
        padding-left: 0;
    }

    .hero-pulse-row span::before {
        display: none;
    }

    .carousel-item img {
        max-width: 100%;
        border-radius: 16px;
    }
}
  .author-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  .author-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
  }
  .article-detail {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .article-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center; /* Center the heading */
  }
  .article-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    text-align: center; /* Center the description */
  }
  .article-body {
    font-size: 16px;
    line-height: 1.6;
  }
  .article-details {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  .article-details p {
    margin: 0;
    font-size: 16px;
    color: #777;
  }