/**
 * 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 presentation.
 */

@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 */
/* Width utilities (fullWidth / large / medium / small) → rolex-collection.css via rolex_foundation.xml.
   Do not re-declare here — .rolex-wrapper prefix previously forced medium/small to 84.375% (wrong). */

/* 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 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;
}
