* {
  -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;
  }
}

/* ===== POST ===== */
.post-item {
    margin: auto;
    padding: 0px 0 50px 0;
    border-bottom: 1px solid #e5e5e5;
}
.post-category {
    font-size: 14px;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 15px;
}
.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-date {
    margin-top: 25px;
    color: #999;
    font-size: 14px;
}
.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%;
}