/**
    * @desc Blog Detail page styles (single.php)
    * @date August 2026
**/


html,
body {
    overflow-x: clip;
}


/* ---------- Banner ---------- */

.blog-detail-banner {
    position: relative;
    z-index: 2;
    padding: 64px 0 40px;
    background-color: var(--color-white-solid);
}

.blog-detail-banner-glow {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.blog-detail-banner-glow::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(91, 222, 204, 0.10), rgba(91, 222, 204, 0) 70%);
}

.blog-detail-banner-inner {
    position: relative;
    z-index: 1;
}

.blog-detail-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 18px;
}

.blog-detail-categories .category {
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(0, 27, 69, 0.15);
    background-color: #ECF7FF;
    color: var(--midnight-blue);
    font-size: 11px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1.32px;
    text-transform: uppercase;
}

.blog-detail-categories .category.badge-style-2 {
    border-color: rgba(91, 222, 204, 0.40);
    background-color: var(--icon-teal-bg);
    color: var(--teal);
}

.blog-detail-categories .category.badge-style-3 {
    border-color: rgba(255, 188, 125, 0.40);
    background-color: #FFF0DF;
    color: #A35E1E;
}

h1.blog-detail-title {
    color: var(--midnight-blue);
    font-size: 46px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -1.1px;
    padding-bottom: 28px;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px 20px;
    padding: 18px 0;
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
}

.blog-detail-meta-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-detail-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-detail-author-avatar {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--teal);
    overflow: hidden;
    flex-shrink: 0;
}

.blog-detail-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-detail-author-name {
    color: var(--midnight-blue);
    font-size: 15px;
    font-weight: 700;
    line-height: 110%;
}

.blog-detail-meta-divider {
    width: 1px;
    height: 32px;
    background-color: var(--gray-border);
    flex-shrink: 0;
}

.blog-detail-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-gray);
    font-size: 13px;
    line-height: 165%;
}

.blog-detail-date-icon {
    display: flex;
    color: var(--light-gray);
}

.blog-detail-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-action-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    border: 1px solid var(--gray-border);
    border-radius: 6px;
    background-color: var(--color-white-solid);
    color: var(--dark-gray-text);
    font-family: "Montserrat";
    font-size: 12px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.blog-action-button:hover {
    border-color: var(--midnight-blue);
    color: var(--midnight-blue);
    background-color: var(--muted-gray);
}

.blog-action-icon {
    display: flex;
    color: var(--teal);
    transition: transform 0.25s ease-in-out;
}

.blog-action-button:hover .blog-action-icon {
    transform: translateY(-2px);
}

.blog-copy-link.is-copied {
    border-color: var(--teal);
    color: var(--teal);
    background-color: var(--icon-teal-bg);
}

.blog-copy-link.is-copied .blog-action-icon {
    color: var(--teal);
    transform: none;
}

.blog-share {
    position: relative;
}

.blog-share-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 5;
    min-width: 170px;
    padding: 6px;
    border: 1px solid var(--gray-border);
    border-radius: 10px;
    background-color: var(--color-white-solid);
    box-shadow: 0 12px 30px 0 rgba(0, 27, 69, 0.12), 0 2px 6px 0 rgba(0, 27, 69, 0.04);
}

.blog-share-menu[hidden] {
    display: none;
}

.blog-share-link {
    display: block;
    padding: 9px 12px;
    border-radius: 6px;
    color: var(--dark-gray-text);
    font-size: 13px;
    font-weight: 600;
    line-height: 130%;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.blog-share-link:hover {
    background-color: var(--muted-gray);
    color: var(--midnight-blue);
}


/* ---------- Featured image ---------- */

.blog-detail-featured-image {
    padding-bottom: 40px;
    background-color: var(--color-white-solid);
}

.blog-detail-featured-image-inner {
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--muted-gray);
}

.blog-detail-featured-image-inner img {
    display: block;
    width: 100%;
    height: 547px;
    object-fit: cover;
}

/* ---------- Article body ---------- */

.blog-detail-narrative {
    padding: 48px 0 96px;
}

.blog-block + .blog-block {
    padding-top: 32px;
}

.blog-detail-narrative .blog-block h2 {
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -0.8px;
    padding-top: 0;
    padding-bottom: 12px;
}

.blog-block-text p {
    color: var(--dark-gray-text);
    font-size: 17px;
    line-height: 180%;
}

.blog-block-text p + p {
    padding-top: 14px;
}

.blog-block-text strong,
.blog-block-text b {
    color: var(--midnight-blue);
    font-weight: 600;
}

.blog-block-text a {
    color: var(--teal);
    text-decoration: underline;
}

.blog-block-text a:hover {
    text-decoration: none;
}

/* Video */
.blog-video-wrapper {
    border-radius: 14px;
    overflow: hidden;
    background-color: var(--midnight-blue);
}

