.content__layout--block-academy {
    display: flex;
    gap: 24px;
    margin-top: 15px;
}

.layout-block-academy-type {
    width: 25%;
    display: flex;
    flex-direction: column;
}
.layout-block-academy-type > label {
    font-size: 17px;
}
.content__layout--block-academy-txt,
.content__layout--block-academy-txt-ambassador {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.preview__layout--block-academy-txt {
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    padding: 16px;
    width: 50%;
    border-radius: 8px;
}

.preview__layout--block-academy-txt-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.preview__desc {
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    min-height: 50px;
}

.preview__btn {
    margin-top: 10px;
    padding: 6px 14px;
    background: #2563eb;
    color: white;
    border-radius: 6px;
    display: inline-block;
}

/* ===== Upload Wrapper ===== */
.view__layout--block-academy-img {
    width: 100%;
}

/* ===== Upload Box ===== */
.custum-file-upload {
    width: 100%;
    min-height: 160px;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    background: #f9fafb;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;

    transition: all 0.25s ease;
}

.custum-file-upload:hover {
    background: #f1f5f9;
    border-color: #2563eb;
}

/* Icon */
.custum-file-upload .icon svg {
    width: 48px;
    height: 48px;
    fill: #64748b;
    transition: 0.2s;
}

.custum-file-upload:hover .icon svg {
    fill: #2563eb;
    transform: scale(1.05);
}

/* Text */
.custum-file-upload .text span {
    font-size: 14px;
    color: #475569;
}

/* Hide input */
.custum-file-upload input[type="file"] {
    display: none;
}

@media (max-width: 768px) {
    .content__layout--block-academy {
        flex-direction: column;
    }

    .content__layout--block-academy-txt,
    .content__layout--block-academy-txt-ambassador,
    .preview__layout--block-academy-txt {
        width: 100%;
    }
    .layout-block-academy-type {
        width: 100%;
        display: flex;
        flex-direction: row; /* hoặc bỏ luôn vì mặc định là row */
        gap: 16px;
        align-items: center;
    }
}
