.ca-home-talk-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.ca-home-talk-grid > * {
    flex: 0 0 calc(33.333% - 12px);
    min-width: 320px;
}

.ca-home-talk-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 440px;
    padding: 28px;
    border-radius: 8px;
    background: var(--ca-surface-muted);
    border: 1px solid var(--ca-border-soft);
}

.ca-home-talk-card--rich {
    background: var(--ca-surface-muted);
    border-color: var(--ca-border-soft);
}

@keyframes ca-talk-card-enter {
    from {
        opacity: 0;
        transform: translate3d(0, 22px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .ca-js .ca-home-talk-grid > .ca-home-talk-card.is-reveal-ready {
        opacity: 0;
        transform: translate3d(0, 22px, 0);
        will-change: opacity, transform;
        transition: opacity 0.6s ease, transform 0.6s ease;
        transition-delay: var(--ca-reveal-delay, 0s);
    }

    .ca-js .ca-home-talk-grid > .ca-home-talk-card.is-reveal-ready.is-inview {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.ca-home-talk-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ca-home-talk-card__pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 8px;
    background: var(--ca-surface);
    color: var(--ca-text-base);
    font-size: var(--ca-type-13);
    font-weight: var(--ca-weight-600);
}

.ca-home-talk-card__category {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 90%;
    color: var(--ca-text-base);
    font-size: var(--ca-type-15);
    font-weight: var(--ca-weight-400);
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ca-home-talk-card__category-row {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
}

.ca-home-talk-card__category-dot {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 999px;
    box-shadow: 0 0 0 4px rgba(var(--ca-header-bg-rgb), 0.06);
}

.ca-home-talk-card__divider {
    width: 100%;
    height: 1px;
    margin: 18px 0;
    background: var(--ca-border-soft);
}

.ca-home-talk-card__title {
    margin: 0;
    color: var(--ca-text-strong);
    font-size: clamp(20px, 1vw, 28px);
    font-weight: var(--ca-weight-500);
    line-height: 1.08;
}

.ca-home-talk-card__title a {
    color: inherit;
    text-decoration: none;
}

.ca-home-talk-card__title a:hover {
    text-decoration: none;
}

.ca-home-talk-card__spacer {
    flex: 1 1 auto;
    min-height: 28px;
}

.ca-home-talk-card__section-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin: 0 0 12px;
}

.ca-home-talk-card__info-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.ca-home-talk-card__info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--ca-border-soft);
    border-radius: 999px;
    background: var(--ca-surface);
    color: var(--ca-text-base);
    font-size: var(--ca-type-13);
    font-weight: var(--ca-weight-500);
    line-height: 1;
    text-decoration: none;
}

.ca-home-talk-card__info-badge-text {
    display: inline-block;
    min-width: 0;
    max-width: 150px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ca-home-talk-card__info-badge:hover {
    color: var(--ca-text-strong);
    text-decoration: none;
}

.ca-home-talk-card__info-badge--section .ca-home-talk-card__info-badge-text {
    max-width: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ca-home-talk-card__info-badge--favorite {
    justify-content: center;
    width: 38px;
    padding: 0;
    cursor: default;
}

.ca-home-talk-card__info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    min-width: 14px;
    font-size: var(--ca-type-14);
    line-height: 1;
}

.ca-home-talk-card__info-badge--calendar .ca-home-talk-card__info-icon {
    position: relative;
    font-size: 0;
}

.ca-home-talk-card__info-badge--calendar .ca-home-talk-card__info-icon::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background: currentColor;
    -webkit-mask: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='5.5' width='17' height='15' rx='3'/%3E%3Cpath d='M7.5 3.5v4M16.5 3.5v4M3.5 9.5h17'/%3E%3C/svg%3E");
    mask: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='5.5' width='17' height='15' rx='3'/%3E%3Cpath d='M7.5 3.5v4M16.5 3.5v4M3.5 9.5h17'/%3E%3C/svg%3E");
    opacity: 0.92;
}

.ca-home-talk-card__divider--speakers {
    margin-bottom: 16px;
}

.ca-talk-schedule-board-wrap {
    max-width: 100%;
    overflow-x: auto;
}

.ca-talk-schedule-board {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ca-talk-schedule-board--by-hour {
    min-width: calc((var(--ca-schedule-columns, 3) * var(--ca-schedule-column-width, 260px)) + (var(--ca-schedule-columns, 3) * 18px));
}

.ca-talk-schedule-board__sections {
    display: grid;
    grid-template-columns: repeat(var(--ca-schedule-columns, 3), minmax(0, 1fr));
    gap: 18px;
}

.ca-talk-schedule-board__sections-item {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 0 2px;
}

.ca-talk-schedule-board__time-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ca-talk-schedule-board__group-title {
    margin: 0;
    padding: 0 0 10px;
    color: var(--ca-text-strong);
    font-size: var(--ca-type-15);
    font-weight: var(--ca-weight-600);
    line-height: 1.2;
    border-bottom: 1px solid var(--ca-border-soft);
}

.ca-talk-schedule-board__column-title {
    margin: 0;
    color: var(--ca-text-strong);
    font-size: var(--ca-type-20);
    line-height: 1.15;
    font-weight: var(--ca-weight-600);
}

.ca-talk-schedule-board__group-grid {
    display: grid;
    gap: 18px;
    align-items: stretch;
}

.ca-talk-schedule-board__slot {
    display: flex;
    min-width: 0;
    min-height: 0;
}

.ca-home-talk-card--schedule {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    padding: 22px;
}

.ca-home-talk-card--schedule .ca-home-talk-card__spacer {
    flex: 1 1 auto;
    min-height: 18px;
}

.ca-talk-schedule-board__slot > .ca-card,
.ca-talk-schedule-board__slot > .ca-talk-schedule-board__continuation {
    width: 100%;
    height: 100%;
}

.ca-home-talk-card--schedule-blitz {
    min-height: 0;
    padding: 18px;
}

.ca-home-talk-card--schedule-blitz .ca-home-talk-card__title {
    font-size: var(--ca-type-18);
    line-height: 1.18;
}

.ca-home-talk-card--schedule-blitz .ca-home-talk-card__spacer {
    min-height: 12px;
}

.ca-home-talk-card--schedule-blitz .ca-home-talk-card__section-row {
    margin-bottom: 10px;
}

.ca-home-talk-card--schedule-blitz .ca-home-talk-card__info-row {
    gap: 8px;
    justify-content: flex-start;
}

.ca-home-talk-card--schedule-blitz .ca-home-talk-card__info-badge {
    min-height: 32px;
    padding: 0 12px;
    font-size: var(--ca-type-12);
}

.ca-home-talk-card__info-badge--icon-only {
    width: 32px;
    min-width: 32px;
    justify-content: center;
    padding: 0;
}

.ca-home-talk-card__info-badge--icon-only .ca-home-talk-card__info-badge-text {
    display: none;
}

.ca-home-talk-card__avatar-stack {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    padding-left: 8px;
}

.ca-home-talk-card__avatar-stack-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-left: -10px;
    border: 2px solid var(--ca-surface-muted);
    border-radius: 999px;
    overflow: hidden;
    background: var(--ca-surface);
    box-shadow: 0 0 0 1px var(--ca-border-soft);
    color: var(--ca-text-muted);
    font-size: var(--ca-type-12);
    font-weight: var(--ca-weight-600);
}

.ca-home-talk-card__avatar-stack-item:first-child {
    margin-left: 0;
}

.ca-home-talk-card__avatar-stack-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ca-home-talk-card__speaker-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.ca-home-talk-card__speaker-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    color: var(--ca-text-base);
    text-decoration: none;
}

