/* ===========================
   Force logo to maximum size
   =========================== */

/* Force the header height */
header.site-header {
    height: 120px !important;       /* increase as needed */
    min-height: 120px !important;   /* ensure min height */
}

/* Force logo container height */
header.site-header .logo,
header.site-header .logo a {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
}

/* Force logo image to fill container */
header.site-header .logo img {
    height: 100% !important;
    width: auto !important;
    max-width: none !important;     /* ignore any previous max-width */
    display: block !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    header.site-header {
        height: 80px !important;   /* smaller header on mobile */
        min-height: 80px !important;
    }
    header.site-header .logo img {
        height: 100% !important;
        max-width: none !important;
    }
}

/* COMMENTS */

.comments-wrapper {
    margin-top: 60px;
    padding: 30px;
    background: #f5f5f5;
    border-radius: 12px;
}

.comment-item {
    background: white;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.06);
}

.comment-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
}

.comments-wrapper input,
.comments-wrapper textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

.comments-wrapper button {
    background: #222;
    color: white;
    padding: 10px 18px;
    border: none;
}
