.wp-block-create-block-info-block {
    border: 1px dotted #f00;
}

.info-block {
    position: relative;
    margin: 0 auto;
    width: calc(100% - 4rem);
    height: 17rem;
    background-color: white;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding: 2rem;
    border: solid black 0.5mm;
    border-radius: 2rem;
    margin-bottom: 3rem;

    cursor: pointer;
    transform: translateY(0rem);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1);

    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.info-block:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0px 15px 0px 0px rgba(0, 0, 0, 1);
    border-radius: 2.5rem;
}

.block-gauche {
    position: relative;
    overflow: hidden;
}

.block-gauche > .real_img {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: transparent;
    /* background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQl1TbHyqWyZb7_vrOipCnpc2mBbvP_nr5GmA&s"); */
    background-position: center;
    background-size: cover;
    border-radius: 2rem;
}

.b-paragraph {
    margin: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.5rem;
}

.b-paragraph > .titre_gauche {
    margin: 0;
    color: black;
    font-weight: 800;
    font-size: 1.7rem;
    font-family: "Druk Wide Bold Bold";
}

.b-paragraph > .separator {
    width: 4rem;
    height: 0.3rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: #d7d7d7;
}

.b-paragraph > .paragraph_gauche {
    color: black;
    font-size: 14px;
    font-family: "PretendardVariable";
    line-height: 20px;
    margin-top: 0;
}

.b-paragraph > .titre_droite {
    margin: 0;
    color: black;
    font-weight: 800;
    font-size: 1.7rem;
    font-family: "Druk Wide Bold Bold";
}

.b-paragraph > .paragraph_droite {
    color: black;
    font-size: 14px;
    font-family: "PretendardVariable";
    line-height: 20px;
    margin-top: 0;
}

.block-droite {
    position: relative;
    height: 100%;
}

.block-droite > .real_img {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQl1TbHyqWyZb7_vrOipCnpc2mBbvP_nr5GmA&s");
    background-position: center;
    background-size: cover;
    border-radius: 2rem;
}

.volatil-card {
    position: relative;
    /*width: 100%;*/
    height: 100%;
    display: flex;
    flex-direction: row;
    background-color: transparent;
    z-index: 1;
}

.volatil-card > .bg-img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 70%;
    /* background-color: red; */
    z-index: 0;
    /* background: red center; */
    background-position: center;
    background-size: fit-content;
    border-radius: 2rem;
    user-select: none;
}

.volatil-card > .para-block > .separator {
    width: 4rem;
    height: 0.3rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: #d7d7d7;
}

.volatil-card > .para-block {
    position: absolute;
    /*top: 40%;*/
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 55%;
    padding: 1.5rem;
    background-color: white;
    border-radius: 2rem;
    border: solid black 0.5mm;
    z-index: 10;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
}

.volatil-card > .para-block > h1 {
    font-family: "Druk Wide Bold Bold";
    font-size: 1.65rem;
    color: black;
    padding: 0;
    margin: 0;
}

.volatil-card > .para-block > p {
    color: black;
    font-size: 14px;
    font-family: "PretendardVariable";
    line-height: 20px;
    margin-top: 0;
}

.columns-container {
    width: 100%;
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*align-items: flex-start;*/
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}
