/* scope: .medchefs-page */
.medchefs-page .medchefs-duo-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid var(--mc-gold);
    border-radius: clamp(10px, 2vw, 14px);
    overflow: hidden;
    background: var(--mc-beige-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
    .medchefs-page .medchefs-duo-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(42, 63, 44, 0.12);
    }
}
.medchefs-page .medchefs-duo-photo-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    aspect-ratio: 4 / 3;
    background: #d4c4b0;
}
.medchefs-page .medchefs-duo-photo-half {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(145deg, #d8cbb8, #c9b9a4);
}
.medchefs-page .medchefs-duo-photo-half:first-child {
    border-right: 1px solid rgba(197, 160, 89, 0.35);
}
.medchefs-page .medchefs-duo-photo-half img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.medchefs-page .medchefs-duo-body {
    padding: clamp(14px, 3vw, 18px) clamp(12px, 2.5vw, 16px) clamp(18px, 3vw, 22px);
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 0;
}
.medchefs-page .medchefs-duo-label-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 12px;
    flex-shrink: 0;
}
.medchefs-page .medchefs-duo-line {
    flex: 1;
    height: 1px;
    background: var(--mc-gold);
}
.medchefs-page .medchefs-duo-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--mc-gold-dark);
    white-space: nowrap;
}
.medchefs-page .medchefs-duo-meta {
    margin: 0 0 10px;
    width: 100%;
    font-size: 0.8rem;
    color: var(--mc-text);
    line-height: 1.4;
}
.medchefs-page .medchefs-duo-meta--country {
    margin-bottom: 0;
    padding-top: 8px;
    border-top: 1px solid rgba(197, 160, 89, 0.25);
}
.medchefs-page .medchefs-duo-meta-label {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mc-gold-dark);
    margin-bottom: 3px;
}
.medchefs-page .medchefs-duo-members {
    width: 100%;
    margin-bottom: 10px;
    flex: 1 1 auto;
}
.medchefs-page .medchefs-duo-person {
    padding: 10px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}
.medchefs-page .medchefs-duo-person:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.medchefs-page .medchefs-duo-person-name {
    margin: 0 0 4px;
    font-size: clamp(0.72rem, 2vw, 0.82rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.35;
    color: var(--mc-text);
    word-break: break-word;
}
.medchefs-page .medchefs-duo-person-spec {
    margin: 0;
    font-size: 0.78rem;
    color: var(--mc-muted);
    line-height: 1.4;
}
.medchefs-page .medchefs-duo-cv-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    margin-top: auto;
    padding-top: 8px;
    flex-shrink: 0;
}
.medchefs-page .medchefs-duo-cv-cell {
    min-width: 0;
}
.medchefs-page .medchefs-duo-flourish {
    width: 36px;
    height: 12px;
    margin-top: 10px;
    flex-shrink: 0;
    background: radial-gradient(ellipse 50% 80% at 50% 100%, var(--mc-gold) 0%, transparent 70%);
    opacity: 0.7;
}
.medchefs-page button.medchefs-cv-btn {
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100% !important;
    max-width: 100%;
    padding: 8px 6px !important;
    min-height: 40px;
    font-size: clamp(0.62rem, 1.6vw, 0.72rem) !important;
    border-radius: 8px !important;
    border: 1px solid var(--mc-gold) !important;
    background: transparent !important;
    color: var(--mc-green-dark) !important;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    line-height: 1.2;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    touch-action: manipulation;
}
.medchefs-page button.medchefs-cv-btn:hover {
    background: var(--mc-green) !important;
    color: #fff !important;
    border-color: var(--mc-green) !important;
}
.medchefs-page .medchefs-cv-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    padding: 6px 4px;
    font-size: 0.65rem;
    color: #999;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    border: 1px dashed rgba(197, 160, 89, 0.4);
    box-sizing: border-box;
}
@media (min-width: 520px) and (max-width: 899px) {
    .medchefs-page .medchefs-duo-photo-strip { aspect-ratio: 5 / 4; }
}

