.action-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.action-block .header {
    background: linear-gradient(to right, #FF4800, #FF7742);
    height: 200px;
    text-decoration: none;
    color: var(--white-text-color);
    display: flex;
    width: 100%;
    position: relative;
}

.action-info {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    justify-content: center;
}

.action-block .header h1 {
    color: var(--white-text-color);
    font-size: 36px;
    margin-bottom: 0;
}

.action-block .header div {
    color: var(--white-text-color);
    font-size: 16px;
    margin-bottom: 0;
}

.action-block .header img {
    object-fit: contain;
    position: absolute;
    right: 110px;
    max-width: 40%;
    height: 100%;
    top: 10px;
}

.action-detail {
    background: white;
    padding: 30px;
    color: var(--gray4-text-color);
    font-size: 16px;
}

.action-detail a {
    color: var(--orange-text-color);
}

@media (max-width: 780px) {
    .action-block .header img {
        object-fit: contain;
        position: initial;
        max-height: 310px;
    }

    .action-detail {
        padding: 20px;
        font-size: 14px;
        line-height: 16px;
    }

    .action-block .header h1 {
        font-size: 18px;
    }

    .action-block .header div {
        font-size: 14px;
    }
}