/**
 * Feature Content - Info Labels
 */

.fc-info-labels {
    --fc-info-label-accent: #2563eb;
    --fc-info-label-bg: #ffffff;
    --fc-info-label-text: #1f2937;
    --fc-info-label-muted: color-mix(in srgb, var(--fc-info-label-text) 82%, transparent);
    --fc-info-label-border: rgba(37, 99, 235, 0.16);
    --fc-info-label-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    --fc-info-label-columns: 3;
    --fc-info-label-icon-font-size: 0.86rem;
    --fc-info-label-label-font-size: 0.78rem;
    --fc-info-label-item-title-font-size: 1rem;
    --fc-info-label-section-title-font-size: 1.1rem;
    --fc-info-label-body-font-size: 0.95rem;
    --fc-info-label-link-font-size: 0.95rem;
    color: var(--fc-info-label-text);
    background: transparent;
    box-sizing: border-box;
    min-height: var(--fc-info-label-cls-min-height, 0);
    contain-intrinsic-size: auto var(--fc-info-label-cls-min-height, 140px);
}

.fc-info-labels.fc-width-custom {
    max-width: var(--fc-info-label-custom-width, 900px);
    margin-left: auto;
    margin-right: auto;
}

.fc-info-labels--custom-padding-top {
    padding-top: var(--fc-info-label-block-padding-top, 0) !important;
}

.fc-info-labels--custom-padding-bottom {
    padding-bottom: var(--fc-info-label-block-padding-bottom, 0) !important;
}

.fc-info-labels--custom-margin-top {
    margin-top: var(--fc-info-label-block-margin-top, 0) !important;
}

.fc-info-labels--custom-margin-bottom {
    margin-bottom: var(--fc-info-label-block-margin-bottom, 0) !important;
}

.fc-info-labels__header {
    margin-bottom: var(--fc-info-label-header-gap, 16px);
}

