:root {
    --bg-ivory: #fff4c2; /* warm ivory / candle glow */
    --navy-dark: #071c3f; /* deep navy from logo text */
    --navy-soft: #0e2a5a;
    --gold-muted: #e6c97a;
    --gold-dark: #d79d00; /* elegant muted gold */
    --text-dark: #1c1c1c;
    --text-muted: #5f5f5f;
    --white: #ffffff;
}
body {
    font-family: "Inter", sans-serif;
    background-color: var(--cream);
    color: var(--text);
    scroll-behavior: smooth;
}
body,
html {
    width: 100%;
    overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
    font-family: "Playfair Display", serif;
    color: var(--dark);
}

section {
    padding: 100px 0;
}

/* Navbar */
.navbar-luxury {
    transition: all 0.4s ease;
    background: var(--bg-ivory);
    box-shadow: 0 10px 30px rgba(7, 28, 63, 0.08);
}

.navbar-luxury.scrolled {
    background: var(--bg-ivory);
    box-shadow: 0 10px 30px rgba(7, 28, 63, 0.08);
}

.navbar-brand img {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.nav-link {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy-dark);
    margin-left: 28px;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background: var(--gold-muted);
    bottom: -6px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}
.brand-logo {
    width: 100px; /* desktop width */

    object-fit: contain;
}

/* Mobile refinement */
@media (max-width: 768px) {
    .brand-logo {
        width: 120px;
    }
}

.hero-split {
    height: 100vh;
     background-color: var(--bg-ivory);
}

/* Left Side - Solid Background */
.hero-left {
    height: 100%;
    background-color: var(--bg-ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.hero-text {
    max-width: 500px;
}

.hero-title {
    color: var(--navy-dark);
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-hero {
    display: inline-block;
    background-color:var(--navy-dark); 
    color: var(--gold-muted);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: var(--navy-dark);
    color: var(--gold-muted);
}

/* Right Side - Background Image with Overlay */
.hero-right {
    height: 100%;
    background: url("../images/9.png") right/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 28, 63, 0.4); /* navy-dark overlay */
}
/* ---------- HERO JUMP PULSE ---------- */

/* ---------- HERO TITLE BRUSH EFFECT ---------- */
.hero-title {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.hero-title::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--bg-ivory) 50%,
        transparent 100%
    );
    animation: brushReveal 3s ease forwards infinite;
}

/* Text fade-in synced */
.hero-title {
    opacity: 0;
    animation: textAppear 0.6s ease forwards;
    animation-delay: 0.3s;
}

@keyframes brushReveal {
    to {
        left: 100%;
    }
}

@keyframes textAppear {
    to {
        opacity: 1;
    }
}

/* ---------- HERO SUBTITLE MATCHING ANIMATION ---------- */
.hero-subtitle {
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    animation: subtitleReveal 0.9s ease forwards;
    animation-delay: 0.5s;
}

@keyframes subtitleReveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ---------- LIVE CTA ANIMATION ---------- */
/* ---------- MODERN LIVE CTA ANIMATION ---------- */

/* Ambient idle motion */
.btn-hero {
    position: relative;
    overflow: hidden;
    animation: btnFloatModern 4s cubic-bezier(.4,0,.2,1) infinite;
}

/* Subtle floating */
@keyframes btnFloatModern {
    0% {
        transform: translateY(0) scale(1);
    }
    20% {
        transform: translateY(-10px) scale(1.05);
    }
    40% {
        transform: translateY(0) scale(1);
    }
    60% {
        transform: translateY(-5px) scale(1.02);
    }
    80% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

/* Light sweep (sheen) */
.btn-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255,255,255,0.35),
        transparent 70%
    );
    animation: btnSheen 3.5s ease-in-out infinite;
}

/* Sheen animation */
@keyframes btnSheen {
    0% {
        left: -120%;
    }
    50% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}

.btn-hero {
    position: relative;
}

/* Small white dot */
.btn-hero::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;   /* make it circular */
    background-color: var(--gold-muted); /* white dot */
    right: 8px;           /* distance from right edge */
    bottom: 8px;          /* distance from bottom edge */
    pointer-events: none;
    opacity: 0.9;
    animation: dotPulse 1.4s ease-in-out infinite;
}

