/* --- Root Variables (Same as your theme) --- */
:root {
    --text: #2a2e35;
    --primary-dark: #0D1B2A;
    --header: #0f172a;
    --navlink: #e6f3ff;
    --teal: #006562;
    --teal-glow: #00656280;
    --yellow: #FDEB9E;
    --logo: #9daec2;
    --white: #ffffff;
    --headind2: "Chelsea Market", system-ui;
    --font-main: "DM Serif Text", serif;
    --para: "Funnel Sans", sans-serif;
    --transition: all 0.3s ease-in-out;
}

/* --- Layout & SEO-friendly Typography --- */
body {
    background-color: #fcfdfe;
    /* Very clean, minimal blue-tinted white */
    margin: 0;
    font-family: var(--para);
    line-height: 1.8;
    /* Optimal for long reading */
    color: #333;
    /* Slightly softer than pure black for eyes */
}

/* BLOG PAGE STYLES - Wordora */
main {
    margin-top: 100px;
    margin-bottom: 50px;
}

/* Layout Container */
.blogSec {
    max-width: 1200px;
    /* Commercial standard width */
    margin: 7px auto;
    padding: 0 20px;
    color: var(--text);
    line-height: 1.4;
    
}

article {

    animation: fadeIn 0.8s ease-in-out;

}

/* Typography Hierarchy */
article h1 {
    font-family: var(--headind2);
    font-size: clamp(2rem, 5vw, 2.5rem);
    /* Responsive font size */
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 30px;
    /* text-align: center; */
}

/* Blog Hero Section */
.blog-hero {
    margin: auto;
    max-width: 1000px;
    margin-bottom: 40px;
    animation: slideDown 0.6s ease-out;
}

.blog-title {
    font-family: var(--headind2);
    font-size: clamp(2rem, 6vw, 2.8rem);
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Uploader / Meta Section */
.uploader {
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #f5f9ff 0%, #ffffff 100%);
    border-left: 4px solid var(--teal);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 101, 98, 0.08);
    transition: var(--transition);
}
#uploader-details{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

.uploader-img img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--teal);
    padding: 2px;
}

.uploader-det {
    display: flex;
    flex-direction: column;
}

#uploader-name {
    font-family: var(--para);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin: 0;
}

#uploader-date {
    font-family: var(--para);
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.blog-meta {
    margin-left: auto;
    display: flex;
    gap: 10px;
    align-items: center;
}

.read-time {
    background: linear-gradient(135deg, var(--teal) 0%, #00938d 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 101, 98, 0.2);
}

.blog-container{
    margin: auto;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    

    /* flex-wrap: wrap; */
}
.content-container{
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    width: 100%;
}

/* Featured Image */
.contentImg {
    max-width: 800px;
    margin: auto;
    margin-bottom: 10px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 11, 88, 0.1);
}

.contentImg img {
    width: 100%;
    /* height: auto; */
    aspect-ratio: 16 / 9;
    display: block;
    transition: var(--transition);
}

.contentImg img:hover {
    transform: scale(1.02);
}

/* Share Section */
.share-aside {
    position: sticky;
    top: 120px;
    margin-bottom: 20px;
    align-self: flex-start;
    max-width: 140px;
    margin-top: 0.5rem;
}
.share-section {
    position: sticky;
    top: 120px;
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 101, 98, 0.15);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}

.share-section h3 {
    font-family: var(--font-main);
    color: var(--primary-dark);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    margin: auto;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    width: 45px;
    margin: auto;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.facebook:hover {
    background: #165bc0;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.share-btn.twitter {
    background: #000;
    color: white;
}

.share-btn.twitter:hover {
    background: #333;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.share-btn.linkedin {
    background: #0a66c2;
    color: white;
}

.share-btn.linkedin:hover {
    background: #0856a7;
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.4);
}

.share-btn.copy {
    background: var(--teal);
    color: white;
}

.share-btn.copy:hover {
    background: #00938d;
    box-shadow: 0 8px 20px rgba(0, 101, 98, 0.4);
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* ========== BLOG CONTENT CONTAINER - PROFESSIONAL RESPONSIVE STYLING ========== */

.content {
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--para);
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--text);
    line-height: 1.8;
    letter-spacing: 0.3px;
    word-spacing: 0.05em;
    padding: 40px 20px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(245, 249, 255, 0.3));
    border-radius: 12px;
}

/* ========== HEADINGS STYLING ========== */

.content h1 {
    font-family: var(--headind2);
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--primary-dark);
    /* tight top, moderate bottom for clean break */
    margin: 0 0 1.5em;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
    padding-bottom: 0.5em;
    border-bottom: 3px solid var(--teal);
    transition: var(--transition);
}

.content h1:first-child {
    margin-top: 0;
}