.fc-info-labels__title {
    color: var(--fc-info-label-text);
    font-size: clamp(1.15rem, 1rem + 0.7vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.fc-info-labels__subtitle {
    margin-top: var(--fc-info-label-title-gap, 6px);
    color: color-mix(in srgb, var(--fc-info-label-text) 72%, transparent);
    font-size: 0.95rem;
    line-height: 1.7;
}

.fc-info-labels__list {
    display: grid;
    gap: var(--fc-info-label-list-gap, 12px);
}

.fc-info-labels__tabs-shell {
    margin-top: 10px;
}

.fc-info-labels__tabs-shell .fc-tabs-nav {
    margin-bottom: 14px;
}

.fc-info-labels__tabs-shell .fc-tab-panel {
    display: none;
}

.fc-info-labels__tabs-shell .fc-tab-panel.is-active {
    display: block;
}

.fc-info-labels--layout-grid .fc-info-labels__list {
    grid-template-columns: repeat(var(--fc-info-label-columns), minmax(0, 1fr));
}

.fc-info-labels--layout-chips .fc-info-labels__list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.fc-info-labels--layout-rail .fc-info-labels__list {
    position: relative;
    padding-left: 18px;
}

.fc-info-labels--layout-rail .fc-info-labels__list::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 6px;
    width: 2px;
    background: color-mix(in srgb, var(--fc-info-label-accent) 36%, transparent);
}

.fc-info-labels__item {
    --fc-info-label-item-color: var(--fc-info-label-accent);
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: var(--fc-info-label-item-gap, 12px);
    min-width: 0;
    padding: var(--fc-info-label-item-padding-y, 16px) var(--fc-info-label-item-padding-x, 16px);
    border: 1px solid var(--fc-info-label-border);
    border-radius: 18px;
    background: var(--fc-info-label-bg);
    box-shadow: var(--fc-info-label-shadow);
}

.fc-info-labels__item--no-icon {
    grid-template-columns: minmax(0, 1fr);
}

.fc-info-labels--layout-chips .fc-info-labels__item {
    width: auto;
    max-width: 100%;
    align-items: center;
}

.fc-info-labels--layout-rail .fc-info-labels__item {
    box-shadow: none;
}

.fc-info-labels--style-pills .fc-info-labels__item {
    border-radius: 999px;
    padding: var(--fc-info-label-item-padding-y, 12px) var(--fc-info-label-item-padding-x, 16px);
    box-shadow: none;
}

.fc-info-labels--style-outline .fc-info-labels__item {
    background: transparent;
    border-color: color-mix(in srgb, var(--fc-info-label-item-color) 38%, #d1d5db);
    box-shadow: none;
}

.fc-info-labels--style-soft .fc-info-labels__item {
    background: color-mix(in srgb, var(--fc-info-label-item-color) 9%, #ffffff);
    box-shadow: none;
}

.fc-info-labels--style-editorial .fc-info-labels__item {
    border-left: 5px solid var(--fc-info-label-item-color);
    border-radius: 12px;
    box-shadow: none;
}

.fc-info-labels--style-marker .fc-info-labels__item {
    grid-template-columns: minmax(0, 1fr);
    padding: var(--fc-info-label-item-padding-y, 16px) var(--fc-info-label-item-padding-x, 20px);
    border-color: color-mix(in srgb, var(--fc-info-label-item-color) 24%, #e5e7eb);
    border-left: 7px solid var(--fc-info-label-item-color);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.fc-info-labels--style-marker .fc-info-labels__icon {
    position: absolute;
    top: 14px;
    right: 14px;
    min-width: 2em;
    height: 2em;
}

.fc-info-labels--style-glass .fc-info-labels__item {
    border-color: rgba(255, 255, 255, 0.58);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(248, 250, 252, 0.58));
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(14px);
}

.fc-info-labels--style-ticket .fc-info-labels__item {
    border: 1px dashed color-mix(in srgb, var(--fc-info-label-item-color) 38%, #cbd5e1);
    border-radius: 18px;
    background:
        radial-gradient(circle at left center, transparent 0 12px, var(--fc-info-label-bg) 13px),
        radial-gradient(circle at right center, transparent 0 12px, var(--fc-info-label-bg) 13px),
        #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.fc-info-labels--style-gradient .fc-info-labels__item {
    border: 0;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, var(--fc-info-label-item-color), color-mix(in srgb, var(--fc-info-label-item-color) 18%, #ffffff)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 16px 38px color-mix(in srgb, var(--fc-info-label-item-color) 18%, transparent);
}

.fc-info-labels--style-minimal .fc-info-labels__item {
    padding: var(--fc-info-label-item-padding-y, 12px) var(--fc-info-label-item-padding-x, 0);
    border-width: 0 0 1px;
    border-color: color-mix(in srgb, var(--fc-info-label-text) 14%, transparent);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.fc-info-labels--style-minimal .fc-info-labels__icon {
    background: transparent;
    color: var(--fc-info-label-item-color);
    border: 1px solid color-mix(in srgb, var(--fc-info-label-item-color) 36%, transparent);
}

.fc-info-labels--style-table .fc-info-labels__header {
    margin-bottom: 0;
    padding: 20px 24px;
    border: 1px solid #d7d9dd;
    border-bottom: 0;
    border-radius: 24px 24px 0 0;
    background: #d5d5d5;
    text-align: center;
}

.fc-info-labels--style-table .fc-info-labels__title {
    font-size: clamp(1.4rem, 1.16rem + 0.6vw, 2rem);
}

.fc-info-labels--style-table .fc-info-labels__subtitle {
    margin-top: 10px;
    color: rgba(31, 41, 55, 0.75);
}

.fc-info-labels--style-table .fc-info-labels__list {
    gap: 0;
}

.fc-info-labels--style-table .fc-info-labels__item {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 0;
    border-width: 0 1px 1px;
    border-color: #d7d9dd;
    border-radius: 0;
    box-shadow: none;
    background: #ffffff;
}

.fc-info-labels--style-table .fc-info-labels__item:first-child {
    border-top: 1px solid #d7d9dd;
}

.fc-info-labels--style-table .fc-info-labels__item:last-child {
    border-radius: 0 0 24px 24px;
}

.fc-info-labels--style-table .fc-info-labels__item--section {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 22px;
    border: 1px solid #d7d9dd;
    border-radius: 24px 24px 0 0;
    background: #d5d5d5;
}

.fc-info-labels--style-table .fc-info-labels__item--section:first-child {
    margin-top: 0;
}

.fc-info-labels--style-table .fc-info-labels__item--section.fc-info-labels__item--section-alone {
    border-radius: 24px;
}

.fc-info-labels--style-table .fc-info-labels__item--section .fc-info-labels__content {
    display: block;
}

.fc-info-labels--style-table .fc-info-labels__item--section .fc-info-labels__copy {
    grid-column: 1 / -1;
    padding: 20px 24px;
    text-align: center;
}

.fc-info-labels--style-table .fc-info-labels__item--section .fc-info-labels__item-title {
    font-size: clamp(1.4rem, 1.16rem + 0.6vw, 2rem);
}

.fc-info-labels--style-table .fc-info-labels__item--section-end:last-child,
.fc-info-labels--style-table .fc-info-labels__item--section-end {
    border-radius: 0 0 24px 24px;
}

.fc-info-labels--style-table .fc-info-labels__icon {
    display: none;
}

.fc-info-labels--style-table .fc-info-labels__content {
    display: grid;
    grid-template-columns: minmax(108px, 180px) minmax(0, 1fr);
    align-items: stretch;
}

.fc-info-labels--style-table.fc-info-labels--table-extra-columns-1 .fc-info-labels__content {
    grid-template-columns: minmax(108px, 180px) minmax(0, 1.55fr) minmax(148px, 0.85fr);
}

.fc-info-labels--style-table.fc-info-labels--table-extra-columns-2 .fc-info-labels__content {
    grid-template-columns: minmax(108px, 180px) minmax(0, 1.35fr) minmax(144px, 0.85fr) minmax(144px, 0.85fr);
}

.fc-info-labels--style-table.fc-info-labels--table-extra-columns-3 .fc-info-labels__content {
    grid-template-columns: minmax(108px, 180px) minmax(0, 1.3fr) minmax(136px, 0.82fr) minmax(136px, 0.82fr) minmax(136px, 0.82fr);
}

.fc-info-labels--style-table .fc-info-labels__copy {
    grid-column: 2;
    padding: 22px 20px;
}

.fc-info-labels--style-table .fc-info-labels__extra-cell {
    min-width: 0;
    padding: 22px 18px;
    border-left: 1px solid #d7d9dd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
}

.fc-info-labels--style-table .fc-info-labels__extra-cell.is-empty {
    background: #fbfbfc;
}

.fc-info-labels--style-table .fc-info-labels__extra-cell-text {
    color: #374151;
    font-size: 0.94rem;
    line-height: 1.7;
}

.fc-info-labels--style-table .fc-info-labels__extra-cell-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--fc-info-label-item-color);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.fc-info-labels--style-table .fc-info-labels__item--no-label .fc-info-labels__content,
.fc-info-labels--style-table .fc-info-labels__item--content-only .fc-info-labels__content {
    grid-template-columns: 1fr;
}

.fc-info-labels--style-table .fc-info-labels__item--no-label .fc-info-labels__copy,
.fc-info-labels--style-table .fc-info-labels__item--content-only .fc-info-labels__copy {
    grid-column: 1 / -1;
    padding-inline: 24px;
}

.fc-info-labels--style-table.fc-info-labels--table-extra-columns-1 .fc-info-labels__item--no-label .fc-info-labels__content,
.fc-info-labels--style-table.fc-info-labels--table-extra-columns-1 .fc-info-labels__item--content-only .fc-info-labels__content {
    grid-template-columns: minmax(0, 1.55fr) minmax(148px, 0.85fr);
}

.fc-info-labels--style-table.fc-info-labels--table-extra-columns-2 .fc-info-labels__item--no-label .fc-info-labels__content,
.fc-info-labels--style-table.fc-info-labels--table-extra-columns-2 .fc-info-labels__item--content-only .fc-info-labels__content {
    grid-template-columns: minmax(0, 1.35fr) minmax(144px, 0.85fr) minmax(144px, 0.85fr);
}

.fc-info-labels--style-table.fc-info-labels--table-extra-columns-3 .fc-info-labels__item--no-label .fc-info-labels__content,
.fc-info-labels--style-table.fc-info-labels--table-extra-columns-3 .fc-info-labels__item--content-only .fc-info-labels__content {
    grid-template-columns: minmax(0, 1.3fr) minmax(136px, 0.82fr) minmax(136px, 0.82fr) minmax(136px, 0.82fr);
}

.fc-info-labels--style-table.fc-info-labels--table-extra-columns-1 .fc-info-labels__item--no-label .fc-info-labels__copy,
.fc-info-labels--style-table.fc-info-labels--table-extra-columns-2 .fc-info-labels__item--no-label .fc-info-labels__copy,
.fc-info-labels--style-table.fc-info-labels--table-extra-columns-3 .fc-info-labels__item--no-label .fc-info-labels__copy,
.fc-info-labels--style-table.fc-info-labels--table-extra-columns-1 .fc-info-labels__item--content-only .fc-info-labels__copy,
.fc-info-labels--style-table.fc-info-labels--table-extra-columns-2 .fc-info-labels__item--content-only .fc-info-labels__copy,
.fc-info-labels--style-table.fc-info-labels--table-extra-columns-3 .fc-info-labels__item--content-only .fc-info-labels__copy {
    grid-column: 1;
    padding-inline: 20px;
}

.fc-info-labels--style-table .fc-info-labels__label {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: stretch;
    align-self: stretch;
    width: auto;
    height: 100%;
    min-width: 0;
    margin: 0;
    padding: 22px 18px;
    border-right: 1px solid #d7d9dd;
    background: color-mix(in srgb, var(--fc-info-label-item-color) 8%, #fafafa);
    color: #111827;
    font-size: clamp(1rem, 0.92rem + 0.2vw, 1.22rem);
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
}

.fc-info-labels--style-table .fc-info-labels__item-title {
    font-size: 1.12rem;
}

.fc-info-labels--style-table .fc-info-labels__text {
    font-size: 1rem;
    line-height: 1.9;
}

.fc-info-labels--style-table .fc-info-labels__media {
    grid-column: 2;
    width: min(220px, 100%);
    margin: 20px 20px 0 auto;
    border-radius: 18px;
}

.fc-info-labels--style-table.fc-info-labels--table-structured {
    --fc-info-label-table-border: #d7d9dd;
    --fc-info-label-table-header-bg: #d5d5d5;
    --fc-info-label-table-label-width: 248px;
    --fc-info-label-table-cell-padding-y: 18px;
    --fc-info-label-table-cell-padding-x: 18px;
}

.fc-info-labels--style-table.fc-info-labels--table-structured .fc-info-labels__header {
    padding: 18px 20px;
    border-color: var(--fc-info-label-table-border);
    border-radius: 0;
    background: var(--fc-info-label-table-header-bg);
}

.fc-info-labels--style-table.fc-info-labels--table-structured .fc-info-labels__item {
    border-color: var(--fc-info-label-table-border);
    border-radius: 0;
}

.fc-info-labels--style-table.fc-info-labels--table-structured .fc-info-labels__item:last-child,
.fc-info-labels--style-table.fc-info-labels--table-structured .fc-info-labels__item--section.fc-info-labels__item--section-alone,
.fc-info-labels--style-table.fc-info-labels--table-structured .fc-info-labels__item--section-end:last-child,
.fc-info-labels--style-table.fc-info-labels--table-structured .fc-info-labels__item--section-end {
    border-radius: 0;
}

.fc-info-labels--style-table.fc-info-labels--table-structured .fc-info-labels__item--section {
    margin-top: 28px;
    border-color: var(--fc-info-label-table-border);
    border-radius: 0;
    background: var(--fc-info-label-table-header-bg);
}

.fc-info-labels--style-table.fc-info-labels--table-structured .fc-info-labels__item--section .fc-info-labels__copy {
    padding: var(--fc-info-label-table-cell-padding-y) 20px;
}

.fc-info-labels--style-table.fc-info-labels--table-structured .fc-info-labels__content {
    grid-template-columns: var(--fc-info-label-table-label-width) minmax(0, 1fr);
}

.fc-info-labels--style-table.fc-info-labels--table-structured.fc-info-labels--table-extra-columns-1 .fc-info-labels__content {
    grid-template-columns: var(--fc-info-label-table-label-width) minmax(0, 1.55fr) minmax(148px, 0.85fr);
}

.fc-info-labels--style-table.fc-info-labels--table-structured.fc-info-labels--table-extra-columns-2 .fc-info-labels__content {
    grid-template-columns: var(--fc-info-label-table-label-width) minmax(0, 1.35fr) minmax(144px, 0.85fr) minmax(144px, 0.85fr);
}

.fc-info-labels--style-table.fc-info-labels--table-structured.fc-info-labels--table-extra-columns-3 .fc-info-labels__content {
    grid-template-columns: var(--fc-info-label-table-label-width) minmax(0, 1.3fr) minmax(136px, 0.82fr) minmax(136px, 0.82fr) minmax(136px, 0.82fr);
}

.fc-info-labels--style-table.fc-info-labels--table-structured .fc-info-labels__copy {
    padding: var(--fc-info-label-table-cell-padding-y) var(--fc-info-label-table-cell-padding-x);
}

.fc-info-labels--style-table.fc-info-labels--table-structured .fc-info-labels__label {
    display: flex;
    justify-self: stretch;
    align-self: stretch;
    width: auto;
    height: 100%;
    padding: var(--fc-info-label-table-cell-padding-y) 16px;
    border-right: 1px solid var(--fc-info-label-table-border);
    background: #ffffff;
    color: #111827;
    font-size: clamp(1.02rem, 0.95rem + 0.2vw, 1.24rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: none;
}

.fc-info-labels--style-table.fc-info-labels--table-structured .fc-info-labels__item-title {
    line-height: 1.35;
}

.fc-info-labels--style-table.fc-info-labels--table-structured .fc-info-labels__text {
    margin-top: 0;
    color: #374151;
    font-size: 1rem;
    line-height: 1.82;
}

.fc-info-labels--style-table.fc-info-labels--table-structured .fc-info-labels__media {
    margin: 18px 18px 0 auto;
    border-radius: 12px;
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table {
    --fc-info-label-group-border: #d7d9dd;
    --fc-info-label-group-header: #d5d5d5;
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table .fc-info-labels__list {
    gap: 0;
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table .fc-info-labels__item {
    border-color: var(--fc-info-label-group-border);
    border-radius: 0;
    background: #ffffff;
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table .fc-info-labels__item--section {
    margin-top: 40px;
    border-color: var(--fc-info-label-group-border);
    background: var(--fc-info-label-group-header);
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table .fc-info-labels__item--section:first-child {
    margin-top: 0;
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table .fc-info-labels__item--section .fc-info-labels__copy {
    padding: 26px 28px;
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table .fc-info-labels__item--section .fc-info-labels__item-title {
    font-size: var(--fc-info-label-section-title-font-size, clamp(1.18rem, 1.06rem + 0.32vw, 1.46rem));
    font-weight: 800;
    line-height: 1.25;
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table .fc-info-labels__content {
    grid-template-columns: minmax(148px, 220px) minmax(0, 1fr);
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table.fc-info-labels--table-extra-columns-1 .fc-info-labels__content {
    grid-template-columns: minmax(148px, 220px) minmax(0, 1.55fr) minmax(148px, 0.85fr);
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table.fc-info-labels--table-extra-columns-2 .fc-info-labels__content {
    grid-template-columns: minmax(148px, 220px) minmax(0, 1.35fr) minmax(144px, 0.85fr) minmax(144px, 0.85fr);
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table.fc-info-labels--table-extra-columns-3 .fc-info-labels__content {
    grid-template-columns: minmax(148px, 220px) minmax(0, 1.3fr) minmax(136px, 0.82fr) minmax(136px, 0.82fr) minmax(136px, 0.82fr);
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table .fc-info-labels__label {
    justify-content: center;
    padding: 26px 22px;
    background: #ffffff;
    color: #111827;
    font-size: clamp(1.1rem, 0.98rem + 0.25vw, 1.36rem);
    font-weight: 800;
    line-height: 1.35;
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table .fc-info-labels__copy {
    padding: 24px 20px;
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table .fc-info-labels__text {
    margin-top: 0;
    color: #374151;
    font-size: 1rem;
    line-height: 1.9;
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table.fc-info-labels--table-structured .fc-info-labels__item--section {
    margin-top: 24px;
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table.fc-info-labels--table-structured .fc-info-labels__item--section .fc-info-labels__copy {
    padding: 18px 20px;
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table.fc-info-labels--table-structured .fc-info-labels__item--section .fc-info-labels__item-title {
    font-size: var(--fc-info-label-section-title-font-size, clamp(1.08rem, 1rem + 0.22vw, 1.28rem));
    line-height: 1.22;
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table.fc-info-labels--table-structured .fc-info-labels__content {
    grid-template-columns: var(--fc-info-label-table-label-width) minmax(0, 1fr);
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table.fc-info-labels--table-structured.fc-info-labels--table-extra-columns-1 .fc-info-labels__content {
    grid-template-columns: var(--fc-info-label-table-label-width) minmax(0, 1.55fr) minmax(148px, 0.85fr);
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table.fc-info-labels--table-structured.fc-info-labels--table-extra-columns-2 .fc-info-labels__content {
    grid-template-columns: var(--fc-info-label-table-label-width) minmax(0, 1.35fr) minmax(144px, 0.85fr) minmax(144px, 0.85fr);
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table.fc-info-labels--table-structured.fc-info-labels--table-extra-columns-3 .fc-info-labels__content {
    grid-template-columns: var(--fc-info-label-table-label-width) minmax(0, 1.3fr) minmax(136px, 0.82fr) minmax(136px, 0.82fr) minmax(136px, 0.82fr);
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table.fc-info-labels--table-structured .fc-info-labels__label {
    padding: 20px 16px;
    font-size: clamp(1.02rem, 0.95rem + 0.2vw, 1.22rem);
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table.fc-info-labels--table-structured .fc-info-labels__copy {
    padding: 18px 18px 18px 20px;
}

.fc-info-labels--preset-tasting-groups.fc-info-labels--style-table.fc-info-labels--table-structured .fc-info-labels__text {
    line-height: 1.78;
}

.fc-info-labels--style-split-list .fc-info-labels__item {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 0;
    border-radius: 20px;
    box-shadow: none;
}

.fc-info-labels--style-split-list .fc-info-labels__icon {
    display: none;
}

.fc-info-labels--style-split-list .fc-info-labels__content {
    display: grid;
    grid-template-columns: minmax(92px, 148px) minmax(0, 1fr);
}

.fc-info-labels--style-split-list .fc-info-labels__label {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    padding: 18px 16px;
    align-self: stretch;
    justify-content: center;
    background: color-mix(in srgb, var(--fc-info-label-item-color) 10%, #f8fafc);
    border-right: 1px solid color-mix(in srgb, var(--fc-info-label-item-color) 18%, #e2e8f0);
    border-radius: 20px 0 0 20px;
    color: #0f172a;
    letter-spacing: 0;
    text-transform: none;
}

.fc-info-labels--style-split-list .fc-info-labels__copy {
    grid-column: 2;
    padding: 18px 18px 18px 20px;
}

.fc-info-labels--style-split-list .fc-info-labels__item--content-only .fc-info-labels__content {
    grid-template-columns: 1fr;
}

.fc-info-labels--style-split-list .fc-info-labels__item--content-only .fc-info-labels__copy {
    grid-column: 1 / -1;
}

.fc-info-labels--style-menu-board .fc-info-labels__item {
    border-color: color-mix(in srgb, var(--fc-info-label-item-color) 18%, #d6d3d1);
    border-radius: 18px;
    background: linear-gradient(180deg, #fffdfa 0%, #fff8ee 100%);
    box-shadow: 0 14px 28px rgba(120, 53, 15, 0.08);
}

.fc-info-labels--style-menu-board .fc-info-labels__label {
    margin-bottom: 8px;
    padding: 0.34rem 0.72rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--fc-info-label-item-color) 86%, #111827 14%);
    color: #ffffff;
    letter-spacing: 0.03em;
}

.fc-info-labels--style-menu-board .fc-info-labels__item-title {
    font-size: 1.06rem;
}

.fc-info-labels--style-product-sheet .fc-info-labels__item {
    border-color: color-mix(in srgb, var(--fc-info-label-item-color) 16%, #dbe4ee);
    border-radius: 22px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--fc-info-label-item-color) 7%, #ffffff), #ffffff 56%);
    box-shadow: 0 18px 36px color-mix(in srgb, var(--fc-info-label-item-color) 12%, transparent);
}

.fc-info-labels--style-product-sheet .fc-info-labels__label {
    padding: 0.34rem 0.72rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--fc-info-label-item-color) 12%, #ffffff);
    letter-spacing: 0.02em;
}

.fc-info-labels--style-product-sheet .fc-info-labels__item--has-image .fc-info-labels__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 118px;
    gap: 14px;
    align-items: start;
}

.fc-info-labels--style-product-sheet .fc-info-labels__media {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    border-radius: 18px;
}

.fc-info-labels--style-product-sheet .fc-info-labels__copy {
    grid-column: 1;
}

.fc-info-labels--style-wall .fc-info-labels__item {
    grid-template-columns: minmax(0, 1fr);
    border-radius: 24px;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--fc-info-label-item-color) 11%, #ffffff), #ffffff 60%);
    box-shadow: 0 20px 48px color-mix(in srgb, var(--fc-info-label-item-color) 14%, transparent);
}

.fc-info-labels--style-wall .fc-info-labels__icon {
    margin-bottom: 0.35rem;
}

.fc-info-labels--style-bands .fc-info-labels__item {
    border: 0;
    border-top: 4px solid var(--fc-info-label-item-color);
    border-radius: 16px;
    background: color-mix(in srgb, var(--fc-info-label-item-color) 6%, var(--fc-info-label-bg));
    box-shadow: none;
}

.fc-info-labels--style-bands .fc-info-labels__icon {
    background: color-mix(in srgb, var(--fc-info-label-item-color) 12%, #ffffff);
    color: var(--fc-info-label-item-color);
}

.fc-info-labels__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25em;
    height: 2.25em;
    padding: 0 0.42em;
    border-radius: 999px;
    background: var(--fc-info-label-item-color);
    color: #ffffff;
    font-size: var(--fc-info-label-icon-font-size);
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.fc-info-labels__content {
    min-width: 0;
}

.fc-info-labels__copy {
    min-width: 0;
}

.fc-info-labels__media {
    margin: 0 0 12px;
    overflow: hidden;
    border-radius: 16px;
    background: color-mix(in srgb, var(--fc-info-label-item-color) 8%, #f8fafc);
}

.fc-info-labels__media-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.fc-info-labels__label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: var(--fc-info-label-content-gap, 5px);
    color: var(--fc-info-label-item-color);
    font-size: var(--fc-info-label-label-font-size);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fc-info-labels__item-title {
    color: var(--fc-info-label-text);
    font-size: var(--fc-info-label-item-title-font-size);
    font-weight: 800;
    line-height: 1.45;
}

.fc-info-labels__text {
    margin-top: var(--fc-info-label-content-gap, 4px);
    color: var(--fc-info-label-muted);
    font-size: var(--fc-info-label-body-font-size);
    line-height: 1.75;
}

.fc-info-labels__copy > .fc-info-labels__text:first-child,
.fc-info-labels__item--content-only .fc-info-labels__text {
    margin-top: 0;
}

.fc-info-labels__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: var(--fc-info-label-link-spacing, 8px);
    color: var(--fc-info-label-item-color);
    font-size: var(--fc-info-label-link-font-size);
    font-weight: 800;
    text-decoration: none;
}

.fc-info-labels--no-shadow .fc-info-labels__item {
    box-shadow: none !important;
}

.fc-info-labels--tone-soft {
    --fc-info-label-bg: color-mix(in srgb, #ffffff 96%, var(--fc-info-label-accent) 4%);
}

.fc-info-labels--tone-medium {
    --fc-info-label-bg: color-mix(in srgb, #ffffff 88%, var(--fc-info-label-accent) 12%);
}

.fc-info-labels--tone-strong {
    --fc-info-label-bg: color-mix(in srgb, #ffffff 80%, var(--fc-info-label-accent) 20%);
    --fc-info-label-shadow: 0 18px 46px color-mix(in srgb, var(--fc-info-label-accent) 14%, transparent);
}

.fc-info-labels--tone-dark {
    --fc-info-label-bg: #0f172a;
    --fc-info-label-text: #f8fafc;
    --fc-info-label-muted: rgba(255, 255, 255, 0.76);
    --fc-info-label-border: rgba(255, 255, 255, 0.18);
    --fc-info-label-shadow: 0 20px 48px rgba(15, 23, 42, 0.28);
}

.fc-info-labels--tone-dark .fc-info-labels__item {
    background: color-mix(in srgb, var(--fc-info-label-bg) 90%, var(--fc-info-label-item-color) 10%);
}

.fc-info-labels--tone-dark .fc-info-labels__item-title {
    color: #ffffff;
}

.fc-info-labels--tone-dark .fc-info-labels__subtitle {
    color: rgba(255, 255, 255, 0.76);
}

.fc-info-labels__link::after {
    content: "→";
    transition: transform 0.18s ease;
}

.fc-info-labels__link:hover::after,
.fc-info-labels__link:focus-visible::after {
    transform: translateX(3px);
}

.fc-info-labels--density-compact .fc-info-labels__item {
    padding: var(--fc-info-label-item-padding-y, 10px) var(--fc-info-label-item-padding-x, 12px);
    gap: var(--fc-info-label-item-gap, 8px);
}

.fc-info-labels--density-spacious .fc-info-labels__item {
    padding: var(--fc-info-label-item-padding-y, 22px) var(--fc-info-label-item-padding-x, 22px);
    gap: var(--fc-info-label-item-gap, 16px);
}

.fc-info-labels__item-tools,
.fc-info-labels__actions,
.fc-info-labels__empty,
.fc-info-labels__preset-buttons,
.fc-info-labels__item-media-controls,
.fc-info-labels__grouped-workbench-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.fc-info-labels__item-tools {
    grid-column: 1 / -1;
    justify-content: space-between;
    margin-bottom: 4px;
    color: #64748b;
    font-size: 12px;
}

.fc-info-labels__actions {
    margin-top: 14px;
}

.fc-info-labels__item-media-controls {
    margin-bottom: 12px;
}

.fc-info-labels__grouped-workbench {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
    padding: 16px;
    border: 1px solid #d7d9dd;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.fc-info-labels__grouped-workbench-copy {
    display: grid;
    gap: 6px;
}

.fc-info-labels__grouped-workbench-copy p {
    margin: 0;
    color: #475569;
    line-height: 1.65;
}

.fc-info-labels__editor-overview,
.fc-info-labels__editor-focus-bar,
.fc-info-labels__editor-panel-card {
    display: grid;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid #d7d9dd;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.fc-info-labels__editor-overview-copy,
.fc-info-labels__editor-focus-copy,
.fc-info-labels__editor-panel-copy,
.fc-info-labels__editor-preview-head {
    display: grid;
    gap: 6px;
}

.fc-info-labels__editor-overview-copy span,
.fc-info-labels__editor-focus-copy span,
.fc-info-labels__editor-panel-summary,
.fc-info-labels__editor-preview-head span {
    color: #475569;
    line-height: 1.65;
}

.fc-info-labels__editor-overview-badges,
.fc-info-labels__editor-overview-actions,
.fc-info-labels__editor-focus-stats,
.fc-info-labels__editor-focus-actions,
.fc-info-labels__editor-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.fc-info-labels__editor-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.34rem 0.7rem;
    border-radius: 999px;
    background: #e8eefc;
    color: #1d4ed8;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
}

.fc-info-labels__editor-item-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin: 16px 0;
}

.fc-info-labels__editor-item-pill {
    min-width: 0;
}

.fc-info-labels__editor-item-pill-trigger {
    width: 100%;
    display: grid;
    gap: 4px;
    justify-items: start;
    padding: 12px 14px;
    border: 1px solid #d7d9dd;
    border-radius: 16px;
    background: #ffffff;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.fc-info-labels__editor-item-pill-trigger:hover,
.fc-info-labels__editor-item-pill-trigger:focus-visible,
.fc-info-labels__editor-item-pill-trigger.is-active {
    border-color: #93c5fd;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
    transform: translateY(-1px);
    outline: none;
}

.fc-info-labels__editor-item-pill-index {
    color: #2563eb;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.fc-info-labels__editor-item-pill-title {
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
}

.fc-info-labels__editor-item-pill-meta {
    color: #64748b;
    font-size: 0.78rem;
    line-height: 1.5;
}

.fc-info-labels__editor-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 16px;
    align-items: start;
    margin-top: 16px;
}

.fc-info-labels__editor-preview-column,
.fc-info-labels__editor-panel {
    min-width: 0;
}

.fc-info-labels__editor-preview-list {
    margin-top: 12px;
}

.fc-info-labels__preview-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.fc-info-labels__preview-tabs--center {
    justify-content: center;
}

.fc-info-labels__preview-tabs--right {
    justify-content: flex-end;
}

.fc-info-labels__preview-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.65rem 1rem;
    border: 1px solid #d7d9dd;
    border-radius: 999px;
    background: #fff;
    color: #334155;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.fc-info-labels__preview-tabs--line .fc-info-labels__preview-tab {
    border-radius: 0;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.5rem 0.1rem;
    background: transparent;
}

.fc-info-labels__preview-tabs--minimal .fc-info-labels__preview-tab {
    border: none;
    background: transparent;
    color: #64748b;
    padding-inline: 0.2rem;
}

.fc-info-labels__preview-tab:hover,
.fc-info-labels__preview-tab:focus-visible,
.fc-info-labels__preview-tab.is-active {
    border-color: #93c5fd;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.12);
    color: #1d4ed8;
    outline: none;
}

.fc-info-labels__preview-tabs--line .fc-info-labels__preview-tab:hover,
.fc-info-labels__preview-tabs--line .fc-info-labels__preview-tab:focus-visible,
.fc-info-labels__preview-tabs--line .fc-info-labels__preview-tab.is-active {
    border-bottom-color: #2563eb;
    box-shadow: none;
}

.fc-info-labels__preview-tabs--minimal .fc-info-labels__preview-tab:hover,
.fc-info-labels__preview-tabs--minimal .fc-info-labels__preview-tab:focus-visible,
.fc-info-labels__preview-tabs--minimal .fc-info-labels__preview-tab.is-active {
    color: #1d4ed8;
    box-shadow: none;
}

.fc-info-labels__editor-panel-eyebrow {
    margin: 0;
    color: #2563eb;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fc-info-labels__editor-panel-title {
    margin: 0;
    color: #0f172a;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.4;
}

.fc-info-labels__item-media-preview {
    width: 120px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid #d0d7de;
    background: #ffffff;
}

.fc-info-labels__item-media-preview img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.fc-info-labels__empty {
    justify-content: center;
    padding: 18px;
    border: 1px dashed #c3c4c7;
    border-radius: 12px;
    background: #fff;
    color: #50575e;
}

.fc-info-labels__empty p {
    margin: 0;
}

.fc-info-labels--editor .fc-info-labels__item {
    grid-template-columns: minmax(0, 1fr);
}

.fc-info-labels--editor .fc-info-labels__editor-preview-list .fc-info-labels__item {
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.fc-info-labels--editor .fc-info-labels__editor-preview-list .fc-info-labels__item:hover,
.fc-info-labels--editor .fc-info-labels__editor-preview-list .fc-info-labels__item:focus-visible,
.fc-info-labels--editor .fc-info-labels__editor-preview-list .fc-info-labels__item.is-editor-active {
    border-color: #93c5fd;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.12);
    transform: translateY(-1px);
    outline: none;
}

.fc-info-labels--editor .fc-info-labels__editor-preview-list .fc-info-labels__item:not(.fc-info-labels__item--no-icon):not(.fc-info-labels__item--section) {
    grid-template-columns: auto minmax(0, 1fr);
}

.fc-info-labels--editor .fc-info-labels__editor-preview-list .fc-info-labels__item--no-icon,
.fc-info-labels--editor .fc-info-labels__editor-preview-list .fc-info-labels__item--section {
    grid-template-columns: minmax(0, 1fr);
}

.fc-info-labels--editor .fc-info-labels__item--section {
    border-style: dashed;
    background: linear-gradient(180deg, #f3f4f6 0%, #ffffff 100%);
}

.fc-info-labels--editor .components-base-control {
    margin-bottom: 10px;
}

.fc-info-labels__extra-column-labels,
.fc-info-labels__extra-column-editor-grid {
    display: grid;
    gap: 12px;
}

.fc-info-labels__extra-column-editor {
    padding: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background: #fbfcfe;
}

.fc-info-labels__extra-column-title {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 0.92rem;
}

@media (max-width: 900px) {
    .fc-info-labels--layout-grid .fc-info-labels__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fc-info-labels__editor-stage {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .fc-info-labels--layout-grid .fc-info-labels__list,
    .fc-info-labels__list {
        grid-template-columns: 1fr;
    }

    .fc-info-labels__item {
        grid-template-columns: minmax(0, 1fr);
    }

    .fc-info-labels__icon {
        width: fit-content;
    }

    .fc-info-labels--style-pills .fc-info-labels__item {
        border-radius: 18px;
    }

    .fc-info-labels--style-table .fc-info-labels__header {
        padding: 18px 16px;
    }

    .fc-info-labels--style-table .fc-info-labels__item--section .fc-info-labels__copy {
        padding: 18px 16px;
    }

    .fc-info-labels--style-table .fc-info-labels__content,
    .fc-info-labels--style-split-list .fc-info-labels__content,
    .fc-info-labels--style-product-sheet .fc-info-labels__item--has-image .fc-info-labels__content {
        grid-template-columns: 1fr;
    }

    .fc-info-labels--style-table .fc-info-labels__label,
    .fc-info-labels--style-split-list .fc-info-labels__label {
        border-right: 0;
        border-bottom: 1px solid #d7d9dd;
        border-radius: 0;
        justify-content: flex-start;
    }

    .fc-info-labels--style-table .fc-info-labels__copy,
    .fc-info-labels--style-split-list .fc-info-labels__copy {
        grid-column: 1;
    }

    .fc-info-labels--style-table .fc-info-labels__extra-cell {
        border-left: 0;
        border-top: 1px solid #d7d9dd;
        padding: 16px;
    }

    .fc-info-labels--style-table .fc-info-labels__media,
    .fc-info-labels--style-product-sheet .fc-info-labels__media {
        width: 100%;
        margin: 16px 0 0;
        grid-column: 1;
    }
}
