
/* General Base */
.luxury-article {
    background-color: #fff; /* The soft tint from the screenshot */
    color: #333;
    font-family: 'Inter', sans-serif;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.article-hero {
    /* padding-top: 40px; */
    text-align: center;
}
.article-hero .hero-image-wrap{
    padding: 0px;
}
.hero-image-wrap img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.hero-content {
    margin-top: -60px; /* Overlap effect */
    background: #fff;
    padding: 60px 40px;
    position: relative;
    z-index: 10;
}

.category-link a {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    color: #888;
    text-decoration: none;
}

.entry-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin: 20px 0;
    font-weight: 400;
}

/* The Drop Cap Effect */
.entry-content p:first-of-type::first-letter {
    font-family: 'Playfair Display', serif;
    float: left;
    font-size: 75px;
    line-height: 60px;
    padding-top: 4px;
    padding-right: 12px;
    padding-left: 3px;
    color: #1a1a1a;
}

/* Content Typography */
.entry-content {
    font-size: 18px;
    line-height: 1.8;
    background: #fff;
    padding: 0 40px 60px 40px;
}

.entry-content blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 24px;
    border-left: 3px solid #333;
    padding-left: 30px;
    margin: 40px 0;
}

/* Author Section */
.author-bio-section {
    display: flex;
    background: #fff;
    padding: 40px;
    margin-top: 40px;
    align-items: center;
    border-top: 1px solid #eee;
}

.author-avatar img {
    border-radius: 50%;
    margin-right: 30px;
}

/* Related Posts */
.related-posts-section {
    padding: 80px 0;
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.related-item h4 {
    margin-top: 15px;
    color: #000;
}
.related-item h4 a {
    color: #000;
}
/* Header Background Container */
.article-hero {
    background-color: #fff; /* The soft blue-grey tint */
    padding: 0px 0;
    text-align: center;
}

/* The Category Badge (Training) */
.category-link a {
    display: inline-block;
    background-color: #B18B67; /* The dark slate blue color */
    color: #ffffff !important;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2.5px; /* Wide spacing is key for premium look */
    padding: 6px 20px;
    margin-bottom: 25px;
    text-decoration: none;
    font-weight: 600;
}

/* The Main Title */
.entry-title {
    font-family: 'Playfair Display', serif; /* Classic High-End Serif */
    font-size: 64px; /* Large scale for impact */
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.1;
    margin: 0 auto 30px auto;
    max-width: 900px;
}

/* Author & Meta Section */
.author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
}

/* Author Image Circular */
.author-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    color: #1a1a1a;
    font-weight: 600;
}

/* Author Box Container */
.author-bio-section {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 50px;
    margin: 60px 0;
    border: 1px solid #eef2f4; /* Subtle border instead of harsh lines */
}

.author-avatar img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin-right: 40px;
}

.author-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.author-text .about-label {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    color: #999;
    display: block;
    margin-bottom: 15px;
}

.author-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

/* Social Icons in Author Box */
.author-socials a {
    margin-right: 15px;
    font-size: 14px;
    color: #1a1a1a;
    transition: opacity 0.3s;
}

.author-socials a:hover {
    opacity: 0.5;
}
/* Section Title */
.comments-title, .comment-reply-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 40px;
}

/* Form Layout (Two columns for Name/Email) */
.comment-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.comment-form-comment {
    grid-column: span 2;
}

/* Underline Input Style */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #d1d1d1;
    background: transparent;
    padding: 15px 0;
    font-size: 15px;
    transition: border-color 0.3s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-bottom: 1px solid #1a1a1a;
}

/* Premium Button */
.comment-form .submit {
    grid-column: span 2;
    background: #B18B67; /* The dark olive/grey from your screenshot */
    color: #fff;
    border: none;
    padding: 18px 45px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    width: fit-content;
    transition: background 0.3s;
}

.comment-form .submit:hover {
    background: #1a1a1a;
}

/* Checkboxes Styling */
.comment-form-cookies-consent {
    grid-column: span 2;
    font-size: 13px;
    color: #777;
}
.related-item h4 a{
    text-decoration: none;
}