.content h2 {
    font-family: var(--font-main);
    font-size: clamp(1.75rem, 4vw, 2rem);
    color: var(--primary-dark);
    margin: 2em 0 1em;
    line-height: 1.3;
    font-weight: 600;
    padding-bottom: 0.35em;
    border-bottom: 2px solid var(--teal-glow);
    transition: var(--transition);
}

.content h3 {
    font-family: var(--font-main);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--primary-dark);
    margin: 1.5em 0 0.75em;
    line-height: 1.4;
    font-weight: 600;
    transition: var(--transition);
}

.content h4 {
    font-family: var(--font-main);
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    color: #2c3e50;
    margin: 1.25em 0 0.6em;
    line-height: 1.4;
    font-weight: 600;
}

.content h5, 
.content h6 {
    font-family: var(--para);
    font-size: 1.05rem;
    color: #34495e;
    margin: 1em 0 0.5em;
    font-weight: 600;
}

/* ========== PARAGRAPH & TEXT STYLING ========== */

.content p {
    margin: 1em 0;
    line-height: 1.85;
    color: #2a2e35;
    text-align: justify;
    transition: var(--transition);
}

.content p:first-child {
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    color: #1a1f29;
    font-weight: 500;
    margin-top: 0;
}

/* ========== STRONG & EMPHASIS ========== */

.content strong,
.content b {
    font-weight: 700;
    color: var(--primary-dark);
    background: linear-gradient(120deg, rgba(0, 101, 98, 0.1), rgba(253, 235, 158, 0.2));
    padding: 2px 6px;
    border-radius: 3px;
    transition: var(--transition);
}

.content em,
.content i {
    font-style: italic;
    color: #555;
    font-weight: 500;
}

.content u {
    text-decoration: underline;
    text-decoration-color: var(--teal);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    transition: var(--transition);
}

.content u:hover {
    background-color: rgba(0, 101, 98, 0.1);
    padding: 0 4px;
}

.content mark {
    background: linear-gradient(120deg, var(--yellow) 0%, rgba(253, 235, 158, 0.6) 100%);
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 500;
}

.content del {
    color: #999;
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
}

/* ========== LINKS ========== */

.content a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--teal-glow);
    padding: 2px 4px;
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
}

.content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.3s ease;
}

.content a:hover {
    background-color: rgba(253, 235, 158, 0.5);
    color: var(--primary-dark);
    padding: 2px 8px;
    box-shadow: 0 4px 12px rgba(0, 101, 98, 0.2);
    border-radius: 3px;
}

/* ========== LISTS ========== */

.content ul,
.content ol {
    margin: 1.25em 0;
    padding-left: 1.25em;
    line-height: 1.8;
}

.content ul {
    list-style: none;
}

.content ul > li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 20px;
    color: #2a2e35;
}

.content ul > li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--transition);
}

.content ul > li:hover::before {
    color: var(--yellow);
    transform: scale(1.3) rotate(20deg);
}

.content ol {
    counter-reset: list-counter;
}

.content ol > li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 20px;
    list-style: none;
    color: #2a2e35;
}

.content ol > li::before {
    content: counter(list-counter) '.';
    counter-increment: list-counter;
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
    font-size: 1.1rem;
}

.content li p {
    margin: 8px 0;
    display: inline;
}

/* Nested Lists */
.content ul ul,
.content ol ol,
.content ul ol,
.content ol ul {
    margin: 15px 0;
    padding-left: 30px;
}

/* ========== BLOCKQUOTES ========== */

.content blockquote {
    border-left: 5px solid var(--teal);
    padding: 25px 30px;
    margin: 35px 0;
    background: linear-gradient(135deg, #f5f9ff 0%, rgba(253, 235, 158, 0.1) 100%);
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #1a1f29;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 12px rgba(0, 101, 98, 0.1);
    position: relative;
    transition: var(--transition);
}

.content blockquote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 3rem;
    color: rgba(0, 101, 98, 0.2);
    font-family: Georgia, serif;
}

.content blockquote:hover {
    box-shadow: 0 6px 20px rgba(0, 101, 98, 0.15);
    transform: translateX(5px);
}

.content blockquote p {
    margin: 10px 0;
    text-align: left;
}

/* ========== CODE & PREFORMATTED TEXT ========== */

.content code {
    background: #1e1e1e;
    color: #e8f4f8;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
    font-weight: 500;
    word-break: break-word;
    display: inline-block;
    transition: var(--transition);
}

.content code:hover {
    background: #2d2d2d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.content pre {
    background: #1e1e1e;
    color: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 25px 0;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.5;
    border-left: 4px solid var(--teal);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.content pre:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.content pre code {
    background: none;
    color: inherit;
    padding: 0;
    border-radius: 0;
}

/* ========== TABLES ========== */

.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 101, 98, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.content table:hover {
    box-shadow: 0 8px 20px rgba(0, 101, 98, 0.15);
}

.content thead {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a4d52 100%);
    color: #ffffff;
}

