/* Temporary: Blog detail demo v2 (redesign) */
/* â”€â”€ Blog Detail Page (professional article layout) â”€â”€â”€â”€â”€ */
.blog-detail-page {
    --bd-navy: #0069b1;
    --bd-blue: #0069B1;
    --bd-red: #e12e56;
    --bd-ink: #1a2332;
    --bd-muted: rgba(26, 35, 50, 0.62);
    --bd-surface: #f4f7fb;
    background: var(--bd-surface);
}

.blog-detail-hero {
    position: relative;
    overflow: hidden;
    /* Preserve previous banner height after title moved into the card */
    min-height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-detail-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(0, 61, 107, 0.42) 0%, rgba(1, 110, 175, 0.22) 55%, rgba(225, 46, 86, 0.2) 100%);
    pointer-events: none;
    z-index: 0;
}

.blog-detail-hero > .container-xxl,
.blog-detail-hero > svg {
    position: relative;
    z-index: 1;
}

.blog-detail-shell {
    position: relative;
    z-index: 2;
    margin-top: -72px;
    padding-bottom: 35px;
}

.blog-detail-card {
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 40px rgba(0, 61, 107, 0.1);
    padding: 36px 40px 56px;
}

.blog-detail-card__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 0;
    border-bottom: none;
}

.blog-detail-card__toolbar-start {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.blog-detail-category-badge {
    display: inline-block;
    background: var(--bd-red);
    color: #fff;
    font-family: "Gotham", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
    line-height: 1.2;
}

.blog-detail-back {
    display: inline-flex;
    margin-bottom: 0;
    margin-left: auto;
    flex-shrink: 0;
}

.blog-detail-back__icon {
    transform: rotate(180deg);
}

.blog-detail-header {
    margin: 0 0 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(1, 110, 175, 0.12);
}

.blog-detail-title {
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--bd-navy);
    margin: 0 0 14px;
}

.blog-detail-standfirst {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(26, 35, 50, 0.68);
    margin: 0 0 3px;
}

.blog-detail-byline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 14px;
    width: 100%;
}

.blog-detail-byline__avatars {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.blog-detail-byline__photo,
.blog-detail-byline__avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex-shrink: 0;
}

.blog-detail-byline__photo {
    object-fit: cover;
    display: block;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 61, 107, 0.12);
}