.ca-home-talk-card__speaker-chip:hover {
    color: var(--ca-text-strong);
    text-decoration: none;
}

.ca-home-talk-card__speaker-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 999px;
    background: var(--ca-surface);
    border: 1px solid var(--ca-border-soft);
    overflow: hidden;
}

.ca-home-talk-card__speaker-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ca-home-talk-card__speaker-avatar.is-fallback {
    color: var(--ca-text-muted);
    font-size: var(--ca-type-13);
    font-weight: var(--ca-weight-600);
}

.ca-home-talk-card__speaker-label {
    color: inherit;
    font-size: var(--ca-type-15);
    font-weight: var(--ca-weight-500);
    line-height: 1.35;
}

.ca-talk-schedule-board__continuation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 18px 20px;
    border: 1px dashed var(--ca-border-soft);
    border-radius: 16px;
    background: var(--ca-surface);
    color: var(--ca-text-muted);
}

.ca-talk-schedule-board__continuation-label {
    font-size: var(--ca-type-11);
    font-weight: var(--ca-weight-600);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ca-talk-schedule-board__continuation-title {
    color: var(--ca-text-base);
    font-size: var(--ca-type-15);
    font-weight: var(--ca-weight-500);
    line-height: 1.35;
}

.ca-talk-schedule-board__break {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 88px;
    border: 1px dashed var(--ca-border-soft);
    border-radius: 8px;
    background: color-mix(in srgb, var(--ca-surface) 70%, transparent);
    text-align: center;
}

.ca-talk-schedule-board__break-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--ca-surface);
    color: var(--ca-text-muted);
    font-size: var(--ca-type-13);
    line-height: 1.35;
}

.ca-talk-schedule-board__global-break {
    margin-top: -2px;
    padding: 14px 18px;
    border: 1px dashed var(--ca-border-soft);
    border-radius: 16px;
    text-align: center;
    color: var(--ca-text-muted);
    font-size: var(--ca-type-14);
    line-height: 1.4;
}

@media (max-width: 1280px) {
    .ca-talk-schedule-board--by-hour {
        --ca-schedule-column-width: 240px;
    }
}

@media (max-width: 960px) {
    .ca-home-talk-grid > * {
        flex-basis: calc(50% - 8px);
    }

    .ca-talk-schedule-board--by-hour {
        --ca-schedule-column-width: 220px;
    }
}

@media (max-width: 720px) {
    .ca-home-talk-grid > * {
        flex-basis: 100%;
        min-width: 0;
    }

    .ca-talk-schedule-board__group-grid,
    .ca-talk-schedule-board__sections {
        gap: 12px;
    }

    .ca-home-talk-card--schedule-blitz {
        width: 100%;
    }
}
