.social-icon {
    font-size: 2rem;
}

.text-bg-danger {
    background-color: var(--wa-color-danger-fill-loud);
    color: var(--wa-color-danger-on-loud)
}

.text-bg-brand {
    background-color: var(--wa-color-brand-fill-loud);
    color: var(--wa-color-brand-on-loud)
}

code {
    color: var(--wa-color-warning-on-quiet);
    background: var(--wa-color-surface-lowered);
}

[hidden] {
    display: none !important;
}

.ec-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem;
    border-radius: 12px;
    margin: 10px 0;
    background: var(--wa-color-surface-raised);
    border: 1px solid var(--wa-color-surface-border);
}

.ec-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ec-image {
    max-width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.ec-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ec-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--wa-color-neutral-30);
}

.ec-badge-icon {
    background: var(--wa-color-danger-60);
    color: white;
    font-weight: bold;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.ec-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wa-color-neutral-fill-loud);
}

.ec-subtitle {
    font-size: 0.95rem;
    color: var(--wa-color-text-quiet);
}

.ec-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.ec-details {
    font-size: 0.9rem;
    text-decoration: none;
}

.ec-details:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .ec-card {
        flex-direction: column;
        align-items: stretch;
    }

    .ec-right {
        align-items: stretch;
    }

    .ec-image {
        width: 100%;
        height: auto;
    }
}