/* ---------------- Brand Colors ---------------- */
/* Container Wrapper */
.container-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* ---------------- Navbar ---------------- */
.navbar {
    width: 100%;
    padding: 10px 25px;
    margin: 20px 0;
    border-top: solid #121212 2px;
    border-bottom: solid #121212 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-sizing: border-box;
    border-radius: 16px;
    background: linear-gradient(135deg, #808080, rgb(35, 35, 35), #808080);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* position: sticky; */
    top: 0;
    z-index: 100;
}

/* ---------------- Logo ---------------- */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 40px;
}

/* ---------------- Menu ---------------- */
.menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 0;
    padding: 0;
}

.menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    text-decoration: none;
    color: #666;
    font-size: 1.6rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* ✅ keeps glow + shine inside circle */
    background: #fff;
    isolation: isolate;
    /* ✅ prevents blending glow with neighbors */
}

/* Hover animation */
.menu li a:hover {
    transform: scale(1.15);
    filter: brightness(1.15);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: 0 0 12px currentColor;
    /* ✅ soft contained glow */
}

/* Active Icon Glow */
.menu li.active a {
    box-shadow: 0 0 14px currentColor;
    background: rgba(0, 0, 0, 0.05);
    transform: scale(1.2);
}

.menu li.active a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    opacity: 0.9;
}

/* ---------------- Glossy Shine Effect ---------------- */
.menu li a i {
    position: relative;
    z-index: 2;
}

.menu li a i::after {
    content: "";
    position: absolute;
    top: -20%;
    left: -30%;
    width: 160%;
    height: 140%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transform: translateX(-100%);
    transition: transform 1s ease;
    pointer-events: none;
}

.menu li a:hover i::after {
    transform: translateX(100%);
}

/* ---------------- Brand Colors ---------------- */
.fa-instagram {
    color: #E1306C;
}

.fa-facebook {
    color: #1877F2;
}

.fa-x-twitter {
    color: #000;
}

.fa-tiktok {
    color: #010101;
}

.fa-threads {
    color: #000;
}

.fa-pinterest {
    color: #E60023;
}

.fa-linkedin {
    color: #0A66C2;
}

.fa-reddit {
    color: #FF4500;
}

.fa-telegram {
    color: #0088cc;
}

.fa-vimeo {
    color: #1AB7EA;
}

.fa-vk {
    color: #4A76A8;
}

.fa-snapchat {
    color: #FFFC00;
}

.fa-tumblr {
    color: #35465C;
}

.fa-twitch {
    color: #9146FF;
}

.fa-soundcloud {
    color: #FF5500;
}

.fa-youtube {
    color: #FF0000;
}

/* ---------------- Responsive Navbar ---------------- */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        order: 2;
        width: 100%;
    }

    .logo {
        order: 1;
        justify-content: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .menu li a {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }
}


/* ---------------- Platform Icons Section ---------------- */
.platform-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

/* Each icon link */
.platform-icons a {
    text-decoration: none;
    font-size: 2.4rem;
    color: #666;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 55px;
    /* fixed clickable area */
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    /* contain the shine */
    background: #fff;
}

/* Hover animation — scale, brightness, halo */
.platform-icons a:hover {
    transform: scale(1.25);
    filter: brightness(1.2);
    box-shadow: 0 0 15px currentColor, 0 0 30px rgba(0, 0, 0, 0.15);
}

/* Glossy Shine Effect */
.platform-icons a i {
    position: relative;
    z-index: 2;
}

/* Shine sweep */
.platform-icons a::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
    transform: skewX(-20deg);
    transition: all 0.8s ease;
    pointer-events: none;
}

.platform-icons a:hover::after {
    left: 150%;
}

/* Subtle pulse glow */
.platform-icons a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, currentColor 10%, transparent 60%);
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.6s ease;
    z-index: 1;
}

.platform-icons a:hover::before {
    opacity: 0.4;
    transform: scale(1.5);
}

/* Brand Colors */
.platform-icons .fa-instagram {
    color: #E1306C;
}

.platform-icons .fa-facebook-f {
    color: #1877F2;
}

.platform-icons .fa-x-twitter {
    color: #000;
}

.platform-icons .fa-tiktok {
    color: #010101;
}

.platform-icons .fa-threads {
    color: #000;
}

.platform-icons .fa-pinterest {
    color: #E60023;
}

.platform-icons .fa-linkedin-in {
    color: #0A66C2;
}

.platform-icons .fa-reddit-alien {
    color: #FF4500;
}

.platform-icons .fa-telegram-plane {
    color: #0088cc;
}

.platform-icons .fa-vimeo-v {
    color: #1AB7EA;
}

.platform-icons .fa-vk {
    color: #4A76A8;
}

