.stc-grid {
    display: grid;
    gap: 24px;
    width: 100%;
}

.stc-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stc-card:hover {
    transform: translateY(-4px);
}

.stc-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.stc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gradient overlay directly integrated to make texts/chips crisp and stand out */
.stc-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
}

/* Chips Container */
.stc-chips-container {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Elegant Presenter Chip */
.stc-presenter-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 10px 4px 4px;
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.stc-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.stc-presenter-name {
    font-size: 11px;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stc-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 24px;
}

.stc-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.stc-hook {
    margin: 0 0 16px 0;
    font-size: 14px;
    line-height: 1.5;
    font-style: italic;
}

.stc-outcomes-divider {
    height: 1px;
    background-color: #e2e8f0;
    margin-bottom: 16px;
}

.stc-outcomes-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.stc-outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.stc-outcome-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.stc-outcome-icon svg {
    width: 100%;
    height: 100%;
}

.stc-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.stc-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 13px;
}

.stc-meta-label {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.05em;
}

.stc-meta-val {
    line-height: 1.4;
}

.stc-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background-color: #1e293b;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin-top: 8px;
}

.stc-cta-btn:hover {
    background-color: #0f172a;
    color: #ffffff;
}