/* Subtle pulsing animation */
@keyframes dotPulse {
    
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* Hover interaction */
.btn-hero:hover {
    animation-play-state: paused;
}

.btn-hero:hover::after {
    animation-play-state: paused;
}


/* Product Cards */
.product-card img {
    transition: transform 0.6s ease;
}
.product-card:hover img {
    transform: scale(1.08);
}

/* Why Choose */
.feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Gallery */
.gallery img {
    border-radius: 16px;
    transition: all 0.4s ease;
}
.gallery img:hover {
    transform: scale(1.04);
}

/* Testimonials */
.testimonial {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Footer */
/* Footer */
.footer-section {
    background-color: var(--navy-dark);
    padding: 70px 0 50px;
    color: var(--bg-ivory);
}

.footer-content {
    max-width: 520px;
    margin: 0 auto;
}

/* Brand */
.footer-brand {
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: var(--gold-muted);
    margin-bottom: 10px;
}

/* Tagline */
.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 244, 194, 0.75);
    margin-bottom: 25px;
}

/* Social Icons */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 30px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(230, 201, 122, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-muted);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--gold-muted);
    color: var(--navy-dark);
}

/* Divider */
.footer-divider {
    width: 60px;
    height: 1px;
    background-color: rgba(230, 201, 122, 0.4);
    margin: 0 auto 20px;
}

/* Copyright */
.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 244, 194, 0.6);
}
.blog-header {
    text-align: center;
    padding: 120px 0 80px;
}

.blog-tag {
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--gold-muted);
}

.blog-header h1 {
    font-size: 3rem;
    color: var(--navy-dark);
    margin: 20px 0;
}

.blog-header p {
    color: var(--text-muted);
    max-width: 520px;
    margin: auto;
}

/* Featured Blog */
.blog-featured {
    padding-bottom: 100px;
}

.featured-card {
    display: flex;
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
}

.featured-image {
    flex: 1;
    background: url("../images/10.png") center/cover no-repeat;
}

.featured-content {
    flex: 1;
    padding: 60px;
}

.featured-content span {
    color: var(--gold-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
}

.featured-content h2 {
    font-size: 2.2rem;
    color: var(--navy-dark);
    margin: 20px 0;
}

.featured-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px; /* space between text and arrow */
    font-weight: 400;
    color: var(--navy-soft); /* deep blue */
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;

    /* Align to right */
    margin-left: auto; /* pushes the link to the right in flex container */
}

.read-more i {
    transition: transform 0.3s ease;
    color: var(--gold-dark);
}

.read-more:hover {
    color: var(--gold-dark); /* change color on hover */
    border-bottom: 2px solid var(--gold-dark);
}

.read-more:hover i {
    transform: translateX(5px);
    color: var(--navy-soft); /* arrow slides right on hover */
}

/* Blog Grid */
/* Blog Header with Background Image */
.blog-header {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: url("../images/8.png") center/cover no-repeat;
}

.blog-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(7, 28, 63, 0.65), rgba(7, 28, 63, 0.65));
    z-index: 1;
}

.blog-header .container {
    position: relative;
    z-index: 2;
}

