/* ==========================================================================
   HTA FLUID LOGO CONTAINER COMPONENT (Grid Responsive Layer Setup)
   ========================================================================== */

.hta-logo-box-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(213, 232, 236, 0.5);
    border-radius: 30px; 
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 0 auto;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-decoration: none;
    text-align: center;
}

.hta-logo-box-card.sz-small {
    width: 180px;
    height: 90px;
    padding: 12px 16px;
    border-radius: 20px;
}

.hta-logo-box-card.sz-medium {
    width: 240px;
    height: 120px;
    padding: 20px 24px;
}

.hta-logo-box-card.sz-large {
    width: 320px;
    height: 160px;
    padding: 24px 32px;
}

.hta-logo-box-card:hover {
	background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    border-color: var(--title-color, #4F9FA6);
    box-shadow: 0 10px 25px rgba(136, 183, 189, 0.12);
}

.hta-logo-img-wrap {
    width: 100%;
    height: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hta-logo-box-card.sz-small .hta-logo-img-wrap {
    height: 70%;
}

.hta-logo-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: grayscale(0%);
    opacity: 1;
    transition: filter 0.2s ease, opacity 0.2s ease;
}

.hta-logo-box-card:hover .hta-logo-img-wrap img {
	filter: grayscale(100%);
    opacity: 0.75;
}

.hta-logo-meta-lbl {
    font-family: var(--font-main, sans-serif);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-regular, #4A5456);
    opacity: 0.65;
    margin-top: 6px;
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    display: block;
}

.hta-logo-box-card.sz-small .hta-logo-meta-lbl {
    font-size: 9.5px;
    margin-top: 4px;
}

@media (max-width: 480px) {
	.hta-logo-box-card.sz-small .hta-logo-img-wrap {
		height: 75%;
	}
	.hta-logo-box-card.sz-small {
		width: 150px;
		height: 75px;
	}
}