.psc-566-card {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 100%;
    border-left: 3px solid transparent; /* Defined via controls, fallback transparent */
}

/* Header */
.psc-566-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    min-height: 60px; /* To maintain some height if elements are missing */
}

.psc-566-header-logo img {
    max-width: 150px; /* Default value, overridden by controls */
    height: auto;
    object-fit: contain;
    display: block;
}

.psc-566-abbr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px; /* Default overridden by controls */
    height: 60px; /* Default overridden by controls */
    border: 1px solid;
    border-radius: 12px;
    font-size: 20px; /* Default overridden by controls */
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
}

.psc-566-header-text {
    display: flex;
    flex-direction: column;
}

.psc-566-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.psc-566-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Divider */
.psc-566-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

/* Body */
.psc-566-body {
    margin-bottom: 30px;
}

.psc-566-cat-tag {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.05);
}

.psc-566-description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Metrics */
.psc-566-metrics {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.psc-566-metric-item {
    display: flex;
    flex-direction: column;
}

.psc-566-metric-value {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
}

.psc-566-metric-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Tags */
.psc-566-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.psc-566-tag {
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.05);
    white-space: nowrap;
}

/* Footer / Button */
.psc-566-footer {
    margin-top: auto;
}

.psc-566-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: transparent;
}

.psc-566-button:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.psc-566-btn-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.psc-566-button:hover .psc-566-btn-icon {
    transform: translateX(4px);
}
