* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto";
    color: var(--color-text-base);
}
/* ====== Detail Page - Career Handbook ====== */
.career-handbook {
    background-color: var(--color-bg-light);
    padding: 55px 0 59px;
}

.career-handbook .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.career-handbook-title {
    font-size: 33px;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    font-family: "Inter";
    line-height: 37px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.career-handbook-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
}

.handbook-tag {
    display: inline-block;
    padding: 8px 10px;
    border: 1px solid var(--color-primary);
    border-radius: 7px;
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s;
    background-color: transparent;
    line-height: 100%;
}

.handbook-tag:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}

.career-handbook-desc {
    font-size: 14px;
    line-height: 21px;
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: 66px;
    font-family: "Inter";
    font-weight: 400;
}

.featured-posts-title {
    font-size: 33px;
    font-weight: 700;
    color: var(--color-primary);
    font-family: "Inter";
    margin-bottom: 34px;
    text-transform: uppercase;
    line-height: 37px;
}

.featured-posts-layout {
    display: grid;
    gap: 41px;
    grid-template-columns: 19fr 21fr;
}

/* Featured post large (left) */
.featured-post-large {
    flex: 1;
    background-color: var(--color-bg-gray-alt);
    border-radius: 10px;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 345px;
    object-fit: cover;
    display: block;
    aspect-ratio: 16/9;
    border-radius: 10px;
}

.featured-post-body {
    padding: 24px 27px 28px;
}

.post-category {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    font-family: "Inter";
    line-height: 100%;
}

.post-title {
    font-size: 25px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 100%;
    margin-bottom: 6px;
    font-family: "Inter";
}

.post-title a {
    color: inherit;
    text-decoration: none;
}

.post-title a:hover {
    text-decoration: none;
}

.post-date {
    font-size: 15px;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 15px;
    font-family: "Inter";
    line-height: 100%;
    font-weight: 300;
}

.post-excerpt {
    font-size: 15px;
    line-height: 23px;
    color: var(--color-text-dark);
    font-family: "Inter";
    font-weight: 400;
    margin-bottom: 10px;
    text-align: justify;
}

.btn-detail {
    display: block;
    margin-left: auto;
    width: fit-content;
    padding: 11px 27px;
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    font-family: "Open Sans";
    background-color: var(--color-bg-white);
    line-height: 16px;
}

.btn-detail:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}

/* Side posts (right) */
.featured-post-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.side-post-card {
    display: grid;
    grid-template-columns: 5fr 3fr;
    align-items: center;
    background-color: var(--color-bg-gray-alt);
    border-radius: 10px;
    overflow: hidden;
}

.side-post-info {
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 19px;
}

.side-post-info .post-title {
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 10px;
}
.side-post-info .post-date {
    font-size: 12px;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 10px;
    font-family: "Inter";
    line-height: 100%;
    font-weight: 300;
}
.side-post-info .post-excerpt {
    margin-bottom: 0;
}

.side-post-info .btn-detail {
    display: none;
}

.side-post-image {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.side-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* ===== Recruitment + Article List Section ===== */
.recruit-article-section {
    background-color: var(--color-bg-gray);
    padding: 63px 0;
}

.recruit-article-section .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.recruit-article-layout {
    display: grid;
    grid-template-columns: 22fr 23fr;
    gap: 70px;
    align-items: start;
}

/* Left column */
.recruit-title {
    font-size: 33px;
    font-weight: 700;
    color: var(--color-primary);
    font-family: "Inter";
    line-height: 37px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.job-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-primary);
    border-radius: 10px;
    padding: 15px 14px 15px 24px;
}

.job-name {
    color: var(--color-bg-light);
    font-size: 17px;
    font-weight: 700;
    font-family: "Roboto";
    line-height: 1.4;
}

.btn-apply {
    display: inline-block;
    padding: 10px 16px;
    background-color: var(--color-bg-white);
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 700;
    font-family: "Roboto";
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-apply:hover {
    background-color: var(--color-bg-dropdown);
}

/* Contact Form */
.contact-form {
    background-color: var(--color-bg-white);
    border-radius: 10px;
    padding: 30px 25px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 17px;
    font-weight: 600;
    font-family: "Roboto";
}

.form-group input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-border-medium);
    border-radius: 8px;
    font-size: 14px;
    font-family: "Inter";
    color: var(--color-text-base);
}

.form-group input::placeholder {
    color: var(--color-text-placeholder-light);
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: var(--color-accent);
    color: var(--color-bg-white);
    font-size: 17px;
    font-weight: 700;
    font-family: "Inter";
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 8px;
}

