* {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    box-sizing: border-box;
    font-family: "Google Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "GRAD" 0;
}
body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --success-color: #00b894;
    --info-color: #0984e3;
    --warning-color: #fdcb6e;
    --danger-color: #d63031;
}
.page-wrapper {
    height: 100vh;
}
.page-wrapper .page-content {
    display: inline-block;
    width: 100%;
    overflow-x: hidden;
}
.page-wrapper .page-content>div {
    padding: 30px 30px 30px 65px;
}
@media screen and ( min-width:768px ) {
    .page-wrapper.toggled .page-content {
        padding-left: 300px;
    }
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "\203A" !important; 
    font-size: 11px; 
    color: rgba(0, 0, 0, 0.5) !important; 
}

/* ===== PAGE ===== */
.page-header {
    background: linear-gradient(135deg, #1f1f1f 0%, #2d1a3e 100%);
    color: white;
    border-radius: 15px;
}

/* ===== POST ===== */
.post-item {
    margin: auto;
    padding: 10px 0 10px 0;
    border-bottom: 1px solid #e5e5e5;
}
.post-category {
    font-size: 14px;
    color: #666;
    margin-bottom: 0px;
}
.post-title {
    font-size: clamp(2rem,4vw,3.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 500;
}
.post-title a {
    text-decoration: none;
    color: #111;
}
.post-title a:hover {
    color: #555;
}
.post-excerpt {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}
.post-read-more {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: #2563eb;
    transition: color 0.2s ease;
}
.post-read-more:hover {
    color: #1e3a8a;
}
/* underline modern */
.post-read-more::after {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: #2563eb;
    transition: width 0.25s ease;
    pointer-events: none;
}
.post-read-more:hover::after {
    width: 100%;
}