



/* Social sharing icons
 * Custom styling on News
 ******************************/
.infobox-share h2 {
    margin-bottom:7px;
}
.infobox-share a.share {
    /*margin-bottom:7px;*/
    line-height: 30px;
}
.infobox-share hr {
    margin: 10px 0;
}

/* News article collage: main landscape image on top, up to 2 extras below.
   Portrait sources are cropped to landscape via object-fit: cover so every tile reads the same. */
.template-collage {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0 0 10px 0;
}

.template-collage-main {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    cursor: zoom-in;
    border-radius: 4px;
}

.container-wide .template-collage-main {
    border-radius: 5px;
}


.template-collage-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.template-collage .caption {
    margin: 0;
}
.template-collage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}
.template-collage[data-extras="2"] .template-collage-grid {
    grid-template-columns: 1fr 1fr;
}
.template-collage-tile {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    cursor: zoom-in;
    border-radius: 5px;
}
.template-collage-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.template-collage-more {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}
