/**, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    display: block;
    color: #1f1b16;
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    background: radial-gradient(circle at top left, rgba(255, 216, 155, 0.35), transparent 55%), radial-gradient(circle at top right, rgba(255, 181, 198, 0.28), transparent 50%), #f7f2ea;
    min-height: 100vh;
}*/

/* ── Banner ── */
.bg-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

    .bg-slider img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        display: block;
    }

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

    /*.banner-content h1 {
        font-family: 'Playfair Display', 'Georgia', serif;
        font-size: clamp(1.4rem, 3.5vw, 2.4rem);
        line-height: 1.2;
    }*/

/* ── Breadcrumb ── */
.breadcrumb-container {
    margin-bottom: 10px;
}

.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    padding: 0;
    margin: 0 0 8px;
}

    .breadcrumb li {
        color: #fff;
        font-size: 0.85rem;
    }

        /*.breadcrumb li a {
            color: #fff;
            text-decoration: none;
        }

            .breadcrumb li a:hover {
                text-decoration: underline;
            }*/

        .breadcrumb li + li::before {
            content: '/';
            margin: 0 6px;
            color: rgba(255,255,255,0.6);
        }

/* ── Blog Wrapper ── */
.blog-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 48px;
}

    .blog-wrapper h3,
    .blog-wrapper h4,
    .blog-wrapper h5 {
        font-weight: 500;
    }

    /*.blog-wrapper p,
    .blog-wrapper li {
        font-size: 0.95rem;
        color: #333;
        line-height: 1.6;
    }*/

    .blog-wrapper ul {
        padding-left: 1.2rem;
    }

        .blog-wrapper ul li {
            margin-bottom: 0.5rem;
        }

/* ── Grid ── */
.row {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

/* ── Left Content ── */
.left-content {
    border: 2px solid #e6e6e6;
    background: #fff;
    margin-top: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.blog-content {
    padding: 20px;
}

    .blog-content h4 {
        font-size: 20px;
        margin: 16px 0 8px;
    }

    /*.blog-content p {
        font-size: 14px;
        margin-bottom: 12px;
    }*/

    .blog-content ul li {
        font-size: 14px;
    }

/* ── Prev / Next ── */
.glossary-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    margin-top: 24px;
    padding: 16px 20px 8px;
    border-top: 1px solid rgba(31, 27, 22, 0.1);
}

article .blog-content * {
    font-family: "Montserrat", sans-serif;
}

.blog-content a {
    color: #4336FF;
}

.glossary-page-link {
    flex: 1 1 180px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
    border-radius: 12px;
    background: #f7f2ea;
    color: #1f1b16;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

    .glossary-page-link:hover {
        transform: translateY(-2px);
        border-color: rgba(31, 27, 22, 0.2);
    }

    .glossary-page-link .label {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: rgba(31, 27, 22, 0.6);
    }

    .glossary-page-link .title {
        font-size: 0.95rem;
        font-weight: 600;
    }

    .glossary-page-link.next {
        align-items: flex-end;
        text-align: right;
    }

/* ── Right Sidebar ── */
.right-content {
    padding: 25px;
}

.trending-blog {
    background: #f8f8f8;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-bottom: 15px;
    position: sticky;
    top: 24px;
}

/* ── Talk Panel ── */
.side-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.talk-panel {
    display: grid;
    gap: 14px;
    margin-top: 14px;
}

    .talk-panel p {
        font-size: 0.9rem;
        color: rgba(31, 27, 22, 0.7);
    }

    .talk-panel input,
    .talk-panel textarea {
        width: 100%;
        border: 1.5px solid rgba(31, 27, 22, 0.15);
        border-radius: 10px;
        padding: 10px 12px;
        font-size: 0.95rem;
        font-family: inherit;
        color: inherit;
        background: #fffdf9;
        outline: none;
        transition: border-color 0.2s;
        resize: vertical;
    }

        .talk-panel input:focus,
        .talk-panel textarea:focus {
            border-color: #c05621;
        }

    .talk-panel button {
        width: 100%;
        padding: 11px;
        border: none;
        border-radius: 10px;
        background: #1f1b16;
        color: #f7f2ea;
        font-size: 0.95rem;
        font-weight: 600;
        font-family: inherit;
        cursor: pointer;
        transition: background 0.2s;
    }

        .talk-panel button:hover {
            background: #3b3128;
        }

/* ── Related Projects ── */
.about-dev {
    margin-top: 32px;
    padding: 32px 145px 40px;
    background: #f7f2ea;
}

.about-dev-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

    .about-dev-header h2 {
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0;
    }

.btn-view-all {
    margin-left: auto;
    padding: 8px 20px;
    border-radius: 8px;
    background: #1f1b16;
    color: #f7f2ea;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s;
}

    .btn-view-all:hover {
        background: #3b3128;
    }

.line-border {
    border: none;
    border-top: 1px solid rgba(31,27,22,0.15);
    margin: 12px 0 24px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.project-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(28,20,14,0.08);
    transition: transform 0.2s ease;
}

    .project-card:hover {
        transform: translateY(-4px);
    }

    .project-card img {
        width: 100%;
        height: 170px;
        object-fit: cover;
        display: block;
    }

.project-card-body {
    padding: 14px 16px;
}

    .project-card-body h4 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .project-card-body p {
        font-size: 0.85rem;
        color: #666;
        margin: 0;
    }

.project-developer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

    .project-developer img {
        width: 32px;
        height: 32px;
        object-fit: contain;
        border-radius: 4px;
    }

    .project-developer span {
        font-size: 0.8rem;
        color: #888;
    }

/* ── Responsive ── */
@media (max-width: 768px) {
    .row {
        grid-template-columns: 1fr;
    }

    .right-content {
        padding: 0;
    }

    .about-dev {
        padding-left: 16px;
        padding-right: 16px;
    }

    .blog-wrapper {
        padding: 0 16px 32px;
    }

    .bg-slider img {
        height: 162px;
    }

    .banner-content h1 {
        font-size: 15px;
    }
}

.glossary-detail-page {
    padding-top: 100px;
}

.latest-blogs{
    margin: 20px 75px;
}

@media (max-width: 768px) {
    .latest-blogs {
        margin: 15px 30px;
    }
}

/* Recent Terms List */
.side-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .side-card ul li {
        padding: 8px 0;
        border-bottom: 1px solid rgba(31, 27, 22, 0.08);
    }

        .side-card ul li:last-child {
            border-bottom: none;
        }

        .side-card ul li a {
            color: #2c231b;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

            .side-card ul li a:hover {
                color: #c05621;
            }

.padding-block-0px{
    padding-block: 0px!important;
}

.ancher-tag-design{
    text-decoration: none !important;
    color: blue !important;
}

.content-justify-right {
    display: flex;
    justify-content: flex-end;
}