.pdfDownloadArea {
    display: flex;
    gap: 24px;
    padding: 24px;
    border: 1px solid #ccc;
    justify-content: center;
    align-items: center;
}

.pdfDownloadArea_thumb {
    width: 120px;
    max-width: 120px;
}
.pdfDownloadArea_body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.pdfDownloadArea_body_text {
    position: relative;
    font-size: 18px;
    padding-left: 40px;
}
.pdfDownloadArea_body_text:before {
    position: absolute;
    left: 0;
    top: 5px;
    content: "";
    width: 24px;
    height: 16px;
    display: inline-block;
    background-color: #d6a224;
}
.pdfDownloadArea_body_text:after {
    position: absolute;
    left: 24px;
    top: 5px;
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid #d6a224;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    display: inline-block;
}
.pdfDownloadArea_body_button {
    position: relative;
    background-color: #0d2b63;
    color: #fff;
    font-weight: 700;
    width: 320px;
    max-width: 100%;
    text-align: center;
    padding: 12px;
}

.pdfDownloadArea_body_button:before {
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
    background: url("/wp-content/themes/kuiso/filesdir/images/icons/icon_download-white.svg") no-repeat;
    background-size: contain;
    margin-right: 8px;
    position: relative;
    top: 2px;
}

@media screen and (max-width: 767px) {

    .pdfDownloadArea {
        gap: 16px;
        flex-direction: column;
        padding: 24px 0;
    }
    .pdfDownloadArea_body {
        gap: 8px;
        width: 85%;
        max-width: 400px;
    }
    .pdfDownloadArea_body_text {
        font-size: 14px;
        padding-left: 24px;
    }
    .pdfDownloadArea_body_text:before {
        top: 4px;
        width: 16px;
        height: 12px;
    }
    .pdfDownloadArea_body_text:after {
        top: 4px;
        left: 16px;
        border-left: 6px solid #d6a224;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
    }
    .pdfDownloadArea_body_button {
        width: auto;
    }

}