/* scope: .news-panel--docchefs */
.news-panel--docchefs .medchefs-duo-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid var(--mc-gold);
    border-radius: clamp(10px, 2vw, 14px);
    overflow: hidden;
    background: var(--mc-beige-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
    .news-panel--docchefs .medchefs-duo-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(42, 63, 44, 0.12);
    }
}
.news-panel--docchefs .medchefs-duo-photo-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    aspect-ratio: 4 / 3;
    background: #d4c4b0;
}
.news-panel--docchefs .medchefs-duo-photo-half {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(145deg, #d8cbb8, #c9b9a4);
}
.news-panel--docchefs .medchefs-duo-photo-half:first-child {
    border-right: 1px solid rgba(197, 160, 89, 0.35);
}
.news-panel--docchefs .medchefs-duo-photo-half img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.news-panel--docchefs .medchefs-duo-body {
    padding: clamp(14px, 3vw, 18px) clamp(12px, 2.5vw, 16px) clamp(18px, 3vw, 22px);
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 0;
}
.news-panel--docchefs .medchefs-duo-label-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 12px;
    flex-shrink: 0;
}
.news-panel--docchefs .medchefs-duo-line {
    flex: 1;
    height: 1px;
    background: var(--mc-gold);
}
.news-panel--docchefs .medchefs-duo-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--mc-gold-dark);
    white-space: nowrap;
}
.news-panel--docchefs .medchefs-duo-meta {
    margin: 0 0 10px;
    width: 100%;
    font-size: 0.8rem;
    color: var(--mc-text);
    line-height: 1.4;
}
.news-panel--docchefs .medchefs-duo-meta--country {
    margin-bottom: 0;
    padding-top: 8px;
    border-top: 1px solid rgba(197, 160, 89, 0.25);
}
.news-panel--docchefs .medchefs-duo-meta-label {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mc-gold-dark);
    margin-bottom: 3px;
}
.news-panel--docchefs .medchefs-duo-members {
    width: 100%;
    margin-bottom: 10px;
    flex: 1 1 auto;
}
.news-panel--docchefs .medchefs-duo-person {
    padding: 10px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}
.news-panel--docchefs .medchefs-duo-person:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.news-panel--docchefs .medchefs-duo-person-name {
    margin: 0 0 4px;
    font-size: clamp(0.72rem, 2vw, 0.82rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.35;
    color: var(--mc-text);
    word-break: break-word;
}
.news-panel--docchefs .medchefs-duo-person-spec {
    margin: 0;
    font-size: 0.78rem;
    color: var(--mc-muted);
    line-height: 1.4;
}
.news-panel--docchefs .medchefs-duo-cv-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    margin-top: auto;
    padding-top: 8px;
    flex-shrink: 0;
}
.news-panel--docchefs .medchefs-duo-cv-cell {
    min-width: 0;
}
.news-panel--docchefs .medchefs-duo-flourish {
    width: 36px;
    height: 12px;
    margin-top: 10px;
    flex-shrink: 0;
    background: radial-gradient(ellipse 50% 80% at 50% 100%, var(--mc-gold) 0%, transparent 70%);
    opacity: 0.7;
}
.news-page button.medchefs-cv-btn {
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100% !important;
    max-width: 100%;
    padding: 8px 6px !important;
    min-height: 40px;
    font-size: clamp(0.62rem, 1.6vw, 0.72rem) !important;
    border-radius: 8px !important;
    border: 1px solid var(--mc-gold) !important;
    background: transparent !important;
    color: var(--mc-green-dark) !important;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    line-height: 1.2;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    touch-action: manipulation;
}
.news-page button.medchefs-cv-btn:hover {
    background: var(--mc-green) !important;
    color: #fff !important;
    border-color: var(--mc-green) !important;
}
.news-panel--docchefs .medchefs-cv-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    padding: 6px 4px;
    font-size: 0.65rem;
    color: #999;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    border: 1px dashed rgba(197, 160, 89, 0.4);
    box-sizing: border-box;
}
@media (min-width: 520px) and (max-width: 899px) {
    .news-panel--docchefs .medchefs-duo-photo-strip { aspect-ratio: 5 / 4; }
}

