/* jrats-public-company-media.css — Story Video + Workplace Gallery
 * for [jr_public_company_page]. Brand color: #5277ba */

.jrats-pcp-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.jrats-pcp-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
}

.jrats-pcp-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.jrats-pcp-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.jrats-pcp-galitem {
    display: block;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f4f6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
}

.jrats-pcp-galitem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}

.jrats-pcp-galitem:hover img {
    transform: scale(1.04);
}
