/* 入選・今月の特別賞では、SNSアイコン6個を必ず1行に収める。 */
.cpl-selected-card .cpl-social-links,
.cpl-special-card .cpl-social-links {
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    column-gap:2px;
    row-gap:0;
    width:100%;
}
.cpl-selected-card .cpl-social-link,
.cpl-special-card .cpl-social-link { min-width:0; justify-content:center; }
.cpl-selected-card .cpl-social-link img,
.cpl-special-card .cpl-social-link img {
    width:100% !important;
    max-width:24px;
    height:auto !important;
    aspect-ratio:1;
}
