@charset "utf-8";

.nc-gallery-card {
    overflow:hidden;
    height:100%;
    border:1px solid #e5e7eb;
    border-radius:8px;
    background:#fff;
}

.nc-gallery-card__head {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    min-height:74px;
    padding:18px 20px;
    border-bottom:1px solid #e5e7eb;
}

.nc-gallery-card__head span {
    display:block;
    margin-bottom:5px;
    color:#0066ff;
    font-size:0.76rem;
    font-weight:900;
    letter-spacing:0;
}

.nc-gallery-card__head h4 {
    margin:0;
    color:#0f172a;
    font-size:1.14rem;
    font-weight:900;
    line-height:1.35;
}

.nc-gallery-card__head h4 a {
    color:inherit;
    text-decoration:none;
}

.nc-gallery-card__head h4 a:hover {
    color:#0066ff;
}

.nc-gallery-card__more {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 34px;
    width:34px;
    height:34px;
    border-radius:8px;
    background:#eef6ff;
    color:#0066ff;
    text-decoration:none;
}

.nc-gallery-card__more:hover {
    background:#0066ff;
    color:#fff;
}

.nc-gallery-card__grid {
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:0;
}

.nc-gallery-card__item {
    display:block;
    min-width:0;
    padding:14px;
    border-right:1px solid #e5e7eb;
    border-bottom:1px solid #e5e7eb;
    color:#0f172a;
    text-decoration:none;
}

.nc-gallery-card__item:nth-child(3n) {
    border-right:0;
}

.nc-gallery-card__item:nth-last-child(-n+3) {
    border-bottom:0;
}

.nc-gallery-card__item:last-child {
    border-right:0;
    border-bottom:0;
}

.nc-gallery-card__thumb {
    display:block;
    overflow:hidden;
    width:100%;
    aspect-ratio:1.48;
    max-height:340px;
    margin-bottom:11px;
    border-radius:8px;
    background:#f8fafc;
}

.nc-gallery-card__thumb img {
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .22s ease;
}

.nc-gallery-card__item:hover .nc-gallery-card__thumb img {
    transform:scale(1.035);
}

.nc-gallery-card__placeholder {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:100%;
    height:100%;
    border:1px solid #dbeafe;
    background:linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
    color:#0066ff;
}

.nc-gallery-card__placeholder i {
    font-size:1.55rem;
}

.nc-gallery-card__placeholder em {
    font-size:0.74rem;
    font-style:normal;
    font-weight:900;
}

.nc-gallery-card__meta {
    display:grid;
    gap:6px;
}

.nc-gallery-card__meta strong {
    display:-webkit-box;
    overflow:hidden;
    color:#0f172a;
    font-size:0.98rem;
    font-weight:900;
    line-height:1.45;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
}

.nc-gallery-card__meta em {
    color:#94a3b8;
    font-size:0.82rem;
    font-style:normal;
    font-weight:800;
}

.nc-gallery-card__item:hover .nc-gallery-card__meta strong {
    color:#0066ff;
}

@media (max-width: 980px) {
    .nc-gallery-card__grid {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .nc-gallery-card__item,
    .nc-gallery-card__item:nth-child(3n),
    .nc-gallery-card__item:nth-last-child(-n+3) {
        border-right:1px solid #e5e7eb;
        border-bottom:1px solid #e5e7eb;
    }

    .nc-gallery-card__item:nth-child(2n) {
        border-right:0;
    }

    .nc-gallery-card__item:nth-last-child(-n+2) {
        border-bottom:0;
    }
}

@media (max-width: 720px) {
    .nc-gallery-card__head {
        min-height:66px;
        padding:15px 16px;
    }

    .nc-gallery-card__grid {
        grid-template-columns:1fr;
    }

    .nc-gallery-card__thumb {
        max-height:260px;
    }

    .nc-gallery-card__item,
    .nc-gallery-card__item:nth-child(3n),
    .nc-gallery-card__item:nth-child(2n),
    .nc-gallery-card__item:nth-last-child(-n+3),
    .nc-gallery-card__item:nth-last-child(-n+2) {
        border-right:0;
        border-bottom:1px solid #e5e7eb;
    }

    .nc-gallery-card__item:last-child {
        border-bottom:0;
    }
}