.blog-detail-byline__avatar {
    background: linear-gradient(135deg, var(--bd-blue) 0%, var(--bd-navy) 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Gotham", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.blog-detail-byline__avatars .blog-detail-byline__photo + .blog-detail-byline__photo,
.blog-detail-byline__avatars .blog-detail-byline__avatar + .blog-detail-byline__avatar,
.blog-detail-byline__avatars .blog-detail-byline__photo + .blog-detail-byline__avatar,
.blog-detail-byline__avatars .blog-detail-byline__avatar + .blog-detail-byline__photo {
    margin-left: -8px;
}

.blog-detail-byline__avatars .blog-detail-byline__avatar:nth-child(2),
.blog-detail-byline__avatars .blog-detail-byline__photo:nth-child(2) {
    background: linear-gradient(135deg, var(--bd-red) 0%, #c43a5a 100%);
}

.blog-detail-byline__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    min-width: 0;
    font-family: "Gotham", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--bd-muted);
}

.blog-detail-byline__name {
    color: var(--bd-muted);
}

.blog-detail-byline__sep {
    opacity: 0.55;
}

.blog-detail-content {
    min-width: 0;
    width: 100%;
    overflow-wrap: break-word;
}

.blog-detail-content .blog-detail-quote {
    margin: 0;
    max-width: 100%;
}

.blog-detail-content .blog_desc {
    margin-top: 4px;
}

.blog-detail-content .blog_desc p,
.blog-detail-content .blog_desc li {
    font-size: 17px;
    line-height: 1.85;
    color: rgba(26, 35, 50, 0.88);
}

.blog-detail-content .blog_desc p {
    margin-bottom: 1.35em;
}

.blog-detail-content .blog_desc a {
    color: var(--bd-blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-detail-content .blog_desc h2,
.blog-detail-content .blog_desc h3,
.blog-detail-content .blog_desc h4 {
    font-family: "Gotham", sans-serif;
    color: var(--bd-navy);
    font-weight: 500;
    margin-top: 2.25rem;
    margin-bottom: 0.85rem;
    line-height: 1.3;
}

.blog-detail-content .blog_desc h2 {
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
}

.blog-detail-content .blog_desc blockquote,
.blog-detail-content .blog_desc mark {
    display: block;
    margin: 2rem 0;
    padding: 28px 32px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bd-navy) 0%, #005590 100%);
    color: #fff;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-style: italic;
    line-height: 1.5;
    position: relative;
    padding-left: 40px;
}

.blog-detail-content .blog_desc blockquote::before,
.blog-detail-content .blog_desc mark::before {
    content: "\201C";
    position: absolute;
    top: 8px;
    left: 18px;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--bd-red);
    font-style: normal;
    opacity: 0.9;
}

.blog-detail-content .blog_desc blockquote p,
.blog-detail-content .blog_desc mark p {
    color: #fff;
    margin: 0;
    padding-left: 12px;
}

.blog-detail-nav {
    padding: 35px 0 35px;
    background: var(--bd-surface);
}

.blog-detail-nav .news-navigation {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-detail-nav .news-nav-card {
    display: block;
    flex: 1 1 calc(50% - 10px);
    width: calc(50% - 10px);
    max-width: calc(50% - 10px);
    min-width: 0;
    height: auto;
    margin-left: 0;
    padding: 22px 24px;
    border: 1px solid rgba(0, 105, 177, 0.12);
    border-radius: 12px;
    text-decoration: none;
    background: #fff;
    text-align: left;
    transition: all .25s ease;
}

.blog-detail-nav .news-nav-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 105, 177, 0.1);
    border-color: rgba(0, 105, 177, 0.2);
}

.blog-detail-nav .nav-direction {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    color: #0069B1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.blog-detail-nav .nav-title {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.82);
    font-weight: 500;
    text-align: left;
}

.blog-detail-nav .next-news {
    margin-left: auto;
    text-align: left;
}

.blog-detail-nav .prev-news {
    margin-left: 0;
    text-align: left;
}

.blog-detail-related.blog-latest-section {
    background: #fff;
    padding-top: 56px;
    padding-bottom: 64px;
}

/* ── Blog Detail Quote Section ────────────────────────────────────── */
.blog-detail-quote-section {
    background: transparent;
    padding: 8px 0 44px;
}

.blog-detail-quote {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
    gap: 20px;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--bd-navy, #003d6b) 0%, #005590 100%);
    box-shadow: 0 10px 28px rgba(0, 61, 107, 0.12);
}

.blog-detail-quote__media {
    width: 100%;
    height: 100%;
    align-self: stretch;
    background: transparent;
    border: none;
}

.blog-detail-quote__media-frame {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 270px;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    display: block;
    padding: 0;
}

.blog-detail-quote__avatar {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    margin: 0;
    border-radius: 0;
    object-fit: cover;
    object-position: top;
    border: none;
    box-shadow: none;
    background: transparent;
}

.blog-detail-quote__content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    width: auto;
    max-width: none;
    min-width: 0;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}

