

.datebar {
    display: flex;
    gap: 30px;
}

.datebar .data-label {
    margin-top: 0;
}

.tag {
    font-size: 16px !important;
    transition: 0.3s ease-out;
}

.tag:hover {
    color: var(--green5);
}

.contentblock {
    width: 100% !important;
}

.contentblock img {
    max-width: 100%;
    height: fit-content !important;
    object-fit: contain;
}

.contentblock > h3 span {
    font-weight: 600;
}

.pdf_download {
    outline: 1px solid #000;
    height: fit-content;
    padding: 20px;
    margin-top: 10px;
    transition: 0.2s ease-out;
    text-align: center;
    width: fit-content;
}

.pdf_download:hover {
    background-color: var(--green);
    outline: 1px solid var(--green);
    color: var(--bg-color);
}

@media (min-width: 660px) {
    .pdf_mobile {
        display: none !important;
    }

    .mob_hr {
        display: none;
    }
}

@media (max-width: 660px) {
    .pdf_download {
        display: none;
    }

    .pdf_mobile {
        display: flex !important;
        width: 100% !important;
        justify-content: center;
        margin-top: 30px;
        margin-bottom: 30px;
    }
}