.btn-submit:hover {
    background-color: var(--color-accent-hover);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-group .text-danger {
    color: #ff6b6b;
    margin-left: 2px;
}

.form-select {
    width: 100%;
    padding: 10px 14px;
    padding-right: 36px;
    border: 1px solid var(--color-border-medium);
    border-radius: 8px;
    font-size: 14px;
    font-family: "Inter";
    color: var(--color-text-base);
    background-color: var(--color-bg-white);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.contact-file-upload {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--color-border-medium);
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    height: 42px;
}

.contact-file-label {
    flex: 1;
    padding: 10px 14px;
    font-size: 14px;
    font-family: "Inter";
    color: var(--color-text-placeholder-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-file-btn {
    padding: 10px 16px;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    font-size: 14px;
    font-family: "Inter";
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    height: 100%;
    display: flex;
    align-items: center;
}

.contact-file-btn:hover {
    opacity: 0.9;
}

.contact-error {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 4px;
    min-height: 0;
    font-family: "Inter";
    display: block;
}

.contact-form-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-family: "Inter";
    font-size: 14px;
    text-align: center;
}

.contact-form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Right column - Article List */
.article-list-title {
    font-size: 33px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 37px;
    text-transform: uppercase;
    font-family: "Inter";
}

.article-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 21px;
    margin-bottom: 18px;
}

.article-card {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 22px;
}

.article-card-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    margin-bottom: 19px;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.article-card-body .post-category {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-primary);
    text-transform: uppercase;
    display: block;
    line-height: 120%;
    margin-bottom: 8px;
    font-family: "Inter";
}

.article-card-body .post-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 120%;
    margin-bottom: 9px;
    font-family: "Inter";
}

.article-card-body .post-date {
    font-size: 12px;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 6px;
    font-family: "Inter";
    font-weight: 300;
}

.article-card-body .post-excerpt {
    font-size: 15px;
    margin-bottom: 0;
    text-align: justify;
    font-family: "Inter";
    line-height: 23px;
    font-weight: 400;
}

.read-more {
    color: var(--color-link-blue);
    text-decoration: none;
    font-weight: 400;
}

.read-more:hover {
    text-decoration: underline;
}

/* Pagination */
.article-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border-medium);
    border-radius: 8px;
    text-decoration: none;
    color: var(--color-text-base);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.pagination-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.pagination-btn.pagination-active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-bg-white);
}

.pagination-dots {
    font-size: 14px;
    color: var(--color-text-muted);
    padding: 0 4px;
}

/* ===== Apply Form Section ===== */
.apply-form-section {
    background-color: var(--color-bg-gray);
    padding: 60px 0;
}

.apply-form-section .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.apply-form-wrapper {
    background-image: url('../images-test/bg-apply-form.png');
    background-size: cover;
    background-position: center;
    background-color: var(--color-primary);
    border-radius: 8px;
    padding: 42px 47px;
    text-align: center;
}

.apply-form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-bg-white);
    font-family: "Inter";
    text-transform: uppercase;
    margin-bottom: 18px;
    line-height: 32px;
}

.apply-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.apply-input {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-family: "Inter";
    color: var(--color-text-base);
    background-color: var(--color-bg-white);
}

.apply-input::placeholder {
    color: var(--color-text-placeholder);
}

/* Select dropdown styling */
.apply-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
}

.apply-select option {
    padding: 10px;
}

.apply-file-upload {
    display: flex;
    align-items: center;
    background-color: var(--color-bg-white);
    border-radius: 8px;
    padding: 0 20px;
    gap: 14px;
}

.apply-file-label {
    font-size: 15px;
    font-family: "Inter";
    color: var(--color-text-base);
}

.apply-file-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--color-btn-secondary);
    border-radius: 6px;
    font-size: 14px;
    font-family: "Inter";
    color: var(--color-text-base);
    cursor: pointer;
    transition: background-color 0.3s;
}

.apply-file-btn:hover {
    background-color: var(--color-btn-secondary-hover);
}

.apply-submit-btn {
    display: inline-block;
    padding: 16px 63px;
    background-color: var(--color-accent);
    color: var(--color-bg-white);
    font-size: 17px;
    font-weight: 700;
    font-family: "Inter";
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    line-height: 16px;
}

.apply-submit-btn:hover {
    background-color: var(--color-accent-hover);
}

/* ===== Footer ===== */
.site-footer {
    margin-top: 0;
}

.footer-spacer {
    height: 115px;
    background-color: var(--color-bg-gray);
}

.footer-main {
    background: linear-gradient(to right,#051f38,#0f2547,#1a2c58);
    padding: 40px 0 30px;
}

.footer-main .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Footer col 1 - Info */
.footer-logo img {
    height: 55px;
    margin-bottom: 10px;
}

.footer-school-name {
    color: var(--color-bg-white);
    font-size: 14px;
    font-weight: 600;
    font-family: "Inter";
    margin-bottom: 2px;
}

.footer-slogan {
    color: var(--color-border-medium);
    font-size: 13px;
    font-family: "Inter";
    font-style: italic;
    margin-bottom: 10px;
}

.footer-address,
.footer-phone {
    color: var(--color-border-medium);
    font-size: 13px;
    font-family: "Inter";
    line-height: 22px;
}

.footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s;
}