.content th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 3px solid var(--teal);
    transition: var(--transition);
}

.content tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: var(--transition);
}

.content tbody tr:nth-child(even) {
    background-color: #f8f9fb;
}

.content tbody tr:hover {
    background-color: #f0f4ff;
    box-shadow: inset 0 0 10px rgba(0, 101, 98, 0.05);
}

.content td {
    padding: 15px 20px;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.content td:first-child {
    font-weight: 500;
    color: var(--primary-dark);
}

/* ========== HORIZONTAL RULE ========== */

.content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--teal) 20%, var(--teal) 80%, transparent);
    margin: 50px 0;
    border-radius: 2px;
    transition: var(--transition);
}

.content hr:hover {
    background: linear-gradient(90deg, transparent, #00938d 20%, #00938d 80%, transparent);
    box-shadow: 0 2px 8px rgba(0, 101, 98, 0.3);
}

/* ========== IMAGES IN CONTENT ========== */

.content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 101, 98, 0.15);
    display: block;
    transition: var(--transition);
}

.content img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 101, 98, 0.25);
}

.content figure {
    margin: 30px 0;
    text-align: center;
}

.content figcaption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 10px;
    padding: 10px;
    background: rgba(0, 101, 98, 0.05);
    border-radius: 4px;
}

/* ========== SUPERSCRIPT & SUBSCRIPT ========== */

.content sup {
    font-size: 0.75em;
    vertical-align: super;
    font-weight: 600;
    color: var(--teal);
}

.content sub {
    font-size: 0.75em;
    vertical-align: sub;
    font-weight: 600;
    color: var(--teal);
}

/* ========== RESPONSIVE MEDIA QUERIES ========== */

/* TABLET DEVICES (768px and below) */
@media (max-width: 768px) {
    .blogSec {
        margin: 30px auto;
        padding: 0 15px;
    }

    article h1 {
        font-size: 1.5rem;
    }

    .content {
        padding: 30px 15px;
        max-width: 100%;
        font-size: 1.05rem;
    }

    .content h1 {
        font-size: 1.75rem;
        margin: 40px 0 25px;
    }

    .content h2 {
        font-size: 1.5rem;
        margin: 35px 0 20px;
    }

    .content h3 {
        font-size: 1.25rem;
        margin: 30px 0 15px;
    }

    .content blockquote {
        padding: 20px 20px;
        font-size: 1.05rem;
        margin: 25px 0;
    }

    .content table {
        font-size: 0.9rem;
        margin: 25px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .content th,
    .content td {
        padding: 12px 12px;
        min-width: 100px;
    }

    .content ul,
    .content ol {
        padding-left: 25px;
        margin: 20px 0;
    }

    .content ul > li,
    .content ol > li {
        margin-bottom: 12px;
    }

    .content pre {
        padding: 15px;
        font-size: 0.9rem;
    }
}

/* MOBILE DEVICES (480px and below) */
@media (max-width: 480px) {
    .content {
        padding: 20px 12px;
        font-size: 1rem;
    }

    .content h1 {
        font-size: 1.5rem;
        margin: 30px 0 20px;
        padding-bottom: 15px;
    }

    .content h2 {
        font-size: 1.3rem;
        margin: 25px 0 15px;
        padding-bottom: 10px;
    }

    .content h3 {
        font-size: 1.1rem;
        margin: 20px 0 12px;
    }

    .content p {
        margin: 15px 0;
        line-height: 1.7;
        font-size: 0.95rem;
        text-align: left;
    }

    .content strong,
    .content b {
        padding: 1px 4px;
    }

    .content blockquote {
        padding: 18px 15px;
        margin: 20px 0;
        font-size: 0.95rem;
        border-left: 4px solid var(--teal);
    }

    .content blockquote::before {
        font-size: 2.5rem;
        top: 5px;
        left: 8px;
    }

    .content a {
        padding: 1px 2px;
        word-break: break-word;
    }

    .content ul,
    .content ol {
        padding-left: 20px;
        margin: 15px 0;
        line-height: 1.8;
    }

    .content ul > li,
    .content ol > li {
        margin-bottom: 10px;
        font-size: 0.95rem;
    }

    .content code {
        font-size: 0.85em;
        padding: 3px 6px;
    }

    .content pre {
        padding: 12px;
        font-size: 0.85rem;
        margin: 20px 0;
        border-left: 3px solid var(--teal);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .content table {
        font-size: 0.85rem;
        margin: 20px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        min-width: 100%;
        max-width: none;
        display: block;
        white-space: nowrap;
    }

    .content th,
    .content td {
        padding: 8px 12px;
        white-space: nowrap;
        min-width: 80px;
    }

    .content img {
        margin: 20px 0;
        border-radius: 6px;
    }

    .content hr {
        margin: 35px 0;
    }

    .content figure {
        margin: 20px 0;
    }

    .content figcaption {
        font-size: 0.85rem;
        padding: 8px;
    }
}

.blog-recommendation{
    max-width: 1200px;
    height: max-content;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    margin-top: 2rem;
}



/* Recommended Posts Container */
.box-reco-blog {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    border-top: 2px solid var(--teal);
    padding-top: 2rem;
}
.recommended-title{
    font-size: 1.5rem;
    color: var(--teal);
    text-align: center;
    width: 100%;
    margin-bottom: 0.3rem;
    

}
.blogList1 { 
    position: relative;
    grid-column: 1 / span 2;
    max-height: 300px ;
    width: 100%;
    overflow: hidden;
    border-radius: 1rem;
    transition: var(--transition);
}
.featured-blog-post{
    position: relative;
    margin-top: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
    height: 100%;
}

.feat-reco-image{
    position: relative;
    width: 100%;
    height:100%;
}
.feat-reco-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.feat-blogList-details{
    position: absolute;
    bottom: 10px;
    left: 0;
    color: white;
    max-width: 100%;
    margin: 0 0.5rem ;
    
}


.feat-blogList-title{
    font-size: 1.1rem;
    font-weight: 800;
    font-style: italic;

    width: 100%;
    text-align: left;
    line-height: 1.6rem;
    letter-spacing: 0.1rem;
    margin-bottom: 0.5rem;
    border-radius: 1rem;
    background-color: rgba(0, 0, 0, 0.25);
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 1);
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 1);
    padding: 5px 8px;
    backdrop-filter: blur(2px) saturate(0.7) contrast(1.2);
    -webkit-text-stroke: 0.2px black;
}
.blogList1:hover {
    transform: scale(1.1);
    transform: translate(3px, -4px);
    box-shadow: 4px 15px 20px var(--teal-glow);
}
 .feat-reco-image img:hover{
    transform: scale(1.05);;
 }

