/* css/pinterest-pin-button.css */
.pinterest-pin-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.pinterest-pin-container img {
    max-width: 100%;
    height: auto;
}

.pinterest-pin-button {
    position: absolute;
    top: 10px;
    left: 10px;
    display:flex;
    align-items:center;
    gap:4px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 100;
    font-family:Arial,Helvetica,sans-serif !important;
    color:#ffffff;
    background-color:#BE0215;
    padding:4px 8px;
    border-radius:8px;
    cursor:pointer;
    font-size: 14px;
}

.pinterest-pin-container:hover .pinterest-pin-button {
    opacity: 1;
    color:#ffffff;
}

@media (max-width: 768px) {
    .pinterest-pin-button {
         opacity: 1;
         position: absolute;
         top: 10px;
         left: 10px;
    }
}