.imageSection {
    text-align: center;
}

.gallery {
    margin-top: 35px;
    margin-bottom: 60px;
    width: 90%;
}

.form:hover,
.gallery:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.commentArea,
.image {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    width: 800px;
    margin: 20px auto;
}

.img {
    width: 400px;
    height: 450px;
    padding-top: 14px;
    object-fit: contain;
}

.commentHeader,
.imageHeader {
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;  
}

.image {
    width: 600px;
}

.imageControls, 
.commentControls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.imageDetails {
    text-align: center;
}

.imageHeader h2,
.commentHeader h2 {
    display: inline-flex; 
    align-items: center;
    gap: 10px;
}
  
.imageHeader h2::after {
    content: "";
    width: 48px;
    height: 48px;
    background: url('../media/picture.png');
    background-size: contain;
}
  
.commentHeader h2::after {
    content: "";
    width: 48px;
    height: 48px;
    background: url('../media/comments.png');
    background-size: contain;
}