.blogList {
    margin-top: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
    width: 100%;
    height: 100%;
}

.blog-post {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 12px;
    padding: 14px;
    transition: all 0.3s ease-in-out;
    border-radius: 16px;
    background-color: #fafcff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    border: 1px solid transparent;
}

.blog-post:hover {
    transform: translateY(-4px);
    background-color: #f0f4ff;
    box-shadow: 0 4px 12px rgba(0, 101, 98, 0.15);
}

.reco-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
}

.blog-post .reco-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .reco-image img {
    transform: scale(1.05);
}

.blogList-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.blogList-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #14213d;
    line-height: 1.3rem;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blogList-des {
    font-size: 0.8rem;
    color: rgb(77, 75, 75);
    line-height: 1.3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


@media (max-width: 680px) {
.blog-container{
    flex-wrap: wrap-reverse;
}
.share-aside{
    margin: auto;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
.share-section{
    margin: auto;
    width: max-content;
    
}
.share-buttons{
    width: max-content;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
}
}
/* Single responsive media query for small screens */
@media (max-width: 640px) {
    .box-reco-blog {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .reco-image {
        height: 150px;
    }

    .blogList-title {
        font-size: 0.85rem;
        line-height: 1.2rem;
    }

    .blogList-des {
        font-size: 0.75rem;
        line-height: 1.1rem;
    }

    .blog-post {
        padding: 12px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .box-reco-blog {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 0.75rem;
    }

    .reco-image {
        height: 120px;
    }

    .blogList-title {
        font-size: 0.75rem;
        line-height: 1rem;
        margin-bottom: 0.3rem;
    }

    .blogList-des {
        font-size: 0.7rem;
        line-height: 1rem;
    }

    .blog-post {
        padding: 10px;
        gap: 8px;
    }
}

@media (max-width: 360px) {
    .box-reco-blog {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .reco-image {
        height: 140px;
    }

    .blogList-title {
        font-size: 0.7rem;
        line-height: 0.95rem;
    }

    .blogList-des {
        font-size: 0.65rem;
        line-height: 0.9rem;
        -webkit-line-clamp: 1;
        line-clamp: 1;
    }

    .blog-post {
        padding: 8px;
        gap: 6px;
    }
}

/* Entrance Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media screen and (max-width: 440px) {
    .uploader{
        justify-content: space-around;
        gap: 1rem;
    }
    .uploader-img{
        padding-top: 7px;
    }
    #uploader-details{
        display: flex;
        flex-direction: column;
        width: auto;
    }
    #uploader-date{
        margin: auto;
    }
    .blog-meta{
        margin: auto;
    }
}


