
.custom-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}
.custom-post-box {
    background: #fff8e7;
    border: 2px solid #000;
    padding: 15px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 5px 5px 0 #000000aa;
    transition: transform 0.2s ease;
}
.custom-post-box:hover {
    transform: translateY(-5px);
}
.custom-post-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.custom-post-box h3 {
    font-size: 26px; /* hoặc 22px nếu bạn muốn to hơn nữa */
    margin-top: 12px;
    font-weight: bold;
    color: #000 !important;
    line-height: 1.4;
}

.custom-grid-container .custom-post-box h3 a {
    color: #000 !important;
}

.custom-grid-container .custom-categories a {
    color: #000 !important;
}

.custom-categories {
    margin-top: 10px;
    margin-bottom: 8px;
}
.custom-categories span {
    background-color: #fdd835;
    color: #000;
    font-size: 12px;
    padding: 3px 8px;
    margin: 0 4px 4px 0;
    display: inline-block;
    border-radius: 8px;
    font-weight: bold;
}
.custom-meta {
    margin-top: 10px;
    font-size: 13px;
    display: flex;
    justify-content: center;
    gap: 12px;
    color: #333;
}
.custom-pagination {
    margin-top: 30px;
    text-align: center;
}
.custom-pagination a,
.custom-pagination span {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #000;
    margin: 0 4px;
    text-decoration: none;
    border-radius: 4px;
    background: #fff;
}