/* Thumbnail box. The play button opens the shared #VideoModal popup - see main.js */
.blog-video-box {
    position: relative;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.blog-video-thumbnail {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark wash, so the white play button stays readable on a bright thumbnail */
.blog-video-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 27, 69, 0.10) 0%, rgba(0, 27, 69, 0.55) 100%);
}

/**
 * Size and skin only. The round shape and the middle position come from ".play-button" in
 * main.css. This is the same pattern as ".founders-video-section .play-button", but smaller,
 * because the article column is narrower than the founders section.
 */
.blog-video-box .play-button {
    width: 64px;
    height: 64px;
    border: 3px solid var(--color-white-solid);
    background: transparent;
}

.blog-video-box .play-button:hover {
    background-color: var(--midnight-blue);
}

.blog-video-box .play-button:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 4px;
}

/**
 * The in-page player. video-player.php no longer prints this markup, because the video now
 * opens in the popup. The rules stay here so the old layout can be put back in one step.
 */
.blog-video-embed {
    position: relative;
    padding-top: 56.25%;
}

.blog-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.blog-video-file {
    display: block;
    width: 100%;
    height: auto;
}

/* Tick list */
.blog-tick-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 14px;
    list-style: none;
}

.blog-tick-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border: 1px solid rgba(91, 222, 204, 0.2);
    border-radius: 10px;
    background-color: var(--quote-bg);
}

.blog-tick-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border-radius: 50%;
    background-color: var(--teal);
    flex-shrink: 0;
}

.blog-tick-text {
    color: var(--dark-gray-text);
    font-size: 15px;
    line-height: 160%;
}

.blog-tick-text strong,
.blog-tick-text b {
    color: var(--midnight-blue);
    font-weight: 600;
}

/* Cost table */
.blog-table {
    margin-top: 20px;
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    background-color: var(--color-white-solid);
    box-shadow: 0 24px 48px 0 rgba(0, 27, 69, 0.13), 0 8px 16px 0 rgba(0, 27, 69, 0.05);
    overflow: hidden;
}

/* Shared 3 column track, used by the head and every body row */
.blog-table-head,
.blog-table-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr;
}

.blog-table-head {
    position: relative;
    background-color: var(--midnight-blue);
}

/* Teal hairline under the header, fading out at both ends */
.blog-table-head::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(91, 222, 204, 0), #5BDECC 50%, rgba(91, 222, 204, 0));
}

.blog-table-head-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(221, 231, 244, 0.85);
    font-size: 11px;
    font-weight: 800;
    line-height: 165%;
    letter-spacing: 1.98px;
    text-transform: uppercase;
}

.blog-table-head-cell:last-child {
    border-right: 0;
}

.blog-table-head-icon {
    width: 13px;
    height: 13px;
    object-fit: contain;
    flex-shrink: 0;
}

.blog-table-row {
    border-bottom: 1px solid var(--gray-border);
}

.blog-table-row:last-child {
    border-bottom: 0;
}

/* Zebra striping */
.blog-table-row:nth-child(even) {
    background-color: var(--muted-gray);
}

.blog-table-cell {
    display: flex;
    align-items: center;
    padding: 22px 24px;
    border-right: 1px solid var(--gray-border);
}

.blog-table-cell:last-child {
    border-right: 0;
}

.blog-table-cell-label {
    gap: 14px;
}

.blog-table-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background-color: var(--icon-teal-bg);
    flex-shrink: 0;
}

.blog-table-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.blog-table-cell-label strong {
    color: var(--midnight-blue);
    font-size: 15px;
    font-weight: 700;
    line-height: 135%;
    letter-spacing: -0.08px;
}

/* Value + unit stack on desktop, and sit inline next to each other on mobile */
.blog-table-value-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.blog-table-value {
    color: var(--teal);
    font-size: 18px;
    font-weight: 800;
    line-height: 125%;
    letter-spacing: -0.25px;
}

.blog-table-value-note {
    color: var(--light-gray);
    font-size: 12px;
    font-weight: 600;
    font-style: normal;
    line-height: 125%;
}

.blog-table-cell-note {
    color: var(--color-gray);
    font-size: 14px;
    line-height: 155%;
}

/* FAQ - the accordion itself is styled by .accordionjs in main.css */
.blog-block-faq .custom-faq-content {
    padding-top: 4px;
}

/* Tags */
.blog-detail-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 32px;
}

.blog-detail-tags-label {
    color: var(--light-gray);
    font-size: 11px;
    font-weight: 800;
    line-height: 165%;
    letter-spacing: 1.54px;
    text-transform: uppercase;
}

