/* Header Styles */
.mh-6173-widget-wrapper {
    display: flex;
    flex-direction: column;
}

.mh-6173-top-header {
    text-align: center;
    /* margin-bottom controlled dynamically via Elementor controls if needed, 
       default zeroed out so spacing controls govern it. */
}

.mh-6173-header-date {
    text-align: left;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.mh-6173-main-logo {
    display: inline-block;
    max-width: 100%;
    height: 80px; /* default */
    object-fit: contain;
    margin-bottom: 20px; /* default */
}

.mh-6173-header-line {
    border-bottom: 1px solid #ddd; /* Solid default to make sure it shows */
    width: 100%;
    margin-bottom: 30px; /* default space below line */
}

/* Container Styles */
.mh-6173-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.mh-6173-hero {
    flex: 1 1 60%;
    min-width: 300px;
}

.mh-6173-sidebar {
    flex: 1 1 35%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 250px;
    /* justify-content controlled dynamically */
}

.mh-6173-link-overlay,
.mh-6173-side-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.mh-6173-link-overlay:hover,
.mh-6173-side-link:hover {
    opacity: 0.9;
}

/* Hero Styles */
.mh-6173-hero-img {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
    margin-bottom: 20px;
}

.mh-6173-hero-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mh-6173-cat {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    letter-spacing: 1px;
}

.mh-6173-hero .mh-6173-title {
    font-size: 28px;
    line-height: 1.2;
    margin: 0;
    color: #111;
}

.mh-6173-excerpt {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.mh-6173-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}

/* Side Item Styles */
.mh-6173-side-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.mh-6173-side-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mh-6173-side-link {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.mh-6173-side-img {
    width: 100px;
    height: 100px;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
    flex-shrink: 0;
}

.mh-6173-side-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mh-6173-side-item .mh-6173-title {
    font-size: 16px;
    line-height: 1.3;
    margin: 0;
    color: #111;
}

@media (max-width: 768px) {
    .mh-6173-container {
        flex-direction: column;
    }
}