.platform-icons .fa-snapchat-ghost {
    color: #FFFC00;
}

.platform-icons .fa-tumblr {
    color: #35465C;
}

.platform-icons .fa-twitch {
    color: #9146FF;
}

.platform-icons .fa-soundcloud {
    color: #FF5500;
}

/* Responsive */
@media (max-width: 768px) {
    .platform-icons a {
        font-size: 2rem;
        width: 45px;
        height: 45px;
    }
}



/* Search Wrapper */
.search-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

/* Search Button */
.button-search {
    background-color: #d93025;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.button-search:hover {
    background-color: #b62d23ff;
}

.button-search:active {
    background-color: #d93025;
    transform: translateY(4px);
}

/* Input Group */
.input-group {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    flex: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.input-group input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.9rem 1rem;
    font-size: 1rem;
}

.button-paste {
    background-color: rgb(189, 189, 189);
    border: none;
    cursor: pointer;
    padding: 0.9rem 1rem;
    font-weight: bold;
}

.button-paste:hover {
    background-color: rgb(114, 114, 114);
}

.button-paste:active {
    background-color: #dbdadaff;
    transform: translateY(4px);
}

/* Responsive Search */
@media (max-width: 768px) {
    .search-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .button-search {
        width: 100%;
        padding: 0.5rem;
    }

    .input-group input {
        width: 100%;
    }
}

/* Dark Mode */
.dark-mode {
    background-color: #121212;
    color: #f1f1f1;
}

/* //////////////////////////////// */
.hero-section {
    text-align: center;
    padding: 80px 20px;
    border-radius: 16px;
    margin: 20px auto 40px;
    width: 100%;
    position: relative;
    overflow: hidden;
    color: #fff;
    transition: background 0.8s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background-size: 200% 200%;
    /* for smooth movement */
    animation: shimmerMove 8s ease-in-out infinite alternate;
}

/* Hero Text */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Shimmer Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.05) 100%);
    transform: rotate(25deg);
    animation: shimmerLight 10s linear infinite;
    z-index: 1;
}

/* Animate background gradient subtly */
@keyframes shimmerMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

/* Move the light overlay diagonally */
@keyframes shimmerLight {
    0% {
        transform: translateX(-50%) rotate(25deg);
    }

    100% {
        transform: translateX(50%) rotate(25deg);
    }
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* //////////////////////////////////////// */

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px 50px;
    margin: 30px 0;
    background: linear-gradient(135deg, #f9fafc, #ffffff);
    border-radius: 16px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden; /* ✅ Added line */
}




/* Input Box */
.input-box {
    margin: 25px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    max-width: 600px;
}

.input-box input {
    flex: 1;
    min-width: 250px;
    padding: 12px 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.input-box input:focus {
    border-color: #d93025;
}

.input-box button {
    padding: 12px 20px;
    background: #d93025;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.input-box button:hover {
    background: #005fcc;
}

/* FAQ Section */
.faq {
    background: #f9fafc;
    border-radius: 16px;
    padding: 40px 25px;
    margin-bottom: 30px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #111;
}

/* FAQ Item */
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 5px 15px;
    transition: background 0.3s ease;
}

/* Question Button */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #d93025;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s, background 0.3s;
    padding: 10px 0;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #d93025;
    transition: transform 0.3s, color 0.3s;
}

.faq-question.active {
    color: #111;
}

.faq-question.active::after {
    content: '−';
    color: #111;
    transform: rotate(180deg);
}

/* Smooth Animation for Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    margin: 0px;
    color: #555;
    line-height: 1.6;
}

/* When Open */
.faq-item.open .faq-answer {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
}


/* ---------------- Enhanced Footer ---------------- */
.footer {
    background: linear-gradient(135deg, #808080, rgb(35, 35, 35), #808080);
    color: #ddd;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    margin-top: 40px;
}

/* Top Section Layout */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    padding: 50px 20px;
}

/* Brand Section */
.footer-brand {
    flex: 1;
    min-width: 260px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    max-height: 45px;
    border-radius: 10px;
}

.footer-logo h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.footer-brand p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 400px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Right Links Section */
.footer-links {
    flex: 1;
    min-width: 220px;
}

.footer-links h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 2px solid #d93025;
    display: inline-block;
    padding-bottom: 5px;
}

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

.footer-links li {
    margin: 8px 0;
}

.footer-links a {
    text-decoration: none;
    color: #ccc;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d93025;
}

/* Bottom Line */
.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    text-align: center;
    padding: 15px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: #bbb;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-links h3 {
        margin-top: 20px;
    }

    .footer-brand p {
        max-width: 100%;
    }

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


