.drug-card-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.drug-card-title-row .drug-brand {
    margin-bottom: 0;
}

.drug-basic-tags {
    margin-bottom: 0.75rem;
}

.drug-safety-tags {
    margin-bottom: 1rem;
}

.badge-date {
    flex-shrink: 0;
    background: hsla(145, 80%, 50%, 0.12);
    border: 1px solid hsla(145, 80%, 50%, 0.35);
    color: var(--status-green);
}

.badge-muted {
    flex-shrink: 0;
    background: hsla(240, 25%, 18%, 0.55);
    border: 1px solid hsla(240, 25%, 35%, 0.25);
    color: var(--text-muted);
}

.badge-info {
    background: hsla(205, 85%, 60%, 0.14);
    border: 1px solid hsla(205, 85%, 60%, 0.38);
    color: hsl(205, 90%, 70%);
}

.badge-solid {
    color: #ffffff;
    background: hsla(0, 85%, 60%, 0.28);
}

.clinical-summary {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 0.9rem;
    padding: 0.9rem;
    border: 1px solid hsla(240, 25%, 30%, 0.18);
    border-radius: 14px;
    background: hsla(240, 25%, 9%, 0.35);
}

.clinical-summary-row {
    display: grid;
    grid-template-columns: 3.25rem 1fr;
    gap: 0.65rem;
    align-items: start;
}

.clinical-summary-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.45rem;
    border-radius: 999px;
    background: hsla(263, 90%, 65%, 0.15);
    color: var(--accent-start);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.clinical-summary-text {
    color: var(--text-secondary);
    font-size: 0.86rem;
    line-height: 1.55;
}

@media (max-width: 520px) {
    .drug-card-title-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .clinical-summary-row {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .clinical-summary-label {
        width: fit-content;
        padding: 0 0.65rem;
    }
}
