/* Main wrapper & layout */
.info-tabs-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin-bottom: 20px;
}

/* Tabs Navigation Bar (Modern Underlined Pills) */
.info-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 32px;
    border-bottom: 1px solid #e2e8f0;
}

.info-tabs-btn {
    border: 1px solid transparent;
    background: transparent;
    color: #64748b;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    margin-bottom: -1px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.info-tabs-btn:hover {
    color: #0f172a;
}

.info-tabs-btn.active {
    background: #ffffff;
    color: #1e3a8a;
    border: 1px solid #e2e8f0;
    border-bottom-color: #ffffff;
}

/* Content sheets */
.info-tabs-sheet {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-tabs-sheet.active {
    display: block;
    animation: fadeInSheet_a7f87bb2 0.4s ease forwards;
}

@keyframes fadeInSheet_a7f87bb2 {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 2-Column responsive Portfolio Grid */
.info-tabs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Content Cards */
.info-tabs-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-tabs-card-body {
    padding: 32px;
    flex-grow: 1;
}

/* Brand Logo */
.info-tabs-card-logo {
    margin-bottom: 24px;
    height: 45px;
    display: flex;
    align-items: center;
}

.info-tabs-card-logo img {
    display: block;
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

/* Brand description */
.info-tabs-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #334155 !important; /* Ensure visibility */
    margin: 0;
    font-weight: 400;
}

/* Attributes bottom grid */
.info-tabs-card-footer {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-top: 1px solid #e2e8f0;
}

.info-tabs-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.info-tabs-meta-col {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-tabs-meta-col:not(:last-child) {
    border-right: 1px solid rgba(14, 165, 233, 0.2);
}

.info-tabs-meta-label {
    font-size: 11px;
    font-weight: 600;
    color: #0369a1 !important; /* Ensure visibility */
    margin-bottom: 3px;
    text-transform: capitalize;
    letter-spacing: 0.02em;
}

.info-tabs-meta-value {
    font-size: 14px;
    font-weight: 500;
    color: #0f172a !important; /* Ensure visibility */
    margin-left: 0px;
}

/* Responsive styles */
@media (max-width: 991px) {
    .info-tabs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 580px) {
    .info-tabs-meta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-tabs-meta-col {
        border-bottom: 1px solid rgba(14, 165, 233, 0.2);
    }
    
    .info-tabs-meta-col:nth-child(2n) {
        border-right: none;
    }
}
