.archive-page-header {
    padding: 40px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #222;
}

.archive-page-header .page-title {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    text-align: center;
}

/* Tạo một cái gạch chân màu đỏ nhỏ dưới chữ Blog cho chất */
.archive-page-header .page-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #e50914; /* Màu đỏ Netflix */
    border-radius: 2px;
}

