/* assets/styles.css - Article Detail Page Styles */

:root {
    --primary-purple: #864ffe;
    --gray-text: #555;
    --light-gray: #f9f9f9;
    --border-color: #ddd;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.header-nav {
  
    margin: 20px auto 0;
    padding: 0 15px;
    text-align: right;
    font-size: 0.9rem;
}

.header-nav a {
    color: var(--gray-text);
    text-decoration: none;
    margin: 0 5px;
}

.article-container {
  
    margin: 30px auto;
    padding: 0 15px;
}

/* --- Tags and Categories Row --- */
.article-tags-row {
    margin-bottom: 25px;
    text-align: center;
}

.article-category-badge {
    background-color: rgb(232, 251, 198); /* Light green/yellow color from the screenshot */
    color: #000;
    padding: 6px 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 10px;
    display: inline-block;
}

.article-keyword-tag {
    background-color: var(--primary-purple);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    display: inline-block;
    margin-top: 5px;
}

/* --- Title and Author --- */
.article-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.article-author-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-bottom: 10px;
}
.author-name {
    display: flex;
    align-items: center; 
    gap: 8px; 
}
.author-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
}
.authorList
{
    color: #333;
}
/* --- Main Image --- */
.article-image-wrapper {
    margin: 10px 0;
    text-align: center;
}

.article-main-image {
    width: 90%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-caption {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 10px;
}
.publish-date{
text-align: center;
display: block;
margin-bottom: 0 !important;
}
/* --- Content Sections (Quick Insight, Review) --- */
.section-header {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-purple); /* Subtle visual break */
    display: inline-block;
    padding-bottom: 5px;
}

.section-header .icon {
    font-size: 1.2em;
    margin-right: 8px;
}

.quick-insight-section, .article-review-section, .full-content-section {
    margin-top: 40px;
}

.insight-content {
    background-color: var(--light-gray);
    padding: 20px;
    border-left: 4px solid var(--primary-purple);
    border-radius: 4px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.insight-question {
    font-weight: bold;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #ccc;
}

/* --- Full Article Content --- */
.main-article-content p {
    margin-bottom: 1.5em;
}

/* Ensure images scale within the content */
.main-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}
#QuickInsightWapper h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}
#QuickInsightWapper h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 400;
}

#ShortReviewWapper h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}
#ShortReviewWapper h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}
#linktoWebsiteWrapper a
{
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: bold;
}
#similarh2{
    
}
#similarh3{
   text-align: center;
   padding-bottom: 20px;
}
#similarWrapper h3{
  
}



