body {
            margin: 0;
            font-family: "DM Sans", sans-serif;
            background: #fafafa;
        }

        .press-wrapper-classs {
            width: 90%;
            max-width: 1350px;
            margin: auto;
            padding: 60px 0;
            text-align: center;
        }

        .press-title-classs {
            margin: 0;
            font-size: 52px;
            color: #072d6b;
            font-weight: bold;
            line-height: 1.09;
            letter-spacing: -1.65px;
            margin-bottom: 0;
        }

        .press-subtitle-classs {
            color: #072d6b;
            font-size: 20px;
            /* line-height: 1.2; */
            letter-spacing: -0.4px;
            font-weight: bold;
            text-transform: uppercase;
        }

        .press-header-classs {
            display: flex;
            justify-content: space-between;
            margin: 50px 0 30px;
            align-items: center;
        }

        .text-center{
            text-align:center;
        }

        /* === GALLERY === */
        .gallery-wrapper-classs {
            width: 92%;
            max-width: 1350px;
            margin: auto;
        }

        .gallery-grid-classs {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .gallery-grid-classs img {
            width: 100%;
            /* height: 185px; */
            object-fit: cover;
            border-radius: 4px;
            cursor: pointer;
        }

        /* Share Buttons */
        .share-box-classs {
            margin-top: 35px;
            text-align: center;
            font-size: 18px;
        }
        .share-box-classs img {
            width: 25px;
            margin: 0 8px;
        }

        /* === RELATED NEWS === */
        .related-wrapper-classs {
            background: #f5f5f5;
            padding: 60px 0;
            margin-top: 60px;
        }

        .related-title-classs {
            width: 92%;
            max-width: 1350px;
            margin: auto;
            margin-bottom: 25px;
            color: #072d6b;
            font-size: 20px;
            letter-spacing: -0.4px;
            font-weight: bold;
            text-transform: uppercase;
        }

        .related-row-classs {
            width: 92%;
            max-width: 1350px;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px 40px;
        }

        .related-item-classs {
            display: flex;
            gap: 18px;
            background: #fff;
            padding: 12px;
            border-radius: 6px;
            align-items: center;
        }

        .related-img-classs img {
            width: 185px;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
        }

        .related-tag-classs {
            font-size: 16px;
            align-items: center;
            color: #070707;
            font-weight: 500;
            text-transform: capitalize;
        }

        .related-content-classs h3 {
            margin-top: 5px;
            color:#072d6b;
            font-size: 20px;
            line-height: 1.2;
            letter-spacing: -0.4px;
        }


        .press-wrapper-classs {
            width: 90%;
            max-width: 1350px;
            margin: auto;
            padding: 60px 0;
            text-align: center;
        }

        .press-title-classs {
            margin: 0;
            font-size: 52px;
            color: #072d6b;
            font-weight: bold;
            line-height: 1.09;
            letter-spacing: -1.65px;
            margin-bottom: 0;
        }

        .press-subtitle-classs {
            color: #072d6b;
            font-size: 20px;
            /* line-height: 1.2; */
            letter-spacing: -0.4px;
            font-weight: bold;
            text-transform: uppercase;
        }

        .press-header-classs {
            display: flex;
            justify-content: space-between;
            margin: 50px 0 30px;
            align-items: center;
        }

        .sort-box-classs label {
            margin-right: 10px;
            color: #000;
            font-weight: 600;
        }

        .sort-box-classs select {
            padding: 8px 12px;
            border: 1px solid #ccc;
            font-size: 14px;
        }

        .press-grid-classs {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        /* CARD CLICKABLE */
        .press-card-classs {
            display: block;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 2px 6px rgba(0,0,0,0.08);
            text-decoration: none;
            color: inherit;
        }

        .press-card-classs img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .date-tag-classs {
            position: absolute;
            top: 12px;
            left: 12px;
            background: #000;
            color: #fff;
            padding: 6px 12px;
            font-size: 12px;
            font-weight: 600;
            border-radius: 4px;
        }

        .card-title-classs {            
            font-size: 16px;
            color: #070707;
            font-weight: 500;
            padding: 16px;
        }

        @media (max-width: 992px) {
            .press-grid-classs {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .press-grid-classs {
                grid-template-columns: 1fr;
            }
        }
