
/* Basic styling for the detail page content */
.gundem-detail-container {
    margin-top: 120px; /* Adjust as needed to clear your fixed navbar */
    padding: 30px 15px;
}

.gundem-image-wrapper {
    margin-bottom: 30px;
    text-align: center;
}

.gundem-image-wrapper img {
    max-width: 100%;
    height: auto;
    max-height: 60vh;
    border-radius: 8px; /* Slightly rounded corners for the image */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gundem-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.gundem-meta {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    text-align: center;
}

.gundem-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    text-align: justify; /* Justify text for a clean look */
}

/* Basic responsive adjustments if not already handled by Bootstrap */
@media (max-width: 768px) {
    .gundem-title {
        font-size: 2rem;
    }
    .gundem-content {
        font-size: 1rem;
    }
    .gundem-detail-container {
        margin-top: 100px;
        padding: 20px 10px;
    }
}