.row--rel { position: relative; overflow: visible; }
                .s-floating-img { grid-column: 1; position: absolute; top: 0; width: 26%; z-index: 1; }
                @media (max-width: 1024px) {
                    .s-floating-img { position: static; width: 100%; max-width: none; margin-bottom: 24px; grid-column: 1 / -1; }
                }
                @media (min-width: 1025px) {
                    .s-br-system {
                        min-height: 120vh;
                        display: flex;
                        flex-direction: column;
                    }
                    .s-br-system .row {
                        flex: 1;
                        display: grid;
                        grid-template-rows: 1fr;
                    }
                    .s-br-system .s-br__updates-img {
                        height: 100% !important;
                        width: 85% !important;
                    }
                }
                @media (max-width: 1024px) {
                    .s-br-system .s-br__updates-img {
                        height: 350px !important;
                        width: 100% !important;
                    }
                    .s-br-system .s-br__updates-right {
                        margin-top: var(--ds-space-4);
                    }
                    .s-br-system .s-br__updates-body {
                        margin-top: var(--ds-space-4);
                    }
                }
                @media (max-width: 640px) {
                    .s-br-system .s-br__updates-img {
                        height: 260px !important;
                    }
                }

                /* Message notifications styles */
                .s-br__updates-img {
                    position: relative;
                    overflow: hidden;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                .msg-card {
                    background: #ffffff;
                    border-radius: 18px;
                    padding: 24px;
                    width: calc(100% - 48px);
                    max-width: 410px;
                    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
                    position: absolute;
                    left: 50%;
                    top: 50%;
                    transform: translate(-50%, 150%) scale(0.9);
                    opacity: 0;
                    pointer-events: none;
                    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease-out;
                    display: flex;
                    flex-direction: column;
                    gap: 16px;
                    box-sizing: border-box;
                }

                .msg-card.active {
                    opacity: 1;
                    transform: translate(-50%, -50%) scale(1);
                    pointer-events: auto;
                }

                .msg-card.exit {
                    opacity: 0;
                    transform: translate(-50%, -250%) scale(0.9);
                    pointer-events: none;
                }

                .msg-card__header {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                }

                .msg-card__author {
                    font-size: 14px;
                    font-weight: 600;
                    color: #1e1e1e;
                    opacity: 0.5;
                    font-family: var(--font-heading), sans-serif;
                    letter-spacing: -0.18px;
                }

                .msg-card__dot {
                    width: 12px;
                    height: 12px;
                    background: #d9d9d9;
                    border-radius: 50%;
                }

                .msg-card__body {
                    font-size: 16px;
                    font-weight: 600;
                    line-height: 1.45;
                    color: #1e1e1e;
                    opacity: 0.9;
                    font-family: var(--font-body), sans-serif;
                    letter-spacing: -0.18px;
                }

                @media (max-width: 768px) {
                    .msg-card__author {
                        font-size: 12px;
                    }
                    .msg-card__body {
                        font-size: 14px;
                    }
                }

                /* Instagram publications grid styles */
                .s-cg__row {
                    display: grid;
                    grid-template-columns: repeat(8, 1fr);
                    column-gap: var(--ds-gap, 24px);
                    margin-bottom: var(--ds-space-3, 40px);
                    align-items: start;
                }

                .s-cg__row:last-of-type {
                    margin-bottom: 0;
                }

                .s-cg__item {
                    display: flex;
                    flex-direction: column;
                    gap: 8px !important;
                    transition: transform 0.3s ease;
                    text-decoration: none !important;
                    color: inherit;
                }

                .s-cg__item:hover {
                    transform: translateY(-5px);
                }

                .s-cg__img {
                    width: 100%;
                    aspect-ratio: auto !important;
                    max-width: none !important;
                    overflow: hidden;
                    border-radius: 5px;
                }

                .s-cg__img--ig {
                    aspect-ratio: 4 / 5 !important;
                }

                .s-cg__img--ig img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    display: block;
                    transition: transform 0.5s ease;
                }

                .s-cg__item:hover .s-cg__img img {
                    transform: scale(1.05);
                }

                .s-br__pub-meta {
                    margin-top: 4px;
                }

                .s-br__pub-meta div,
                .s-br__pub-meta svg,
                .s-br__pub-meta span {
                    opacity: 1 !important;
                    text-decoration: none !important;
                }

                .s-br__pub-meta svg path {
                    fill: #ffffff !important;
                }

                @media (max-width: 1024px) {
                    .s-cg__row {
                        grid-template-columns: repeat(3, 1fr);
                        row-gap: var(--ds-space-3, 40px);
                    }

                    .s-cg__item {
                        grid-column: auto !important;
                    }
                }

                @media (max-width: 640px) {
                    .s-cg__row {
                        grid-template-columns: repeat(2, 1fr);
                    }
                }
            