.footer-socials a:hover {
    transform: scale(1.1);
}

/* Footer col 2 - Menu */
.footer-col-title {
    color: var(--color-bg-white);
    font-size: 16px;
    font-weight: 700;
    font-family: "Inter";
    margin-bottom: 16px;
}

.footer-menu ul {
    list-style: none;
}

.footer-menu ul li {
    margin-bottom: 8px;
}

.footer-menu ul li a {
    color: var(--color-border-medium);
    font-size: 13px;
    font-family: "Inter";
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-menu ul li a:hover {
    color: var(--color-bg-white);
}

/* Footer col 3 - Partner */
.footer-operated {
    color: var(--color-border-medium);
    font-size: 13px;
    font-family: "Inter";
    font-style: italic;
    margin-bottom: 10px;
}

.footer-partner-logo img {
    max-height: 60px;
    margin-bottom: 16px;
}

.footer-dmca img {
    height: 32px;
}

/* ===== Floating Buttons ===== */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-bg-white);
    transition: transform 0.3s;
    box-shadow: var(--shadow-float);
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-phone {
    background-color: var(--color-accent);
    position: fixed;
    left: 20px;
    bottom: 100px;
}

.float-messenger {
    background-color: var(--color-messenger);
    font-size: 22px;
}

.float-zalo {
    background-color: var(--color-zalo);
    font-size: 12px;
    font-family: "Inter";
}

/* ===== Back to Top ===== */
.back-to-top {
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow-float);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-primary-dark);
}

