/**
 * 접수 마감 페이지 스타일
 */

.entry-closed-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    padding: 3rem 1.5rem;
    text-align: center;
}

.entry-closed-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    background: #f5f5f5;
    border-radius: 50%;
}

.entry-closed-icon .material-symbols-outlined {
    font-size: 48px;
    color: var(--color-theme, #e4032e);
}

.entry-closed-heading {
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 600;
    color: var(--color-text, #231815);
    margin: 0 0 1rem;
}

.entry-closed-message {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--color-text, #231815);
    margin: 0 0 0.5rem;
    line-height: 1.6;
}

.entry-closed-deadline {
    font-size: clamp(14px, 2vw, 16px);
    color: #666;
    margin: 0 0 1.5rem;
}

.entry-closed-note {
    font-size: clamp(14px, 2vw, 16px);
    color: #666;
    margin: 0 0 2.5rem;
    line-height: 1.6;
}

.entry-closed-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.entry-closed-actions .btn {
    min-width: 140px;
}

@media (max-width: 767px) {
    .entry-closed-container {
        padding: 2rem 1rem;
    }

    .entry-closed-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1.5rem;
    }

    .entry-closed-icon .material-symbols-outlined {
        font-size: 36px;
    }

    .entry-closed-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .entry-closed-actions .btn {
        width: 100%;
    }
}
