/* Agenda Card Component Styles
   Extracted from inline styles in agenda-card.blade.php to reduce HTML size */

/* Item number link */
.card-item-link {
    color: #333;
    text-decoration: none;
    border-bottom: 2px solid #007bff;
    padding-bottom: 2px;
    cursor: pointer;
}
.card-item-link:hover {
    color: #007bff;
}

/* NEW badge */
.badge-new {
    font-size: 0.7em;
    margin-right: 5px;
}

/* Item header title */
.card-item-header {
    font-family: Recoleta;
    font-weight: bold;
}

/* Title display areas */
.card-title-text {
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
}

/* AI summary title */
.card-ai-summary {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 4px;
}

/* AI full title toggle link */
.card-ai-toggle {
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
}

/* AI full title expanded text */
.card-ai-full-title {
    display: none;
    font-size: 14px;
    margin-top: 4px;
    text-align: justify;
}

/* Hearing time & applicable area badges */
.badge-meta {
    font-size: 0.85em;
    font-weight: 500;
    padding: 5px 10px;
}

/* Status alert bar */
.card-status-alert {
    border-radius: 0;
    font-weight: 600;
}

/* Sponsors grid */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    justify-items: center;
}

/* Individual sponsor item */
.sponsor-item {
    display: inline-block;
    text-align: center;
    margin: 10px;
}

/* Sponsor avatar containers */
.sponsor-avatar {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.sponsor-avatar--round {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto;
}

.sponsor-avatar--round img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Sponsor icon (fallback) */
.sponsor-icon {
    font-size: 72px;
    color: #666;
}

/* Sponsor icon (with visual config, no color override) */
.sponsor-icon--configured {
    font-size: 72px;
}

/* Sponsor name caption */
.sponsor-caption {
    display: block;
    text-align: center;
}