/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-logo{
        justify-content: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero h3 {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .input-box {
        flex-direction: column;
        align-items: stretch;
    }

    .input-box input,
    .input-box button {
        width: 100%;
    }

    section {
        padding: 40px 15px;
    }
    section h2 {
         font-size: 1.4rem;
    }
    .faq h2 {
        font-size: 1.8rem;
    }
}

/* ---------------- Blog List Section ---------------- */
.blog-list {
    margin: 50px auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Blog Content */
.blog-card-content {
    padding: 20px;
    text-align: left;
}

.blog-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #111;
    transition: color 0.3s;
}

.blog-card-content h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-card-content h3 a:hover {
    color: #d93025;
}

.blog-excerpt {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #777;
    margin-top: auto;
}

.blog-meta i {
    color: #d93025;
    margin-right: 6px;
}

.read-more {
    text-decoration: none;
    color: #d93025;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #005fcc;
}

/* Pagination */
.pagination-wrapper {
    text-align: center;
    margin-top: 40px;
}

.pagination-wrapper .pagination {
    display: inline-flex;
    gap: 8px;
}

.pagination-wrapper .pagination a,
.pagination-wrapper .pagination span {
    background: #fff;
    border-radius: 8px;
    padding: 8px 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    text-decoration: none;
    color: #111;
    font-weight: 500;
    transition: all 0.3s;
}

.pagination-wrapper .pagination a:hover {
    background: #d93025;
    color: #fff;
}

/* Empty State */
.no-posts {
    text-align: center;
    color: #777;
    font-size: 1.1rem;
    margin: 60px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-card img {
        height: 180px;
    }

    .blog-card-content h3 {
        font-size: 1.2rem;
    }

    .blog-grid {
        gap: 20px;
    }
}

/* ---------------- Single Post Page Enhancements ---------------- */
.single-post {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 40px 30px;
    margin: 0px auto;
    transition: all 0.3s ease;
}

.single-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.post-header {
    text-align: center;
    margin-bottom: 25px;
}

.post-title {
    font-size: 2.2rem;
    color: #111;
    font-weight: 700;
    margin-bottom: 10px;
}
/* Featured Image */
.post-image {
    margin: 25px 0;
    text-align: center;
}

.post-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.post-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Responsive tables from EditorJS */
.post-content .editor-table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}

.post-content table td,
.post-content table th {
    padding: 12px 14px;
    border: 1px solid #ddd;
    text-align: left;
    background: #fff;
}

.post-content table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Pagination buttons for long tables */
.pagination-controls {
    text-align: center;
    margin-top: 10px;
}

.page-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 6px;
    margin: 0 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover,
.page-btn.active {
    background: #d93025;
    color: #fff;
}

/* Code Blocks */
.post-content pre code {
    font-family: monospace;
}

/* Quotes */
.post-content blockquote {
    border-left: 4px solid #d93025;
    background: #f9fafc;
    padding: 12px 20px;
    border-radius: 10px;
    font-style: italic;
    margin: 25px 0;
    color: #555;
}

/* Inline Code */
.post-content code {
    background: #f3f3f3;
    color: #c7254e;
    padding: 2px 6px;
    border-radius: 5px;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .post-title {
        font-size: 1.6rem;
    }

    .post-image img {
        max-height: 350px;
    }
}
/* ---------------- Sidebar Layout ---------------- */
.post-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    margin: 50px auto;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Sidebar Sections */
.sidebar-section {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 25px 20px;
    transition: all 0.3s ease;
}

.sidebar-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.sidebar-section h3 {
    color: #111;
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #d93025;
    display: inline-block;
    padding-bottom: 5px;
}

/* Useful Links */
.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 10px;
}

.sidebar-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sidebar-links a:hover {
    color: #d93025;
}

/* Latest Posts */
.latest-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.latest-post-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    align-items: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.latest-post-item:hover {
    background: #f9f9f9;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transform: translateY(-3px);
}

.latest-post-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.latest-post-info h4 {
    color: #111;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.latest-post-info p {
    color: #777;
    font-size: 0.8rem;
}
.link-description {
    font-size: 0.85rem;
    color: #777;
    margin: 2px 0 8px 22px;
    line-height: 1.4;
}

/* Responsive: Sidebar moves below */
@media (max-width: 992px) {
    .post-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        margin-top: 40px;
    }
}


/* ---------------- Author Box ---------------- */
.author-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #f9fafc;
    border-radius: 16px;
    padding: 25px 30px;
    margin-top: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.author-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.author-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.author-info h4 {
    font-size: 1.1rem;
    color: #111;
    margin-bottom: 8px;
}

.author-info h4 span {
    color: #d93025;
    font-weight: 700;
}

.author-info p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .author-avatar img {
        width: 80px;
        height: 80px;
    }
}
