.issue-img-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.issue-img-container img {
    border-radius: var(--small-border);
    max-width: 100%;
}

.issue-img-container figcaption {
    display: none;
}

.issue-title {
    font-size: 30pt;
    font-weight: bold;
    margin-bottom: 18px;
}

.issue-content {
    font-size: var(--details-font-size);
    font-weight: var(--details-font-weight);
}

.right-side-details button {
    background-color: var(--primary-red);
    border-radius: var(--border-radius-md);
    color: white;
    padding: 5px var(--small-padding);
    border: none;
    margin-top: 20px;
}

.right-side-details .bi.bi-download {
    margin-right: 5px;
}

.hide-download .right-side-details {
    display: none;
}

.hide-download .issue-title {
    margin: 0;
}

@media(max-width:772px){

    .issue-title {
        font-size: 28pt;
        font-weight: bold;
        margin-bottom: 18px;
    }
}