/* ===== RESPONSIVE - Chill Layout ===== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .career-handbook {
        padding: 40px 0 45px;
    }

    .career-handbook-title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 20px;
    }

    .career-handbook-tags {
        gap: 10px;
        margin-bottom: 18px;
    }

    .handbook-tag {
        font-size: 14px;
        padding: 7px 9px;
    }

    .career-handbook-desc {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 45px;
    }

    .featured-posts-title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 25px;
    }

    .featured-posts-layout {
        gap: 25px;
    }

    .featured-post-image img {
        height: 280px;
    }

    .featured-post-body {
        padding: 18px 20px 22px;
    }

    .post-title {
        font-size: 20px;
    }

    .side-post-info .post-title {
        font-size: 16px;
        line-height: 20px;
    }

    /* Recruit Article Section */
    .recruit-article-section {
        padding: 45px 0;
    }

    .recruit-article-layout {
        gap: 40px;
    }

    .recruit-title,
    .article-list-title {
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 18px;
    }

    .job-item {
        padding: 12px 12px 12px 18px;
    }

    .job-name {
        font-size: 18px;
        line-height: 1.4;
    }

    .btn-apply {
        font-size: 16px;
        padding: 8px 14px;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .form-group label {
        font-size: 17px;
    }

    .article-card-body .post-title {
        font-size: 16px;
    }

    /* Apply Form */
    .apply-form-wrapper {
        padding: 35px 30px;
    }

    .apply-form-title {
        font-size: 24px;
        line-height: 28px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .career-handbook {
        padding: 30px 0 35px;
    }

    .career-handbook-title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 18px;
    }

    .career-handbook-tags {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        gap: 8px;
        margin-bottom: 15px;
    }

    .career-handbook-tags::-webkit-scrollbar {
        display: none;
    }

    .handbook-tag {
        flex-shrink: 0;
        font-size: 15px;
        padding: 6px 8px;
    }

    .career-handbook-desc {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 35px;
        text-align: justify;
    }

    .featured-posts-title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 20px;
    }

    .featured-posts-layout {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .featured-post-image img {
        height: 245px;
    }

    .featured-post-body {
        padding: 15px 18px 20px;
    }

    .post-category {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .post-title {
        font-size: 17px;
        margin-bottom: 5px;
    }

    .post-date {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .post-excerpt {
        font-size: 15px;
        line-height: 22px;
    }

    .btn-detail {
        padding: 10px 20px;
        font-size: 14px;
    }

    .side-post-card {
        display: flex;
        flex-direction: column;
        border-radius: 10px;
        overflow: hidden;
    }

    .side-post-image {
        order: -1;
        aspect-ratio: 16/9;
        overflow: visible;
    }

    .side-post-image img {
        border-radius: 0;
        height: 245px;
        object-fit: cover;
    }

    .side-post-info {
        padding: 15px 18px 20px;
    }

    .side-post-info .btn-detail {
        display: block;
    }

    .side-post-info .post-title {
        font-size: 17px;
        line-height: 22px;
        margin-bottom: 5px;
    }

    .side-post-info .post-date {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .side-post-info .post-excerpt {
        font-size: 15px;
        line-height: 22px;
    }

    /* Recruit Article Section - Stack layout */
    .recruit-article-section {
        padding: 35px 0;
    }

    .recruit-article-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .recruit-title,
    .article-list-title {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 15px;
    }

    .job-list {
        gap: 15px;
        margin-bottom: 25px;
    }

    .job-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 15px 18px;
    }

    .job-name {
        font-size: 18px;
        line-height: 1.4;
    }

    .btn-apply {
        font-size: 15px;
        padding: 8px 14px;
        width: 100%;
        text-align: center;
    }

    .contact-form {
        padding: 22px 18px;
    }

    .form-group label {
        font-size: 17px;
    }

    .form-group input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .btn-submit {
        font-size: 17px;
        padding: 11px;
    }

    .article-list-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .article-card {
        background-color: var(--color-bg-gray-alt);
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 0;
    }

    .article-card-image {
        margin-bottom: 0;
    }

    .article-card-image img {
        border-radius: 0;
    }

    .article-card-body {
        padding: 15px 18px 20px;
    }

    .article-card-body .post-category {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .article-card-body .post-title {
        font-size: 15px;
        line-height: 130%;
        margin-bottom: 5px;
    }

    .article-card-body .post-date {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .article-card-body .post-excerpt {
        font-size: 13px;
        line-height: 20px;
    }

    /* Apply Form */
    .apply-form-wrapper {
        padding: 28px 20px;
    }

    .apply-form-title {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 15px;
    }

    .apply-form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }

    .apply-input {
        padding: 12px 16px;
        font-size: 14px;
    }

    .apply-file-upload {
        padding: 12px 16px;
    }

    .apply-submit-btn {
        padding: 14px 45px;
        font-size: 15px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .career-handbook {
        padding: 25px 0 30px;
    }

    .career-handbook .container {
        padding: 0 15px;
    }

    .career-handbook-title {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 15px;
    }

    .career-handbook-tags {
        gap: 6px;
        margin-bottom: 12px;
    }

    .handbook-tag {
        font-size: 15px;
        padding: 5px 7px;
    }

    .career-handbook-desc {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 25px;
        text-align: justify;
    }

    .featured-posts-title {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 15px;
    }

    .featured-post-image img {
        height: 245px;
    }

    .side-post-image img {
        height: 245px;
    }

    .featured-post-body {
        padding: 12px 15px 15px;
    }

    .post-category {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .post-title {
        font-size: 17px;
    }

    .post-date {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .post-excerpt {
        font-size: 15px;
        line-height: 22px;
    }

    .btn-detail {
        padding: 8px 16px;
        font-size: 14px;
    }

    .side-post-info {
        padding: 12px 15px 15px;
    }

    .side-post-info .post-title {
        font-size: 17px;
        line-height: 22px;
        margin-bottom: 5px;
    }

    .side-post-info .post-date {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .side-post-info .post-excerpt {
        font-size: 15px;
        line-height: 22px;
    }

    /* Recruit Article Section */
    .recruit-article-section {
        padding: 25px 0;
    }

    .recruit-article-section .container {
        padding: 0 15px;
    }

    .recruit-article-layout {
        gap: 25px;
    }

    .recruit-title,
    .article-list-title {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 12px;
    }

    .job-list {
        gap: 12px;
        margin-bottom: 20px;
    }

    .job-item {
        padding: 12px 15px;
        gap: 10px;
    }

    .job-name {
        font-size: 18px;
        line-height: 1.4;
    }

    .btn-apply {
        font-size: 15px;
        padding: 7px 12px;
    }

    .contact-form {
        padding: 18px 15px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group label {
        font-size: 17px;
    }

    .form-group input {
        padding: 9px 10px;
        font-size: 12px;
    }

    .btn-submit {
        font-size: 17px;
        padding: 10px;
    }

    .article-list-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 15px;
    }

    .article-card-body {
        padding: 12px 15px 15px;
    }

    .article-card-body .post-category {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .article-card-body .post-title {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .article-card-body .post-date {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .article-card-body .post-excerpt {
        font-size: 13px;
        line-height: 20px;
    }

    .pagination-btn {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }

    /* Apply Form */
    .apply-form-section .container {
        padding: 0 15px;
    }

    .apply-form-wrapper {
        padding: 22px 15px;
    }

    .apply-form-title {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 12px;
    }

    .apply-form-grid {
        gap: 10px;
        margin-bottom: 15px;
    }

    .apply-input {
        padding: 10px 14px;
        font-size: 13px;
    }

    .apply-file-upload {
        padding: 10px 14px;
    }

    .apply-file-label {
        font-size: 13px;
    }

    .apply-file-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .apply-submit-btn {
        padding: 12px 35px;
        font-size: 14px;
    }
}