/* Text Styling */
.blog-header .blog-tag {
    color: var(--gold-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.blog-header h1 {
    font-size: 3rem;
    color: var(--bg-ivory);
    margin: 20px 0;
}

.blog-header p {
    color: rgba(255, 244, 194, 0.85);
    max-width: 520px;
    margin: auto;
    line-height: 1.6;
}

.blog-grid {
    padding-bottom: 120px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-content span {
    color: var(--gold-dark);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.blog-content h3 {
    color: var(--navy-dark);
    font-size: 1.3rem;
    margin: 15px 0;
}

.blog-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* .blog-content a {
  display: inline-block;
  margin-top: 20px;
  color: var(--navy-dark);
  font-weight: 600;
  text-decoration: none;
} */
/* Featured Blog – Simple Premium */

/* Text */
.featured-text {
    max-width: 520px;
}

.featured-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.featured-title {
    margin: 20px 0; /* spacing above and below */
    font-size: 2.5rem; /* adjust as needed */
    font-weight: 700; /* bold for featured post */
    line-height: 1.3;
}

.featured-title a {
    color: var(--navy-soft); /* deep blue */
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.featured-title a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px; /* small space below text */
    width: 0;
    height: 2px;
    background: var(--gold-dark); /* golden accent underline */
    transition: width 0.3s ease;
}

.featured-title a:hover {
    color: var(--gold-dark); /* lighter blue on hover */
}

.featured-title a:hover::after {
    width: 100%; /* underline expands on hover */
}

.featured-text p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Read Link */
.read-link {
    display: inline-block;
    margin-top: 30px;
    color: var(--navy-dark);
    text-decoration: none;
    font-weight: 600;
}

.read-link:hover {
    color: var(--navy-soft);
}

/* Image */
.featured-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
            border-radius: 20px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-detail-page {
    /* background-color: var(--bg-ivory); */
    padding: 120px 0 120px;
}

/* Breadcrumbs */
.blog-breadcrumbs {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.blog-breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
}

.blog-breadcrumbs span {
    color: var(--navy-dark);
}

/* Title */
.blog-title {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    color: var(--navy-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

/* Meta */
.blog-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.blog-meta a {
    color: var(--navy-soft);
    text-decoration: none;
}

/* Intro Image */
.blog-intro-image {
    margin-bottom: 32px;
}

.blog-intro-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Article */
.blog-article {
    font-family: "Inter", sans-serif;
    color: var(--text-dark);
}

.blog-article p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-article h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    color: var(--navy-dark);
    margin: 40px 0 16px;
}

.blog-sidebar {
    border: 1px solid #ddd;
    padding: 20px;
    background: #fff;
    border-radius: 6px;
    margin-top: 50px;
}

.blog-sidebar h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--navy-dark);
}

.related-article {
    display: flex;
    margin-bottom: 16px;
    align-items: flex-start;
}

.related-article img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    margin-right: 12px;
    border-radius: 4px;
}

.related-article .article-info {
    flex: 1;
}

.related-article .article-info a {
    font-size: 0.95rem;
    color: var(--navy-dark);
    font-weight: 500;
    text-decoration: none;
}

.related-article .article-info a:hover {
    color: var(--navy-soft);
}

.related-article .article-info span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.share-floating {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #0a2463; /* primary color */
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s;
    text-decoration: none;
}

.share-btn:hover {
    background-color: #3e92cc; /* secondary color */
    transform: scale(1.1);
}
.blog-sidebar h3 {
    font-size: 18px;
    margin: 28px 0 16px;
    font-weight: 600;
}

/* Categories */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Category Item */
.category-list li {
    margin-bottom: 12px;
}

/* Category Link */
.category-list a {
    display: block;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #3e3a32;
    background: linear-gradient(145deg, #faf8f3, #f1eadb);
    transition: all 0.35s ease;
    box-shadow: inset 0 0 0 1px rgba(184, 155, 94, 0.15);
}

/* Hover Effect */
.category-list a:hover {
    background: linear-gradient(145deg, #e9dcc4, #dfcfaa);
    color: #2e2616;
    transform: translateX(4px);
    box-shadow: 0 10px 25px rgba(184, 155, 94, 0.25);
}

/* Active Category (Optional) */
.category-list a.active {
    background: linear-gradient(145deg, #c9b07d, #b89b5e);
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(184, 155, 94, 0.35);
}
/* Sidebar Section */
.sidebar-section {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
}

/* Title */
.sidebar-section h3 {
    font-family: "Playfair Display", serif;
    font-size: 19px;
    font-weight: 500;
    color: #1f2a44;
    margin-bottom: 18px;
    position: relative;
}

/* Subtle underline */
.sidebar-section h3::after {
    content: "";
    width: 42px;
    height: 2px;
    background: var(--gold-muted);
    display: block;
    margin-top: 6px;
    border-radius: 2px;
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Individual Tag */
.tag {
    font-size: 13px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 30px;
    background: linear-gradient(145deg, #f8f4ec, #f1eadb);
    color: #5a4a2f;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.35s ease;
    box-shadow: inset 0 0 0 1px rgba(184, 155, 94, 0.25);
}

/* Hover Effect */
.tag:hover {
    background: linear-gradient(145deg, #e9dcc4, #dfcfaa);
    color: #3e321e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 155, 94, 0.25);
}

/* Active Tag (Optional) */
.tag.active {
    background: linear-gradient(145deg, #c9b07d, #b89b5e);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(184, 155, 94, 0.35);
}
.blog-title {
    margin: 10px 0; /* spacing above and below */
    font-size: 1.5rem; /* adjust as needed */
    font-weight: 600; /* semi-bold */
}

.blog-title a {
    color: var(--navy-dark); /* deep blue, adjust as needed */
    text-decoration: none;
    transition: all ease 0.3s;
}

.blog-title a:hover {
    color: var(--navy-soft); /* lighter blue on hover */
    transform: translateY(-2px); /* subtle lift effect */
    transition: all ease 0.3s; /* optional underline on hover */
}
.comments-wrapper {
    max-width: 800px; /* limit width of comments section */
    margin: 40px auto; /* center horizontally with spacing */
    padding: 20px; /* inner spacing */
    background-color: #f9f9f9; /* light background for contrast */
    border-radius: 12px; /* rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* subtle shadow */
}
.comments-wrapper {
    position: relative;
}

.comments-wrapper::before {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 40px; /* approximate height of the text */
    background-color: #f9f9f9; /* match container background */
    z-index: 10;
}

.comments-wrapper h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #0a2463;
    margin-bottom: 20px;
    text-align: center;
}

.fb-comments {
    width: 100% !important; /* ensure full width of container */
    min-height: 200px; /* optional min height */
    border-radius: 10px; /* affects outer iframe border */
    overflow: hidden;
}
/* =========================================
   GLOBAL RESPONSIVE ADJUSTMENTS
========================================= */

@media (max-width: 1200px) {
    section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .featured-content {
        padding: 40px;
    }
}

/* =========================================
   TABLET (≤ 992px)
========================================= */

@media (max-width: 992px) {
    /* Navbar */
    .nav-link {
        margin-left: 0;
        margin-bottom: 12px;
    }

    /* Hero Split */
    .hero-split {
        height: auto;
    }

    .hero-left,
    .hero-right {
        height: auto;
        min-height: 50vh;
        padding: 40px 30px;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    /* Featured Blog */
    .featured-card {
        flex-direction: column;
    }

    .featured-image {
        height: 300px;
    }

    .featured-content {
        padding: 35px;
    }

    /* Blog Header */
    .blog-header {
        height: 55vh;
        padding: 80px 0;
    }

    .blog-header h1 {
        font-size: 2.4rem;
    }

    /* Sidebar */
    .blog-sidebar {
        margin-top: 40px;
    }

    /* Floating Share Buttons */
    .share-floating {
        left: 10px;
    }
}

/* =========================================
   MOBILE (≤ 768px)
========================================= */

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    /* Navbar */
    .brand-logo {
        width: 100px;
    }

    /* Hero */
    .hero-left {
           padding: 120px 20px 50px;
    text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-right {
        min-height: 40vh;
    }

    /* Buttons */
    .btn-hero {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    /* Blog Header */
    .blog-header {
          height: 100%;
    padding: 120px 20px 50px;
    }

    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-header p {
        font-size: 0.95rem;
    }

    /* Blog Cards */
    .blog-card img {
        height: 200px;
    }

    .blog-content {
        padding: 22px;
    }

.blog-grid .row{
    flex-direction: column-reverse;
}
    /* Featured Title */
    .featured-title {
        font-size: 2rem;
    }

    /* Blog Detail */
    .blog-title {
        font-size: 1.8rem;
    }

    .blog-article p {
        font-size: 0.95rem;
    }

    /* Sidebar */
    .sidebar-section {
        padding: 20px;
    }

    /* Floating Share Buttons (Mobile UX) */
    .share-floating {
        top: auto;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
    }

    .share-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    /* Footer */
    .footer-content {
        padding: 0 20px;
    }
}

/* =========================================
   SMALL MOBILE (≤ 480px)
========================================= */

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .featured-title {
        font-size: 1.6rem;
    }

    .blog-header h1 {
        font-size: 1.7rem;
    }

    .blog-title {
        font-size: 1.6rem;
    }

    .featured-image {
        height: 240px;
    }

    .blog-card img {
        height: 180px;
    }

    .comments-wrapper {
        padding: 15px;
    }
}
