        .roundup-section-wrapper {
            max-width: 1250px;
            margin: 60px auto;
            padding: 20px;
            text-align: center;
            font-family: 'Lora', serif;
            background-color: #fff;
        }

        /* Header Titles */
        .roundup-section-wrapper .main-title {
            font-family: 'Playfair Display', serif;
            font-size: 52px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #000;
        }

        .roundup-section-wrapper .sub-text {
            font-size: 19px;
            color: #333;
            margin-bottom: 40px;
        }

        /* Grid Layout (4 Columns) */
        .roundup-section-wrapper .roundup-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        /* Individual Card */
        .roundup-section-wrapper .roundup-card {
            display: flex;
            flex-direction: column;
            text-decoration: none;
            color: inherit;
        }

        /* Image Container with Relative Position for Overlay */
        .roundup-section-wrapper .image-container {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 5; /* Professional portrait ratio */
            margin-bottom: 15px;
            overflow: hidden;
        }

        .roundup-section-wrapper .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* White Overlay Box Style */
        .roundup-section-wrapper .overlay-box {
            position: absolute;
            bottom: 45px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #fff;
            border: 1px solid #000;
            width: 85%;
            padding: 12px 5px;
            text-align: center;
            box-sizing: border-box;
        }

        .roundup-section-wrapper .overlay-title {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            text-transform: uppercase;
            line-height: 1.1;
            color: #000;
        }

        /* Small Tag below the main box (e.g. COOKIE + KATE) */
        .roundup-section-wrapper .small-tag {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #fff;
            border: 1px solid #000;
            font-family: 'Montserrat', sans-serif;
            font-size: 9px;
            font-weight: 700;
            padding: 3px 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Style for the 3rd card which has text on image directly */
        .roundup-section-wrapper .direct-text {
            position: absolute;
            bottom: 30px;
            width: 100%;
            color: #fff;
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 34px;
            text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
        }

        /* Bottom Caption */
        .roundup-section-wrapper .bottom-caption {
            font-family: 'Lora', serif;
            font-size: 18px;
            font-weight: 700;
            margin-top: 5px;
            color: #000;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .roundup-section-wrapper .roundup-grid { grid-template-columns: repeat(2, 1fr); }
            .roundup-section-wrapper .main-title { font-size: 40px; }
        }
        @media (max-width: 600px) {
            .roundup-section-wrapper .roundup-grid { grid-template-columns: 1fr; }
        }