.blog-detail-tag {
    padding: 6px 12px;
    border: 1px solid #D1D1D6;
    border-radius: 6px;
    background-color: var(--color-white-solid);
    color: #2274AC;
    font-size: 12px;
    font-weight: 600;
    line-height: 165%;
    text-decoration: underline;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.blog-detail-tag:hover {
    border-color: var(--midnight-blue);
    background-color: var(--muted-gray);
    text-decoration: none;
}

/* ---------- Sticky sidebar ---------- */

/* .sticky-sidebar in main.css already sets position: sticky / top: 120px */
.blog-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Author card */
.blog-author-card {
    padding: 22px 24px;
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    background-color: var(--color-white-solid);
    box-shadow: 0 1px 3px 0 rgba(0, 27, 69, 0.08), 0 1px 2px 0 rgba(0, 27, 69, 0.04);
}

.blog-author-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 12px;
}

.blog-author-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-author-identity {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.blog-author-name {
    color: var(--midnight-blue);
    font-size: 15px;
    font-weight: 800;
    line-height: 110%;
}

.blog-author-role {
    color: var(--light-gray);
    font-size: 12px;
    font-weight: 700;
    line-height: 135%;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.blog-author-bio,
.blog-author-bio p {
    color: var(--color-gray);
    font-size: 13px;
    line-height: 160%;
}

.blog-author-bio {
    padding-bottom: 14px;
}

.blog-author-bio strong {
    color: var(--midnight-blue);
    font-weight: 600;
}

.blog-author-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 1px solid var(--midnight-blue);
    border-radius: 4px;
    color: var(--midnight-blue);
    font-size: 12px;
    font-weight: 600;
    line-height: 165%;
    letter-spacing: 0.6px;
    text-align: center;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.blog-author-button:hover {
    background-color: var(--midnight-blue);
    color: var(--color-white-solid);
}

/* Book a call CTA reuses .case-study-cta-card - only the radius differs in this context */
.blog-detail-sidebar .case-study-cta-card {
    border-radius: 14px;
    padding: 21px 24px 22px;
}

/* Newsletter card */
.blog-newsletter-card {
    padding: 22px 24px;
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    background-color: var(--color-white-solid);
    box-shadow: 0 1px 3px 0 rgba(0, 27, 69, 0.08), 0 1px 2px 0 rgba(0, 27, 69, 0.04);
}

.blog-newsletter-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--midnight-blue);
    font-size: 16px;
    font-weight: 800;
    line-height: 115%;
    letter-spacing: -0.16px;
}

.blog-newsletter-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.blog-newsletter-text {
    padding-top: 6px;
    color: var(--color-gray);
    font-size: 13px;
    line-height: 155%;
}

.blog-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 14px;
}

.blog-newsletter-input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #D1D1D6;
    border-radius: 8px;
    background-color: var(--color-white-solid);
    color: var(--dark-gray-text);
    font-family: "Montserrat";
    font-size: 14px;
    line-height: 130%;
    transition: border-color 0.2s ease;
}

.blog-newsletter-input::placeholder {
    color: var(--light-gray);
}

.blog-newsletter-input:focus {
    border-color: var(--midnight-blue);
}

.blog-newsletter-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 28px;
    border: 1px solid var(--midnight-blue);
    border-radius: 6px;
    background-color: var(--midnight-blue);
    color: var(--color-white-solid);
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: 600;
    line-height: 165%;
    letter-spacing: 0.65px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.blog-newsletter-submit:hover {
    background-color: var(--teal);
    border-color: var(--teal);
    color: var(--midnight-blue);
}

.blog-newsletter-submit-icon {
    display: flex;
    transition: transform 0.25s ease-in-out;
}

.blog-newsletter-submit:hover .blog-newsletter-submit-icon {
    transform: translateX(4px);
}

.blog-newsletter-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding-top: 10px;
    color: var(--light-gray);
    font-size: 10px;
    line-height: 165%;
}

.blog-newsletter-note-icon {
    display: flex;
}

/* ---------- Related posts ---------- */

.blog-related-section.blogs-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(180deg, var(--quote-bg) 0%, var(--icon-teal-bg) 100%);
}

.blog-related-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(91, 222, 204, 0.20), rgba(91, 222, 204, 0) 70%);
    pointer-events: none;
}

.blog-related-section .container {
    position: relative;
    z-index: 1;
}

.blog-related-header {
    padding-bottom: 36px;
}

.blog-related-header h5.subheading {
    font-size: 11px;
    font-weight: 800;
    line-height: 165%;
    letter-spacing: 1.65px;
    padding-bottom: 10px;
}

.blog-related-header h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 115%;
    letter-spacing: -0.9px;
    text-transform: none;
}

.blog-related-section .blog-image {
    background-color: var(--muted-gray);
}

