

.image-manual-card {
    background: #111;
    border: 1px solid #2f2f2f;
    border-radius: 14px;
    padding: 16px;
    max-width: 700px;
    margin: 20px auto;
    text-align: center;
    transition: 0.3s ease;
}

.image-manual-card:hover {
    border-color: #c1121f;
    box-shadow: 0 0 12px rgba(193, 18, 31, 0.3);
}

/* FIXED IMAGE STYLE */
.post-image {
    width: 100%;
    height: auto;              /* Maintain original ratio */
    display: block;
    border-radius: 10px;
    border: 1px solid #3a3a3a;
    margin-bottom: 14px;
    background: #000;

    /* Optional: prevent very tall images breaking layout */
    max-height: 80vh;
    object-fit: contain;       /* Show full image without cropping */
}

/* Button */
.view-image-btn {
    display: inline-block;
    padding: 10px 18px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #c1121f, #780000);
    transition: 0.3s ease;
}

.view-image-btn:hover {
    background: linear-gradient(135deg, #e5383b, #9d0208);
    box-shadow: 0 0 10px rgba(197, 18, 31, 0.5);
    transform: translateY(-2px);
}