/* hmc Container */
.hmc-container-c077236f { display: flex; gap: 2rem; background: #fff; padding: 2rem; border-radius: 12px; font-family: sans-serif; flex-wrap: wrap; box-shadow: 0 4px 15px rgba(0,0,0,0.05); box-sizing: border-box; width: 100%; }
.hmc-left-c077236f { flex: 1 1 300px; min-width: 0; display: flex; flex-direction: column; max-width: 100%; }
.hmc-right-c077236f { flex: 1.5 1 300px; min-width: 0; background: #f9f9f9; border-radius: 8px; display:flex; align-items:center; justify-content:center; overflow:hidden; max-width: 100%; }
.hmc-right-c077236f img { width: 100%; height: auto; display: block; object-fit: cover; }
.hmc-placeholder-c077236f { padding: 4rem; color: #999; text-align: center; }

/* Toggle Button */
.hmc-toggle-wrap-c077236f { display: inline-flex; background: #f0f0f0; border-radius: 8px; padding: 4px; margin-bottom: 2rem; align-self: flex-start; max-width: 100%; overflow-x: auto; }
.hmc-toggle-btn-c077236f { border: none; background: transparent; padding: 10px 24px; border-radius: 6px; cursor: pointer; font-weight: 600; font-size: 14px; transition: all 0.3s ease; color: #555; white-space: nowrap; }
.hmc-toggle-btn-c077236f.active { background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1); color: #000; }

/* Company Info */
.hmc-company-c077236f { background: #f9f9f9; padding: 16px; border-radius: 8px; margin-bottom: 1.5rem; word-break: break-word; }
.hmc-company-name-c077236f { margin: 0 0 4px 0; font-size: 18px; font-weight: 700; color: #111; }
.hmc-company-address-c077236f { margin: 0; font-size: 14px; color: #666; }

/* Metric Rows */
.hmc-metric-c077236f { display: flex; align-items: center; justify-content: space-between; background: #f9f9f9; padding: 12px 16px; border-radius: 8px; margin-bottom: 10px; font-size: 15px; font-weight: 500; gap: 1rem; flex-wrap: wrap;}
.hmc-metric-val-c077236f { color: white; padding: 4px 12px; border-radius: 6px; font-weight: 700; font-size: 14px; white-space: nowrap; }
.hmc-val-bad-c077236f { background: #ba4a4a; }
.hmc-val-good-c077236f { background: #4aba4a; }

/* States */
.hmc-state-before-c077236f, .hmc-state-after-c077236f { display: none; }
.is-before .hmc-state-before-c077236f { display: block; }
.is-after .hmc-state-after-c077236f { display: block; }

/* Mobile Adjustments */
@media (max-width: 767px) {
    .hmc-container-c077236f { padding: 1.5rem; gap: 1.5rem; }
    .hmc-left-c077236f, .hmc-right-c077236f { flex: 1 1 100%; min-width: 100%; }
    .hmc-metric-c077236f { flex-direction: column; align-items: flex-start; gap: 8px; }
    .hmc-toggle-wrap-c077236f { width: 100%; }
    .hmc-toggle-btn-c077236f { flex: 1; text-align: center; }
}