.blog-related-section .blog-card-categories {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.blog-related-section .blog-card-categories .category {
    position: static;
}


/* ---------- Responsive ---------- */

/* Sidebar column is narrower than the default col-sm-5 so the article keeps a readable measure */
@media (min-width: 992px) {
    .blog-detail-narrative .col-sm-7 {
        width: 63%;
    }

    .blog-detail-narrative .col-sm-5 {
        width: 37%;
    }
}

@media screen and (max-width: 992px) {
    
    .blog-detail-banner {
        padding: 48px 0 32px;
    }

    h1.blog-detail-title {
        font-size: 36px;
        padding-bottom: 22px;
    }

    .blog-detail-featured-image-inner img {
        height: 400px;
    }

    .blog-related-section.blogs-section {
        padding: 64px 0;
    }
    
       .blog-detail-narrative {
        padding: 40px 0 64px;
    }

    .blog-detail-sidebar.sticky-sidebar {
        position: static;
        top: auto;
    }

    .blog-detail-narrative .blog-block h2 {
        font-size: 28px;
    }

    .blog-table-head-cell,
    .blog-table-cell {
        padding: 18px 18px;
    }

    .blog-related-header {
        padding-bottom: 28px;
    }

    .blog-related-header h2 {
        font-size: 30px;
    }

    .blog-related-grid > [class^="col-sm-"] {
        width: 50%;
    }

    .blog-related-section .row {
        padding-bottom: 0;
    }
}

@media screen and (max-width: 767px) {

    /* Smaller play button, so it does not fill the narrow thumbnail */
    .blog-video-box .play-button {
        width: 52px;
        height: 52px;
        border-width: 2px;
    }

    .blog-video-box .play-button svg {
        width: 20px;
        height: 20px;
    }

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

    h1.blog-detail-title {
        font-size: 28px;
        line-height: 120%;
        letter-spacing: -0.6px;
    }

    .blog-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .blog-detail-featured-image {
        padding-bottom: 32px;
    }

    .blog-detail-featured-image-inner {
        border-radius: 14px;
    }

    .blog-detail-featured-image-inner img {
        height: 260px;
    }


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

    .blog-block + .blog-block {
        padding-top: 26px;
    }

    .blog-detail-narrative .blog-block h2 {
        font-size: 24px;
        letter-spacing: -0.5px;
    }

    .blog-block-text p {
        font-size: 15px;
        line-height: 175%;
    }

    .blog-table {
        margin-top: 16px;
        border-radius: 16px;
        box-shadow: 0 10px 30px 0 rgba(0, 27, 69, 0.05);
    }

    .blog-table-head {
        display: none;
    }

    .blog-table-row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 18px 20px;
    }

    .blog-table-row:nth-child(even) {
        background-color: var(--quote-bg);
    }

    .blog-table-cell {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 20px;
        padding: 0;
        border-right: 0;
    }

    .blog-table-cell-label {
        display: block;
        padding-bottom: 4px;
    }

    .blog-table-icon {
        display: none;
    }

    .blog-table-cell-label strong {
        font-size: 16px;
        line-height: 145%;
    }

    .blog-table-cell-value::before,
    .blog-table-cell-note::before {
        content: attr(data-label);
        flex-shrink: 0;
        color: var(--light-gray);
        font-size: 14px;
        font-weight: 400;
        line-height: 140%;
    }

    .blog-table-cell-value[data-label=""]::before,
    .blog-table-cell-note[data-label=""]::before {
        content: none;
    }

    .blog-table-value-group {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: baseline;
        gap: 4px;
        text-align: right;
    }

    .blog-table-value {
        font-size: 15px;
        line-height: 145%;
    }

    .blog-table-value-note {
        color: var(--teal);
        font-size: 15px;
        font-weight: 800;
        line-height: 145%;
    }

    .blog-table-note-text {
        color: var(--dark-gray-text);
        text-align: right;
    }

    .blog-tick-item {
        padding: 14px 16px;
        gap: 12px;
    }

    .blog-detail-tags {
        padding-top: 24px;
    }

    .blog-related-section.blogs-section {
        padding: 48px 0;
    }

    .blog-related-header h2 {
        font-size: 26px;
        letter-spacing: -0.5px;
    }

    /* Single column cards */
    .blog-related-grid > [class^="col-sm-"] {
        width: 100%;
    }
}

@media screen and (max-width: 575px) {

    /* Drop the divider and let the author + date wrap onto two lines */
    .blog-detail-meta-info {
        flex-wrap: wrap;
        gap: 12px;
    }

    .blog-detail-meta-divider {
        display: none;
    }

    .blog-detail-actions {
        width: 100%;
    }

    .blog-action-button {
        flex: 1;
        justify-content: center;
    }

    /* Keep the dropdown inside the viewport when the button is full width */
    .blog-share {
        flex: 1;
    }

    .blog-share .blog-action-button {
        width: 100%;
    }

    .blog-share-menu {
        left: 0;
        right: auto;
    }
}
