/**
 * Rolex family page — editorial blocks (F4).
 * Collection shell / dark / nested padding → rolex-collection.css (CON-5d Phase A).
 * Remaining: responsive hide utils, text spacing, image/video widths (Phase B/C).
 */

@media only screen and (max-width: 767px) {
    .rolex-wrapper .hide-mobile {
        display: none !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .rolex-wrapper .hide-tablet {
        display: none !important;
    }
}

@media only screen and (min-width: 1024px) {
    .rolex-wrapper .hide-desktop {
        display: none !important;
    }
}

/* CON-5d Phase A: .dark, nested padding, first-child → rolex-collection.css */

/* Spacing between headline / body inside a text block — from rolex.min.css */
.rolex-wrapper .rolex-collection-text > * {
    padding-top: 24px;
}

.rolex-wrapper .rolex-collection-text > :first-child {
    padding-top: 0;
}

.rolex-wrapper .rolex-collection-text.cols-2 > * {
    padding-top: 0;
}

.rolex-wrapper .rolex-collection-image.fullWidth,
.rolex-wrapper .rolex-collection-text.fullWidth,
.rolex-wrapper .rolex-collection-video.fullWidth {
    width: 100%;
}

.rolex-wrapper .rolex-collection-image.large,
.rolex-wrapper .rolex-collection-text.large,
.rolex-wrapper .rolex-collection-video.large {
    max-width: 1620px;
    width: calc(100% - 48px);
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 768px) {
    .rolex-wrapper .rolex-collection-image.large,
    .rolex-wrapper .rolex-collection-text.large,
    .rolex-wrapper .rolex-collection-video.large {
        width: 84.375%;
    }
}

.rolex-wrapper .rolex-collection-image.medium,
.rolex-wrapper .rolex-collection-text.medium,
.rolex-wrapper .rolex-collection-video.medium {
    max-width: 1350px;
    width: calc(100% - 48px);
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 768px) {
    .rolex-wrapper .rolex-collection-image.medium,
    .rolex-wrapper .rolex-collection-text.medium,
    .rolex-wrapper .rolex-collection-video.medium {
        width: 84.375%;
    }
}

.rolex-wrapper .rolex-collection-image.small,
.rolex-wrapper .rolex-collection-text.small,
.rolex-wrapper .rolex-collection-video.small {
    max-width: 810px;
    width: calc(100% - 48px);
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 768px) {
    .rolex-wrapper .rolex-collection-image.small,
    .rolex-wrapper .rolex-collection-text.small,
    .rolex-wrapper .rolex-collection-video.small {
        width: 84.375%;
    }
}

.rolex-wrapper .rolex-collection-image img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.rolex-wrapper .rolex-collection-video .videoWrapper .videoContainer .video {
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    position: relative;
}

.rolex-wrapper .rolex-collection-video .videoWrapper .videoContainer .video iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
