.action-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.action-block .header {
    background: linear-gradient(to right, #FF4800, #FF7742);
    height: 240px;
    text-decoration: none;
    color: var(--white-text-color);
    display: flex;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.action-info {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.action-block .header .date {
    background: var(--violet-color);
    padding: 6px 20px;
    width: max-content;
}

.action-block .header h1 {
    color: var(--white-text-color);
    font-size: 36px;
    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: 20px;
    color: var(--gray4-text-color);
}

.action-detail a {
    color: var(--orange-text-color);
}

@media (max-width: 780px) {
    .action-block .header {
        height: 250px;
    }

    .action-block .header h1 {
        font-size: 18px;
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .action-info {
        width: calc(100% - 130px);
        font-size: 14px;
        padding: 10px;
    }

    .action-block .header img {
        object-fit: contain;
        position: initial;
        max-height: 310px;
    }

    .action-detail {
        font-size: 14px;
    }

    .action-detail table {
        display: block;
        overflow-y: scroll;
    }
}