/* Container for the social icons + PDF icon */
.ita-landing-page__share {
    display: flex;
    align-items: center;       /* vertical alignment */
    justify-content: flex-end; /* right-align icons */
    margin-bottom: 20px;
}

/* PDF icon wrapper */
.ita-landing-page__share .ita_button_pdf {
    order: -1;                 /* negative puts it before */
    display: flex;             /* align inner img properly */
    align-items: center;       /* vertically center in row */
    width: 32px;
    height: 32px;
    margin-right: 2.5px;        /* move it right */
    margin-bottom: -1.0px;
}

/* PDF icon image */
.ita-landing-page__share .ita_button_pdf img {
    display: block;
    width: 32px;
    height: 32px;
    cursor: pointer;
    margin-bottom: -1.8px;
    transition: filter 0.1s ease-in-out; /* fast hover transition */
}

/* Hover state: fast + sharp contrast */
.ita-landing-page__share .ita_button_pdf:hover img {
    filter: brightness(1.5) contrast(1.2);
}

/* Optional wrapper styling */
.ita-download-pdf-wrapper {
    text-align: center;
    color: #ffffff !important;
    z-index: 10;
}

/* Hide the default huge Entity Print PDF icon */
body .entity-print-icon,
body .pdf-icon,
body img[alt="PDF"] {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

