.postImageSource {
    margin: 0 0 24px;
}

.postImageSource img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.postimage-wrapper {
    position: relative;
}

.postimage-source {
    border-radius: 17px;
    border: 2px solid rgba(255, 255, 255, .58);
    background: rgba(0, 0, 0, .5);
    text-align: center;
    position: absolute;
    bottom: 25px;
    right: 20px;
    color: #fff;
    padding: 4px 15px;
    font-size: 14px;
    min-height: 34px;
    min-width: 34px;
    max-width: 34px;
    transition: .1s;
    overflow: hidden;
    z-index: 10;
}

.postimage-source:hover {
    max-width: 100%;
}

.postimage-source::before {
    pointer-events: none;
    text-rendering: auto;
    font-family: 'dashicons';
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    content: "i";
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    transition: .1s;
}

.postimage-source:hover::before {
    opacity: 0;
    visibility: hidden;
}

.postimage-source > div {
    white-space: nowrap;
    display: block;
    opacity: 0;
    transition: opacity .1s ease-in-out;
}

.postimage-source:hover>div {
    opacity: 1;
}

.postImageSource a:hover>picture::before,
.postImageSource:hover a>picture::before {
    background: rgba(255, 255, 255, .25);
    border-radius: 5px;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.postImageSource:hover a:has(img)::before {
    background: rgba(255, 255, 255, .25);
    border-radius: 5px;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}