.deadline-banner {
    display: flex;
    justify-content: center;     /* 수평 중앙 */
    align-items: center;         /* 수직 중앙 */
    gap: 12px;
    height: 80px;
    background: #141617;
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 0 1rem;
}

.deadline-banner .deadline-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.deadline-banner .apply-button {
    white-space: nowrap;
    background: white;
    color: #141617;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.deadline-banner .apply-button:hover {
    background: #eee;
}

@media (max-width: 680px) {
    .deadline-banner {
        font-size: 0.9rem;
    }
}

@media (max-width: 380px) {
    .deadline-banner {
        font-size: 0.78rem;
    }

    .sub-title {
        font-size: 1rem;
    }

    .custom-title {
        font-size: 1.25rem;
    }
}