.blog-detail-quote__text {
    font-size: clamp(1.05rem, 1.7vw, 1.22rem);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0;
    color: #fff;
    font-style: italic;
    margin: 0;
    padding: 32px 34px;
    width: 100%;
    height: 100%;
    min-height: 220px;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.blog-detail-quote__text::before {
    content: "\201C";
    color: var(--bd-surface, #ffffff);
    font-size: 2.75rem;
    font-style: normal;
    font-weight: 700;
    line-height: 0.7;
    display: block;
    margin-bottom: 12px;
}

.blog-detail-quote__text::after {
    content: none;
}

.blog-detail-quote--no-media {
    grid-template-columns: 1fr;
}

.blog-detail-quote--no-media .blog-detail-quote__content {
    padding: 0;
    max-width: none;
    width: auto;
}

.blog-detail-quote--no-media .blog-detail-quote__text {
    min-height: 0;
}

.blog-detail-quote--media-only {
    grid-template-columns: 1fr;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
}

.blog-detail-quote--media-only .blog-detail-quote__media {
    width: 100%;
    background: transparent;
}

.blog-detail-quote--media-only .blog-detail-quote__media-frame {
    min-height: 280px;
    position: relative;
}

.blog-detail-quote--media-only .blog-detail-quote__avatar {
    width: 100%;
    height: 100%;
    min-height: 280px;
    max-height: none;
    position: absolute;
}

/* â”€â”€ Blog Detail Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 991.98px) {
    .blog-detail-shell {
        margin-top: -56px;
        padding-bottom: 32px;
    }

    .blog-detail-card {
        padding: 28px 24px 40px;
        border-radius: 16px 16px 0 0;
    }
}

@media (max-width: 768px) {
    .bd-section__img{
        width: 100%;
    }
    .hero-banner{
        background-size: cover !important;
    }
    .cl-banner-inner.hero-banner.blog-detail-hero,
    .content-container .hero-banner.cl-banner-inner.blog-detail-hero {
        height: 113px !important;
        min-height: 113px;
        padding-top: 72px;
        padding-bottom: 48px;
    }

    .blog-detail-shell {
        margin-top: -48px;
        padding-bottom: 24px;
    }

    .blog-detail-card {
        padding: 22px 16px 32px;
        border-radius: 14px 14px 0 0;
    }

    .blog-detail-card__toolbar {
        margin-bottom: 18px;
        padding-bottom: 0;
        gap: 12px;
    }

    .blog-detail-header {
        margin-bottom: 28px;
        padding-bottom: 22px;
    }

    .blog-detail-title {
        font-size: clamp(1.5rem, 6vw, 1.85rem);
        margin-bottom: 12px;
    }

    .blog-detail-standfirst {
        font-size: 1.05rem;
        margin-bottom: 3px;
    }

    .blog-detail-byline {
        gap: 10px 12px;
    }

    .blog-detail-byline__photo,
    .blog-detail-byline__avatar {
        width: 31px;
        height: 31px;
        font-size: 9px;
    }

    .blog-detail-byline__meta {
        font-size: 13px;
    }

    .blog-detail-back {
        font-size: 13px;
    }

    .blog-detail-content .blog_desc p,
    .blog-detail-content .blog_desc li {
        font-size: 16px;
        line-height: 1.7;
    }

    .blog-detail-content .blog_desc h2,
    .blog-detail-content .blog_desc h3,
    .blog-detail-content .blog_desc h4 {
        font-size: clamp(1.125rem, 4.5vw, 1.5rem);
        margin-top: 1.5rem;
    }

    .blog-detail-content .blog_desc blockquote,
    .blog-detail-content .blog_desc mark {
        padding: 22px 20px;
        border-radius: 10px;
    }

    .blog-detail-quote {
        grid-template-columns: 1fr;
        gap: 16px;
        border: none;
        align-items: stretch;
        padding: 0;
        border-radius: 12px;
    }

    .blog-detail-quote__media {
        background: transparent;
        border: none;
        min-height: 220px;
    }

    .blog-detail-quote__media-frame {
        min-height: 220px;
        padding: 0;
        border: none;
        border-radius: 10px;
        background: transparent;
        position: relative;
    }

    .blog-detail-quote__avatar {
        width: 100%;
        max-width: none;
        height: 100%;
        min-height: 220px;
        max-height: none;
        border-radius: 0;
        object-fit: cover;
        position: absolute;
        inset: 0;
    }

    .blog-detail-quote__content {
        padding: 0;
        max-width: none;
        width: auto;
        height: auto;
    }

    .blog-detail-quote__text {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 0;
        padding: 28px 20px 22px 40px;
        min-height: 0;
        height: auto;
        border-radius: 0;
        background: transparent;
        position: relative;
    }

    .blog-detail-quote__text::before {
        content: "\201C";
        position: absolute;
        top: 8px;
        left: 18px;
        font-size: 3.5rem;
        line-height: 1;
        color: var(--bd-red);
        font-style: normal;
        font-weight: 400;
        opacity: 0.9;
        display: block;
        margin-bottom: 0;
    }

    .blog-detail-nav {
        padding: 0 0 32px;
    }

    .blog-detail-nav .news-nav-card {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .blog-detail-nav .next-news {
        margin-left: 0;
    }

    .blog-detail-related.blog-latest-section {
        padding-top: 40px;
        padding-bottom: 48px;
    }

    .blog-detail-page .tx-breadcrumb li[aria-current="page"] {
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width: 575.98px) {
    .blog-detail-category-badge {
        font-size: 10px;
        padding: 5px 10px;
    }
}

/* ── Blog custom sections (inside .blog-detail-card) ───────────────── */
.bd-section__heading {
    font-family: "Gotham", sans-serif;
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
    font-weight: 500;
    line-height: 1.3;
    color: var(--bd-navy, #003d6b);
    margin: 0 0 0.85rem;
}

.bd-section__body.blog_desc p,
.bd-section__body.blog_desc li {
    font-size: 17px;
    line-height: 1.85;
    color: rgba(26, 35, 50, 0.88);
}

.bd-section__body.blog_desc p {
    margin-bottom: 1.35em;
}

.bd-section__figure {
    margin: 0;
    text-align: center;
}

.bd-section__img {
    display: block;
    height: auto;
    border-radius: 12px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.bd-section__caption {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--bd-muted, rgba(26, 35, 50, 0.62));
    text-align: center;
}

.bd-section--pull-quote .blog-detail-quote {
    margin: 0;
    grid-template-columns: minmax(0, 0.35fr) minmax(0, 0.65fr);
}

.bd-section--pull-quote .blog-detail-quote--no-media {
    grid-template-columns: 1fr;
}

.bd-section--pull-quote .blog-detail-quote__media {
    width: 100%;
    max-width: none;
    order: 1;
}

.bd-section--pull-quote .blog-detail-quote__content {
    width: 100%;
    max-width: none;
    order: 2;
}

.bd-section--pull-quote .blog-detail-quote--no-media .blog-detail-quote__content {
    width: 100%;
    max-width: 100%;
}

.bd-section--pull-quote {
    margin-bottom: 1.35rem;
}

.bd-section--pull-quote .blog-detail-quote__text p {
    color: #fff;
    margin: 0 0 0.75em;
}

.bd-section--pull-quote .blog-detail-quote__text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .bd-section--pull-quote .blog-detail-quote {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bd-section--pull-quote .blog-detail-quote__media {
        order: 1;
        width: 100%;
        min-height: 220px;
    }

    .bd-section--pull-quote .blog-detail-quote__content {
        order: 2;
        width: 100%;
    }
}

/* Timeline */
.bd-timeline {
    list-style: none;
    margin: 0;
    padding: 0 0 0 4px;
    position: relative;
}

.bd-timeline::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, var(--bd-blue, #016EAF) 0%, rgba(1, 110, 175, 0.15) 100%);
}

.bd-timeline__item {
    position: relative;
    padding: 0 0 28px 32px;
}

.bd-timeline__item:last-child {
    padding-bottom: 0;
}

.bd-timeline__marker {
    position: absolute;
    left: -4px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--bd-blue, #016EAF);
    box-sizing: border-box;
    z-index: 1;
}

.bd-timeline__title {
    font-family: "Gotham", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--bd-navy, #003d6b);
    margin: 0 0 8px;
    line-height: 1.35;
}

.bd-timeline__desc.blog_desc p,
.bd-timeline__desc.blog_desc li {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(26, 35, 50, 0.88);
}

.bd-timeline__desc.blog_desc p {
    margin-bottom: 0.85em;
}

.bd-timeline__desc.blog_desc p:last-child {
    margin-bottom: 0;
}

/* CTA + Ending — matches site contactus strip */
.bd-section--cta-ending {
    margin-top: 2.5rem;
}

.bd-cta {
    background: var(--bd-blue, #016EAF);
    border-radius: 0;
    color: #fff;
    /* Break out of card padding so the bar spans full card width */
    margin-left: -40px;
    margin-right: -40px;
}

.bd-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px 40px;
    padding: 28px 40px;
}

.bd-cta__copy {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1 1 auto;
    min-width: 0;
}

.bd-cta__divider {
    flex: 0 0 auto;
    width: 1px;
    align-self: stretch;
    min-height: 40px;
    background: rgba(255, 255, 255, 0.55);
}

.bd-cta__text {
    min-width: 0;
}

.bd-cta__heading {
    font-family: "Gotham", sans-serif;
    font-size: clamp(1.15rem, 1.8vw, 1.35rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.35;
}

.bd-cta__body.blog_desc,
.bd-cta__body.blog_desc p,
.bd-cta__body.blog_desc li {
    color: #fff;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 300;
    line-height: 1.5;
}

.bd-cta__body.blog_desc p {
    margin: 0 0 0.35em;
}

.bd-cta__body.blog_desc p:last-child {
    margin-bottom: 0;
}

.bd-cta__body.blog_desc a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bd-cta__action {
    flex: 0 0 auto;
    min-width: 160px;
}

.bd-cta .bd-cta__btn.btn.btn-light.cl-read-more {
    min-width: 160px;
    justify-content: center;
    white-space: nowrap;
    border: 1px solid #fff;
    background-color: #fff;
    color: #0069B1;
}

.bd-cta .bd-cta__btn.btn.btn-light.cl-read-more:hover,
.bd-cta .bd-cta__btn.btn.btn-light.cl-read-more:focus,
.bd-cta .bd-cta__btn.btn.btn-light.cl-read-more:active {
    background-color: #fff !important;
    border-color: #fff !important;
    color: #0069B1 !important;
}

.bd-ending {
    margin-top: 1.75rem;
    padding-top: 0.25rem;
}

.bd-ending__heading {
    font-family: "Gotham", sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    font-weight: 500;
    color: var(--bd-navy, #003d6b);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.bd-ending__body.blog_desc p,
.bd-ending__body.blog_desc li {
    font-size: 17px;
    line-height: 1.85;
    color: rgba(26, 35, 50, 0.88);
}

.bd-ending__body.blog_desc p {
    margin-bottom: 0.85em;
}

.bd-ending__body.blog_desc p:last-child {
    margin-bottom: 0;
}
.bd-section--image{
    margin-bottom: 1.35rem;
}
@media (max-width: 991.98px) {
    .bd-cta {
        margin-left: -24px;
        margin-right: -24px;
    }

    .bd-cta__inner {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 768px) {
    .bd-cta {
        margin-left: -16px;
        margin-right: -16px;
    }

    .bd-cta__inner {
        flex-direction: column;
        align-items: stretch;
        padding: 22px 16px;
        gap: 18px;
    }

    .bd-cta__copy {
        align-items: flex-start;
    }

    .bd-cta__divider {
        min-height: 48px;
    }

    .bd-cta__action,
    .bd-cta__btn {
        width: 100%;
        min-width: 0;
    }

    .bd-timeline__item {
        padding-bottom: 22px;
    }
}
@media screen and (min-width: 2049px) and (max-width: 2100px) {

    .hero-banner {
        height: 550px !important;
    }
}