
/* ================================
   LIST BÀI VIẾT
================================ */
.post-list {
  width: 100%;
}

/* ================================
   ITEM BÀI VIẾT
================================ */
.post-item {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fff;
  overflow: hidden; /* clear float */
}

/* ================================
   ẢNH – GÓC TRÊN BÊN TRÁI
================================ */
.post-item img {
  float: left;
  width: 160px;
  height: auto;
  margin: 0 15px 10px 0;
  border-radius: 4px;
}

/* ================================
   TIÊU ĐỀ
================================ */
.post-item h2 {
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 6px;
}

.post-item h2 a {
  color: #003366;
  text-decoration: none;
}

.post-item h2 a:hover {
  color: #0073e6;
}

/* ================================
   MÔ TẢ
================================ */
.post-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

/* ================================
   MOBILE – ẢNH FULL WIDTH
================================ */
@media (max-width: 600px) {
  .post-item img {
    float: none;
    width: 100%;
    margin: 0 0 10px;
  }
}

/* ===============================
   MOBILE FIRST (mặc định)
================================ */
.cachdietmoi28_schema {
    column-count: 1;
    column-gap: 8px;
    padding-left: 20px;
}

.cachdietmoi28_schema ol {
    margin: 0;
    padding-left: 20px;
}

.cachdietmoi28_schema .cach {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
}

.cachdietmoi28_schema .cach a {
    display: block;
    text-decoration: none;
    color: var(--xanhladam);
    padding: 2px 4px;
    border-radius: 4px;
}

.cachdietmoi28_schema .cach a:hover {
    background: #09D8F1;
    color: #000;
}

/* ===============================
   TABLET (>= 576px)
================================ */
@media (min-width: 576px) {
    .cachdietmoi28_schema {
        column-count: 2;
    }
}

/* ===============================
   DESKTOP (>= 1000px)
================================ */
@media (min-width: 1000px) {
    .cachdietmoi28_schema {
        column-count: 3;
    }
}
/* ===============================
   CATEGORY H1, H2 HEADING
   Mobile first
================================ */
.category-header h1{
  margin-top: 15px;
}
.category-heading-h2 {
    margin-top: 15px;
    color: var(--xanhladam);
}

/* ================= PAGINATION ================= */
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 30px 0;
    font-size: 15px;
}

.pagination a {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #ddd;
    border-radius: 4px;

    color: #333;
    background: #fff;
    text-decoration: none;
    line-height: 1;
    transition: all 0.2s ease;
}

/* Hover */
.pagination a:hover {
    background: #0a6f08;
    color: #fff;
    border-color: #0a6f08;
}

/* Active page */
.pagination a.active {
    background: #0a6f08;
    color: #fff;
    font-weight: 600;
    border-color: #0a6f08;
    pointer-events: none;
}

/* Prev / Next */
.pagination a.prev,
.pagination a.next {
    font-weight: 500;
    padding: 0 14px;
}

/* Disable hover on active */
.pagination a.active:hover {
    background: #0a6f08;
}

/* ================= MOBILE ================= */
@media (max-width: 480px) {
    .pagination {
        gap: 4px;
        font-size: 14px;
    }

    .pagination a {
        min-width: 32px;
        height: 32px;
        padding: 0 10px;
    }
}
.category-description ul{
	list-style: disc;
    padding-left: 22px;
}
