/* Base Styles */
body {
    margin: 0;
    font-family: PingFang SC, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans',
        'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #f7f7f7;
    color: #424a56;
}

/* Layout */
.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header-box {
    padding: 25px 0;
    background-color: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

.header {
    /* text-align: left; */
    max-width: 1280px;
    width: 1280px;
    margin: 0 auto;
}

.logo {
    color: #424a56;
    font-size: 24px;
    font-weight: 600;
    line-height: 25px;
}

.banner {
    width: 100%;
    height: 10.4167vw;
}

.content-container {
    flex: 1;
    max-width: 1280px;
    margin: -100px auto 0;
    padding: 24px;
    background-color: #ffffff;
    border-radius: 12px;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 33px 320px;
    margin-top: 24px;
    background-color: #ffffff;
}

/* Blog List Styles */
.blog-list {
    display: flex;
    flex-direction: column;
}

.blog-item {
    display: flex;
    margin-top: 16px;
    background-color: #ffffff;
    border-radius: 4px;
}

.date-box {
    display: flex;
    align-items: center;
    padding: 34px 30px;
    height: 100px;
}

.day {
    font-size: 40px;
    line-height: 29.5px;
    color: #424a56;
}

.separator {
    font-size: 32px;
    line-height: 29.5px;
    color: #d1d1d1;
    margin: 0 10px;
}

.month-year {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.month-year span {
    font-size: 14px;
    color: #8d929f;
}

.month-year span:last-child {
    margin-top: 7px;
}

.blog-content {
    flex: 1;
    padding: 12px 0 4px;
    margin-left: 24px;
    height: 100px;
}

.blog-title {
    font-size: 18px;
    line-height: 17px;
    color: #20334f;
    margin: 0;
}

.blog-excerpt {
    font-size: 16px;
    line-height: 28px;
    color: #8d929f;
    margin: 13px 0 0;
}

.divider {
    height: 1px;
    margin-top: 16px;
    background-image: repeating-linear-gradient(90deg, #e6e8ec, #e6e8ec 0.16%, transparent 0.16%, transparent 0.322%);
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 17px;
    /* padding: 0 240px; */
}

/* Footer Styles */
.footer-left {
    display: flex;
    align-items: center;
}

.footer-left img {
    width: 20px;
    height: 20px;
}

.footer-left span {
    font-size: 16px;
    margin-left: 5px;
}

.footer-right span {
    font-size: 16px;
}
