.mct-fhc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .mct-fhc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .mct-fhc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.mct-fhc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    min-height: 380px;
    aspect-ratio: 4 / 4.8;
    border-radius: 18px;
    overflow: hidden;
    background-color: #0f172a;
    text-decoration: none !important;
    color: #ffffff;
    box-shadow: none;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    box-sizing: border-box;
}

.mct-fhc-card:hover {
    transform: none;
    box-shadow: none;
}

.mct-fhc-card-bg,
.mct-fhc-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: inherit;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.4s ease;
    z-index: 1;
}

.mct-fhc-card:hover img {
    transform: scale(1.07);
}

.mct-fhc-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.65) 35%,
        rgba(0, 0, 0, 0.2) 65%,
        rgba(0, 0, 0, 0.05) 100%
    );
    z-index: 2;
    transition: opacity 0.3s ease;
}

.mct-fhc-play-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mct-fhc-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(180deg, #F18209 2%, #D31E1D 48%, #FFB200 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    opacity: 0.8;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.mct-fhc-play-btn svg {
    width: 26px;
    height: 26px;
    fill: #ffffff;
    margin-left: 3px;
    filter: none;
}

.mct-fhc-card:hover .mct-fhc-play-btn,
.mct-fhc-play-wrap:hover .mct-fhc-play-btn {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: none;
}

.mct-fhc-card-content {
    position: relative;
    z-index: 4;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-sizing: border-box;
}

.mct-fhc-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.01em;
    margin-bottom: 2px;
}

.mct-fhc-meta-date {
    display: inline-flex;
    align-items: center;
}

.mct-fhc-meta-readtime {
    display: inline-flex;
    align-items: center;
}

.mct-fhc-card-title {
    margin: 0;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.25s ease;
}

.mct-fhc-card:hover .mct-fhc-card-title {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.mct-fhc-empty-notice {
    grid-column: 1 / -1;
    padding: 35px 20px;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
}

.mct-fhc-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mct-fhc-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mct-fhc-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
}

.mct-fhc-modal-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 900px;
    background: #000000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.mct-fhc-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    outline: none;
    transition: transform 0.2s ease;
}

.mct-fhc-modal-close:hover {
    transform: scale(1.15);
}

.mct-fhc-modal-body {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000000;
}

.mct-fhc-modal-body iframe,
.mct-fhc-modal-body video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
