/* Inline section border: fixed 48px topic accent + flexible gray track (accent does not shrink). */
.rcm-section-border {
    display: flex !important;
    align-items: stretch !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    height: 6px !important;
    box-sizing: border-box !important;
    background-image: none !important;
    background-color: transparent !important;
    border: none !important;
}

.rcm-section-border__accent {
    flex: 0 0 48px !important;
    width: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
    height: 6px !important;
    flex-shrink: 0 !important;
}

.rcm-section-border__accent svg {
    display: block !important;
    width: 48px !important;
    height: 6px !important;
}

.rcm-section-border__track {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    height: 6px !important;
}

.rcm-section-border__track svg {
    display: block !important;
    width: 100% !important;
    height: 6px !important;
}

/* Narrow viewports: wider topic accent (editors picks, directories, etc.) */
@media (max-width: 767px) {
    .rcm-section-border {
        height: 8px !important;
    }

    .rcm-section-border__accent {
        flex: 0 0 35% !important;
        width: 35% !important;
        min-width: 35% !important;
        max-width: 35% !important;
        height: 8px !important;
    }

    .rcm-section-border__accent svg {
        width: 100% !important;
        height: 8px !important;
    }

    .rcm-section-border__track {
        flex: 0 0 65% !important;
        width: 65% !important;
        height: 8px !important;
    }

    .rcm-section-border__track svg {
        height: 8px !important;
    }
}

@media (max-width: 480px) {
    .rcm-section-border__accent {
        flex: 0 0 45% !important;
        width: 45% !important;
        min-width: 45% !important;
        max-width: 45% !important;
    }

    .rcm-section-border__track {
        flex: 0 0 55% !important;
        width: 55% !important;
    }
}

.rcm-directories-view-all__border .rcm-section-border {
    width: 100% !important;
}

/* Hero Banner Shortcode */
.rcm-hero-banner {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-color: #183354;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rcm-hero-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(24, 51, 84, 0.9) 0%, rgba(113, 83, 176, 0.8) 100%);
}

.rcm-hero-banner__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.rcm-hero-banner__title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.2;
}

.rcm-hero-banner__subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px;
    line-height: 1.5;
}

.rcm-hero-banner__cta {
    display: inline-block;
    padding: 15px 40px;
    background: #7153b0;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.rcm-hero-banner__cta:hover {
    background: #5a3f8f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(113, 83, 176, 0.3);
}

/* Featured Articles Shortcode */
.rcm-featured-articles {
    width: 100%;
    padding: 20px 0;
    background-color: #ffffff;
    color: #183354;
    overflow-x: hidden;
}

.rcm-featured-articles__container {
    max-width: 933px;
    margin: 0 auto;
    padding: 0 15px;
}

.rcm-featured-articles__frame {
    position: relative;
    overflow: hidden;
}

.rcm-featured-articles a:focus-visible {
    outline: 1px solid var(--rcm-topic-color, #7153B0);
    outline-offset: 2px;
}

.rcm-featured-articles__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 3px;
}

.rcm-featured-articles__title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 25px;
    color: #183354;
    margin: 0;
}

.rcm-featured-articles__view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #183354;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13.58px;
    padding: 10px 0;
}

.rcm-featured-articles__view-all-icon {
    width: 10px;
    height: 10px;
    color: var(--rcm-topic-color, #7153B0);
    display: inline-flex;
}

.rcm-featured-articles__border {
    position: relative !important;
    width: calc(100% - 6px) !important;
    height: 6px !important;
    background-image: none !important;
    background-repeat: no-repeat !important;
    background-position: left center !important;
    background-size: 1251px 6px !important;
    background-color: transparent !important;
    border: none !important;
    margin: 0 3px 36px;
    overflow: visible;
}


.rcm-featured-articles__main-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.rcm-featured-articles__list {
    flex: 1;
    display: flex;
    gap: 39px;
    overflow-x: auto;
    padding-bottom: 15px;
    scrollbar-width: none;
}

.rcm-featured-articles__list::-webkit-scrollbar {
    display: none;
}

.rcm-featured-articles__card {
    flex: 0 0 284px;
    width: 284px;
    min-height: 355px;
    position: relative;
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.rcm-featured-articles__card-image {
    position: relative;
    width: 100%;
    height: 233px;
    background-size: cover;
    background-position: center;
    display: block;
    text-decoration: none;
}

.rcm-featured-articles__play-button {
    position: absolute;
    left: 50%;
    top: 116.5px;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    display: block;
    text-decoration: none;
    z-index: 2;
}

.rcm-featured-articles__play-symbol {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 17px;
    font-family: 'Font Awesome 5 Free', sans-serif;
    font-size: 17.45px;
    line-height: 17.45px;
    color: var(--rcm-topic-color, #7153B0);
}

.rcm-featured-articles__card-tag {
    display: block;
    padding: 20px 15px 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12.61px;
    line-height: 17.65px;
    color: #6D757F;
    text-transform: uppercase;
    text-decoration: none;
}

.rcm-featured-articles__card-title {
    display: block;
    padding: 8px 15px 20px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 19.39px;
    line-height: 25.21px;
    color: #183354;
    text-decoration: none;
}

/* Ads Sections */
.rcm-featured-articles__sidebar-ad-rect {
    width: 300px;
    min-height: 600px;
    background-color: #F1F1F1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.rcm-featured-articles__bottom-ad-rect {
    width: 728px;
    height: 90px;
    background-color: #F1F1F1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    margin: 30px auto 0;
    position: relative;
}

.rcm-featured-articles__ad-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 28.6px;
    line-height: 28.59px;
    color: #000000;
    opacity: 0.1;
}

.rcm-featured-articles__ad-label--sidebar {
    position: static;
}

.rcm-featured-articles__ad-label--bottom {
    position: static;
}

.rcm-featured-articles__divider {
    display: none;
}

@media (max-width: 767px) {
    .rcm-featured-articles__sidebar-ad-rect {
        width: 100%;
        min-height: 250px;
        margin-top: 30px;
    }

    .rcm-featured-articles__sidebar-ad-rect + .rcm-featured-articles__bottom-ad-rect {
        margin-top: 28px;
    }
}

@media (max-width: 767px) {
    .rcm-featured-articles__container {
        padding: 0;
        /* Full width for horizontal scroll */
    }

    .rcm-featured-articles__header {
        margin-left: 15px;
        margin-right: 15px;
    }

    .rcm-featured-articles__border {
        margin-left: 15px;
        margin-right: 15px;
    }

    .rcm-featured-articles__list {
        padding-left: 15px;
        padding-right: 15px;
        -webkit-overflow-scrolling: touch;
    }

    .rcm-featured-articles__bottom-ad-rect {
        width: 352px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .rcm-featured-articles {
        padding: 15px 0;
    }
}

@media (max-width: 1299px) and (min-width: 768px) {
    .rcm-featured-articles__container {
        max-width: 1273px;
    }

    .rcm-featured-articles__frame {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 300px;
        column-gap: 30px;
        row-gap: 30px;
    }

    .rcm-featured-articles__header,
    .rcm-featured-articles__border {
        grid-column: 1 / -1;
    }

    .rcm-featured-articles__main-content {
        grid-column: 1;
    }

    .rcm-featured-articles__sidebar-ad-rect {
        grid-column: 2;
        margin-top: 0;
    }

    .rcm-featured-articles__bottom-ad-rect {
        grid-column: 1 / -1;
        margin-top: 0;
        width: 100%;
    }

    .rcm-featured-articles__list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 39px;
        overflow: hidden;
        padding-bottom: 0;
    }

    .rcm-featured-articles__card {
        flex: none;
        width: 100%;
        height: auto;
        min-height: 355px;
    }
}

@media (min-width: 1300px) {
    .rcm-featured-articles__container {
        max-width: 1273px;
        padding: 0;
    }

    .rcm-featured-articles__frame {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 300px;
        column-gap: 43px; /* 930px content + 43px gap + 300px ad = 1273px max-width */
        row-gap: 30px;
        position: relative;
    }

    .rcm-featured-articles__header {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        grid-column: 1 / -1;
        margin-bottom: 20px;
        padding: 0;
    }

    .rcm-featured-articles__title {
        font-family: 'Manrope', sans-serif;
        font-size: 25px;
        line-height: 25.6px;
        margin: 0;
        padding: 0;
    }

    .rcm-featured-articles__view-all {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 1px solid #CFCFCF;
        padding: 10px 18px;
        font-size: 14px;
        line-height: 14px;
        text-decoration: none;
        color: #183354;
        border-radius: 4px;
    }

    .rcm-featured-articles__view-all-icon {
        width: 10px;
        height: 10px;
        display: block;
    }

    .rcm-featured-articles__border {
        position: relative !important;
        grid-column: 1 / -1;
        width: 100% !important;
        height: 6px !important;
        background-image: none !important;
        background-repeat: no-repeat !important;
        background-position: left center !important;
        background-size: cover !important;
        background-color: transparent !important;
        border: none !important;
        margin: 0 0 34px 0 !important;
    }

    .rcm-featured-articles__main-content {
        position: relative;
        grid-column: 1;
        width: 100%;
        display: block;
    }

    .rcm-featured-articles__list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 39px;
        width: 100%;
        position: relative;
        padding-bottom: 0;
        overflow: visible;
    }

    .rcm-featured-articles__card {
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        overflow: visible;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
    }

    .rcm-featured-articles__card-image {
        position: relative;
        width: 100%;
        flex-shrink: 0;
    }

    .rcm-featured-articles__card-tag {
        position: relative;
        width: 100%;
        height: auto;
        left: 0;
        top: 0;
        padding: 20px 0 0 0;
    }

    .rcm-featured-articles__card-title {
        position: relative;
        width: 100%;
        height: auto;
        left: 0;
        top: 0;
        padding: 8px 0 20px 0;
    }

    .rcm-featured-articles__divider {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 1px;
        height: auto;
        background: #DFDFDF;
        z-index: 0;
    }

    .rcm-featured-articles__divider--1 {
        left: calc(33.3333% - 6.5px);
    }

    .rcm-featured-articles__divider--2 {
        left: calc(66.6666% + 6.5px);
    }

    .rcm-featured-articles__sidebar-ad-rect {
        position: relative;
        grid-column: 2;
        width: 300px;
        min-height: 600px;
        border-radius: 0;
        margin-top: 0;
    }

    .rcm-featured-articles__bottom-ad-rect {
        position: relative;
        grid-column: 1 / -1;
        width: 100%;
        height: 90px;
        border-radius: 0;
        margin: 30px 0 0 0;
        max-width: 728px;
        margin-left: auto;
        margin-right: auto;
    }

    .rcm-featured-articles__ad-label {
        opacity: 1;
    }

    .rcm-featured-articles__ad-label--sidebar {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: auto;
        height: auto;
    }

    .rcm-featured-articles__ad-label--bottom {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: auto;
        height: auto;
    }

    .rcm-featured-articles__play-button {
        position: absolute;
        left: 50%;
        top: 116.5px;
        transform: translate(-50%, -50%);
    }

    .rcm-featured-articles__play-symbol {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}


/* Latest Guides Shortcode */
.rcm-latest-guides {
    padding: 60px 0;
    background: #f8f9fa;
}

.rcm-latest-guides__container {
    max-width: 1261.57px;
    margin: 0 auto;
    padding: 0;
}

.rcm-latest-guides__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px !important;
    position: relative !important;
    height: 67.58px !important;
}

.rcm-latest-guides__border {
    position: absolute !important;
    left: 10.98px !important;
    right: 0.25px !important;
    top: 61.73px !important;
    width: auto !important;
    height: 6px !important;
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    z-index: 1 !important;
    box-sizing: border-box !important;
}

.rcm-latest-guides__title {
    position: absolute !important;
    left: 10.67px !important;
    top: 0 !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 25px !important;
    font-weight: 700;
    color: #183354;
    margin: 0;
    line-height: 32.58px !important;
}

.rcm-latest-guides__view-all {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    display: flex;
    align-items: center;
    gap: 9.41px;
    width: 117.353px !important;
    height: 34.909px !important;
    padding: 0 17.45px !important;
    border: 0.97px solid #cfcfcf !important;
    border-radius: 3.879px !important;
    box-sizing: border-box !important;
    color: #7153b0;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Inter', sans-serif !important;
    font-size: 13.576px !important;
    text-transform: uppercase !important;
    transition: color 0.3s ease;
}

.rcm-explore-places__header--single .rcm-explore-places__title {
    position: static !important;
    left: auto !important;
    top: auto !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 25px !important;
    line-height: 32.58px !important;
}

.rcm-latest-guides__view-all:hover {
    color: #5a3f8f;
}

.rcm-latest-guides__grid {
    display: grid;
    grid-template-columns: repeat(4, 290.45px);
    gap: 29.79px;
}

.rcm-latest-guides__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rcm-latest-guides__item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.rcm-latest-guides__item:hover {
    transform: translateY(-3px);
}

.rcm-latest-guides__item-link {
    display: block;
    text-decoration: none;
}

.rcm-latest-guides__item-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.rcm-latest-guides__item-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 35px;
    height: 35px;
    background: #7153b0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.rcm-latest-guides__item-content {
    padding: 20px;
}

.rcm-latest-guides__item-title {
    font-size: 18px;
    font-weight: 600;
    color: #183354;
    margin: 0 0 10px;
    line-height: 1.4;
}

.rcm-latest-guides__item-excerpt {
    font-size: 14px;
    color: #545e69;
    line-height: 1.6;
    margin: 0 0 15px;
}

.rcm-latest-guides__item-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #7153b0;
    font-size: 14px;
    font-weight: 600;
}

.rcm-latest-guides--list .rcm-latest-guides__item {
    display: flex;
}

.rcm-latest-guides--list .rcm-latest-guides__item-image {
    width: 250px;
    flex-shrink: 0;
}

.rcm-latest-guides--list .rcm-latest-guides__item-content {
    flex: 1;
}

/* Upcoming Events Shortcode */
.rcm-upcoming-events {
    padding: 60px 0;
}

.rcm-upcoming-events__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rcm-upcoming-events__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.rcm-upcoming-events__title {
    font-size: 34px;
    font-weight: 700;
    color: #183354;
    margin: 0;
}

.rcm-upcoming-events__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rcm-upcoming-events__calendar-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: #f0f0f0;
    border-radius: 6px;
    color: #183354;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.rcm-upcoming-events__calendar-link:hover {
    background: #e0e0e0;
}

.rcm-upcoming-events__view-all {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #7153b0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.rcm-upcoming-events__view-all:hover {
    color: #5a3f8f;
}

.rcm-upcoming-events__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rcm-upcoming-events__item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rcm-upcoming-events__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.rcm-upcoming-events__item-link {
    display: block;
    text-decoration: none;
}

.rcm-upcoming-events__item-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.rcm-upcoming-events__item-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.rcm-upcoming-events__item-day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #7153b0;
    line-height: 1;
}

.rcm-upcoming-events__item-month {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #6d757e;
    text-transform: uppercase;
    margin-top: 2px;
}

.rcm-upcoming-events__item-price {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    background: #7153b0;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.rcm-upcoming-events__item-content {
    padding: 20px;
}

.rcm-upcoming-events__item-title {
    font-size: 18px;
    font-weight: 600;
    color: #183354;
    margin: 0 0 10px;
    line-height: 1.4;
}

.rcm-upcoming-events__item-venue {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #6d757e;
    margin: 0 0 10px;
}

.rcm-upcoming-events__item-description {
    font-size: 14px;
    color: #545e69;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for New Shortcodes */
@media (max-width: 768px) {
    .rcm-hero-banner {
        min-height: 400px;
    }

    .rcm-hero-banner__title {
        font-size: 32px;
    }

    .rcm-hero-banner__subtitle {
        font-size: 16px;
    }

    .rcm-featured-articles__header,
    .rcm-latest-guides__header,
    .rcm-upcoming-events__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .rcm-featured-articles__title,
    .rcm-latest-guides__title,
    .rcm-upcoming-events__title {
        font-size: 24px;
    }

    .rcm-featured-articles__grid,
    .rcm-upcoming-events__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rcm-latest-guides__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .rcm-latest-guides--list .rcm-latest-guides__item {
        flex-direction: column;
    }

    .rcm-latest-guides--list .rcm-latest-guides__item-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .rcm-hero-banner__title {
        font-size: 28px;
    }

    .rcm-hero-banner__cta {
        padding: 12px 30px;
        font-size: 14px;
    }

    .rcm-latest-guides__grid {
        grid-template-columns: 1fr;
    }

    .rcm-upcoming-events__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Dashboard Styles */
.rcm-dashboard-page {
    --dashboard-bg: #f5f7fa;
    --dashboard-card-bg: #ffffff;
    --dashboard-text: #183354;
    --dashboard-border: #e1e4e8;
    --dashboard-primary: #7153b0;

    background-color: var(--dashboard-bg);
    color: var(--dashboard-text);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.rcm-dashboard-header {
    background-color: var(--dashboard-card-bg);
    border-bottom: 1px solid var(--dashboard-border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
}

.rcm-dashboard-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rcm-dashboard-header__logo img {
    height: 32px;
}

.rcm-dashboard-main {
    flex: 1;
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 30px 20px;
}

.rcm-dashboard-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.rcm-dashboard-card {
    background-color: var(--dashboard-card-bg);
    border: 1px solid var(--dashboard-border);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.rcm-dashboard-card--metrics,
.rcm-dashboard-card--alerts {
    grid-column: span 6;
}

.rcm-dashboard-card--activity {
    grid-column: span 12;
}

.rcm-dashboard-card__header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--dashboard-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rcm-dashboard-card__header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.rcm-dashboard-card__content {
    padding: 20px;
    flex: 1;
}

.rcm-dashboard-footer {
    background-color: var(--dashboard-card-bg);
    border-top: 1px solid var(--dashboard-border);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
}

.rcm-dashboard-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.rcm-dashboard-footer__links {
    display: flex;
    gap: 20px;
}

.rcm-dashboard-footer__links a {
    text-decoration: none;
    color: #666;
}

.rcm-dashboard-footer__links a:hover {
    color: var(--dashboard-primary);
}

/* Slider Toggle Styles */
.rcm-dashboard-slider-toggle {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.rcm-dashboard-slider-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.rcm-dashboard-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 20px;
}

.rcm-dashboard-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.rcm-dashboard-slider {
    background-color: var(--dashboard-primary);
}

input:checked+.rcm-dashboard-slider:before {
    transform: translateX(20px);
}

/* Collapsible Section Logic */
.rcm-dashboard-card__content {
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    overflow: hidden;
}

.rcm-dashboard-card-collapse:not(:checked)~.rcm-dashboard-card__content {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* User Menu Styles */
.rcm-dashboard-user-menu {
    position: relative;
}

.rcm-dashboard-user-menu__trigger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dashboard-text);
}

.rcm-dashboard-user-menu__dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    background-color: var(--dashboard-card-bg);
    border: 1px solid var(--dashboard-border);
    border-radius: 4px;
    padding: 10px;
    min-width: 150px;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.rcm-dashboard-user-menu:hover .rcm-dashboard-user-menu__dropdown {
    display: block;
}

.rcm-dashboard-theme-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

/* Dark Theme Variables */
.rcm-dashboard--dark {
    --dashboard-bg: #1a202c;
    --dashboard-card-bg: #2d3748;
    --dashboard-text: #e2e8f0;
    --dashboard-border: #4a5568;
    --dashboard-primary: #9f7aea;
}

.rcm-dashboard--dark .rcm-dashboard-footer__container,
.rcm-dashboard--dark .rcm-dashboard-footer__links a {
    color: #a0aec0;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .rcm-dashboard-card--metrics,
    .rcm-dashboard-card--alerts {
        grid-column: span 12;
    }

    .rcm-dashboard-footer__container {
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        height: auto;
        padding: 10px;
    }

    .rcm-dashboard-footer {
        height: auto;
    }

    .rcm-dashboard-main {
        margin-bottom: 80px;
    }
}

.rcm-json-1 {
    width: 100%;
    padding: 20px 0;
    background-color: #ffffff;
    color: #183354;
}

.rcm-json-1__container {
    max-width: 1289px;
    margin: 0 auto;
    padding: 0 15px;
}

.rcm-json-1__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.rcm-json-1__title {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 21.33px;
    line-height: 25.6px;
    color: #183354;
}

.rcm-json-1__view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 17px;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    text-decoration: none;
    color: #183354;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.rcm-json-1__view-all:hover {
    background-color: var(--rcm-topic-color, #7153b0);
    border-color: var(--rcm-topic-color, #7153b0);
    color: #fff;
}

.rcm-json-1__view-all svg {
    color: var(--rcm-topic-color, #7153b0);
    transition: color 0.2s ease;
}

.rcm-json-1__view-all:hover svg {
    color: #fff;
}

.rcm-json-1__border {
    position: relative !important;
    width: 100% !important;
    height: 6px !important;
    background-image: none !important;
    background-repeat: no-repeat !important;
    background-position: left center !important;
    background-size: 1251px 6px !important;
    background-color: transparent !important;
    border: none !important;
    margin-top: 15px;
    overflow: visible;
}

.rcm-json-1__left {
    width: 100%;
}

.rcm-json-1__cards-viewport {
    width: 100%;
    margin-top: 29.39px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.rcm-json-1__cards-viewport::-webkit-scrollbar {
    display: none;
}

.rcm-json-1__cards-viewport--scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.rcm-json-1__cards-viewport--scroll::-webkit-scrollbar {
    display: none;
}

.rcm-json-1__cards-track {
    display: flex;
    gap: 38.79px;
    width: max-content;
    transform: translateX(0);
    transition: transform 0.3s ease;
    will-change: transform;
}

.rcm-json-1__card {
    flex: 0 0 284.12px;
    width: 284.12px;
    height: 355.09px;
    background: #ffffff;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.rcm-json-1__card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: -0.39px;
    right: -18.33px;
    width: 1px;
    height: 339px;
    background: #dfdfdf;
}

.rcm-json-1__card-image {
    width: 100%;
    height: 232.73px;
    display: block;
    background-color: #dfdfdf;
    background-size: cover;
    background-position: center;
    text-decoration: none;
}

.rcm-json-1__card-tag {
    display: block;
    padding: 17.45px 0 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12.61px;
    line-height: 17.65px;
    color: #6d757f;
    text-decoration: none;
}

.rcm-json-1__card-title {
    display: block;
    padding: 8.73px 0 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 19.39px;
    line-height: 25.21px;
    color: #183354;
    text-decoration: none;
    width: 100%;
    max-width: 286px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rcm-json-1__play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48.48px;
    height: 48.48px;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rcm-json-1__play-icon {
    font-family: 'Font Awesome 5 Free', sans-serif;
    font-weight: 900;
    font-size: 17.45px;
    line-height: 17.45px;
    color: #7153b0;
}

.rcm-json-1__ads {
    display: none;
}

.rcm-json-1__ad-slot {
    width: 300px;
    height: 250px;
    background: #f1f1f1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rcm-json-1__ad-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 28.59px;
    line-height: 28.59px;
    color: #000000;
    opacity: 0.1;
    pointer-events: none;
}

@media (max-width: 1299px) and (min-width: 768px) {
    .rcm-json-1--desktop .rcm-json-1__container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 30px;
        align-items: start;
    }

    .rcm-json-1--desktop .rcm-json-1__border,
    .rcm-json-1--desktop .rcm-json-1__cards-viewport,
    .rcm-json-1--desktop .rcm-json-1__header {
        width: 100%;
    }

    .rcm-json-1--desktop .rcm-json-1__header {
        height: auto;
        position: static;
        display: flex;
    }

    .rcm-json-1--desktop .rcm-json-1__title,
    .rcm-json-1--desktop .rcm-json-1__view-all {
        position: static;
    }

    .rcm-json-1--desktop .rcm-json-1__cards-track {
        gap: clamp(16px, 2.5vw, 38.79px);
    }

    .rcm-json-1--desktop .rcm-json-1__card {
        flex: 0 0 clamp(220px, 22vw, 284.12px);
        width: clamp(220px, 22vw, 284.12px);
    }

    .rcm-json-1--desktop .rcm-json-1__ads {
        display: flex;
        flex-direction: column;
        gap: 9px;
        margin-top: 0;
    }
}

@media (min-width: 1300px) {
    .rcm-json-1__container {
        padding: 0;
    }

    .rcm-json-1--desktop .rcm-json-1__container {
        display: grid;
        grid-template-columns: 929px 300px;
        gap: 38.79px;
        align-items: start;
    }

    .rcm-json-1--desktop .rcm-json-1__border {
        width: 100% !important;
    }

    .rcm-json-1--desktop .rcm-json-1__cards-viewport {
        width: 929px;
    }

    .rcm-json-1--desktop .rcm-json-1__ads {
        display: flex;
        flex-direction: column;
        gap: 9px;
        margin-top: 0;
    }

    .rcm-json-1--desktop .rcm-json-1__header {
        width: 929px;
        height: 74px;
        margin-top: 0;
        position: relative;
        display: block;
    }

    .rcm-json-1--desktop .rcm-json-1__title {
        position: absolute;
        left: 0.46px;
        top: 48px;
    }

    .rcm-json-1--desktop .rcm-json-1__view-all {
        position: absolute;
        right: 12.54px;
        top: 36px;
    }

    .rcm-json-1--desktop .rcm-json-1__border {
        margin-top: 19px;
    }

    .rcm-json-1--desktop .rcm-json-1__cards-track {
        gap: 38.79px;
    }
}

@media (max-width: 767px) {
    .rcm-json-1 {
        padding: 15px 0;
    }

    .rcm-json-1__container {
        padding: 0 15px;
    }

    .rcm-json-1__title {
        font-family: 'Roboto', sans-serif;
        font-size: 25px;
        line-height: 33.6px;
    }

    .rcm-json-1__border {
        height: 6px;
        margin-top: 18px;
    }

    .rcm-json-1__cards-viewport {
        margin-top: 79px;
    }

    .rcm-json-1__card:not(:last-child)::after {
        display: none;
    }

    .rcm-json-1__cards-track {
        gap: 30.88px;
    }
}

.rcm-json-1--mobile {
    display: none;
}

@media (max-width: 767px) {
    .rcm-json-1--desktop {
        display: none;
    }

    .rcm-json-1--mobile {
        display: block;
    }
}

.rcm-article-single {
    width: 100%;
    padding: 0;
    background: transparent;
}

.rcm-article-single__container {
    max-width: 1260.45px;
    margin: 0 auto;
    padding: 0 13px;
}

.rcm-article-single__border {
    position: relative !important;
    width: 100% !important;
    height: 6px !important;
    background-image: none !important;
    background-repeat: no-repeat !important;
    background-position: left center !important;
    background-size: 1251px 6px !important;
    background-color: transparent !important;
    border: none !important;
    margin-top: 0;
}

.rcm-article-single__layout {
    display: grid;
    grid-template-columns: 792px 300px;
    column-gap: 113px;
    align-items: start;
    padding-top: 35.15px;
}

.rcm-article-single__title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 32.58px;
    letter-spacing: 0%;
    color: #3e286d;
    margin: 0;
}

.rcm-article-single__topic {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 20px;
}

.rcm-article-single__topic-icon {
    width: 29.15px;
    height: 29.15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rcm-topic-color, #7153b0);
    color: #ffffff;
    font-size: 15px;
    line-height: 1;
    flex: 0 0 auto;
}

.rcm-article-single__topic-name {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 14.78px;
    letter-spacing: 0%;
    color: #6d757f;
}

.rcm-article-single__topic-names {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.rcm-article-single__topic-sep {
    margin-left: -4px;
    color: #6d757f;
}

.rcm-article-single__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 12px;
}

.rcm-article-single__meta-left {
    display: inline-flex;
    align-items: center;
    gap: 24px;
}

.rcm-article-single__author,
.rcm-article-single__date {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -1.1%;
    color: #000000;
}

.rcm-article-single__share-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 91px;
    height: 32px;
    padding: 0 16px !important;
    border-radius: 12px;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: inherit !important;
    cursor: pointer;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 20px !important;
    white-space: nowrap !important;
    text-align: left !important;
    appearance: none;
}

.rcm-article-single__share-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.6%;
    color: #52525b;
}

.rcm-article-single__share-icons {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    line-height: 1;
}

.rcm-article-single__share-icons .fa-arrow-right {
    color: #7153b0;
}

.rcm-article-single__image {
    width: 792px;
    height: 439px;
    margin-top: 21px;
    background: #d9d9d9;
    overflow: hidden;
    max-width: 100%;
}

.rcm-article-single__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rcm-article-single__body {
    margin-top: 36px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #000000;
}

.rcm-article-single__body>*:first-child {
    margin-top: 0;
}

.rcm-article-single__body p {
    margin: 0 0 24px;
}

.rcm-article-single__body>p:first-of-type::first-letter {
    float: left;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 98.67px;
    line-height: 135.67px;
    color: var(--rcm-topic-color, #7153b0);
    padding: 0;
    margin: -13px 0 0;
}

.rcm-article-single__body hr {
    border: 0;
    border-top: 1px solid #e2e2e2;
    margin: 35px 0 9px;
}

.rcm-article-single__body blockquote {
    margin: 35px 0 35px;
    padding: 0;
    border: 0;
    position: relative;
}

.rcm-article-single__body blockquote::before {
    content: "“";
    position: absolute;
    left: 0;
    top: -1px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 98.67px;
    line-height: 135.67px;
    color: #d3d3d3;
}

.rcm-article-single__body blockquote p {
    margin: 0;
    padding-left: 59px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.6%;
    color: var(--rcm-topic-color, #7153b0);
}

.rcm-article-single__related {
    margin-top: 108px;
}

.rcm-article-single__related-header {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 32px;
}

.rcm-article-single__related-ornament {
    width: 12px;
    height: 32px;
    background: var(--rcm-topic-color, #7153b0);
    flex: 0 0 auto;
}

.rcm-article-single__related-title {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -1.9%;
    color: #000000;
}

.rcm-article-single__pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 46px;
}

.rcm-article-single__pager-btn {
    width: 32px;
    height: 32px;
    padding: 0 !important;
    border: 1px solid #cfcfcf !important;
    background: #ffffff !important;
    box-shadow: none !important;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    appearance: none;
}

.rcm-article-single__pager-btn:disabled {
    opacity: 0.5;
    cursor: default;
    border-color: #cfcfcf !important;
    background: #ffffff !important;
}

.rcm-article-single__pager-btn--prev {
    color: #2b5692;
}

.rcm-article-single__pager-btn--next {
    color: #7153b0;
}

.rcm-article-single__pager-dots {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.rcm-article-single__pager-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #cfcfcf;
    display: inline-block;
    text-decoration: none;
}

.rcm-article-single__pager-dot.is-current {
    background: #7153b0;
}

.rcm-article-single__pager-dot.is-disabled {
    background: #dfdfdf;
    pointer-events: none;
}

.rcm-article-single__related-grid {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 46px;
    width: 814px;
    max-width: 100%;
    margin-top: 34px;
}

.rcm-article-single__related-item {
    width: 384px;
    height: 164px;
    flex: 0 0 auto;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 24px;
}

.rcm-article-single__related-thumb {
    width: 164px;
    height: 164px;
    border-radius: 12px;
    background-color: #d9d9d9;
    background-size: cover;
    background-position: center;
    flex: 0 0 auto;
}

.rcm-article-single__related-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 13px;
    min-width: 0;
}

.rcm-article-single__related-item-topic {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 14.78px;
    letter-spacing: 0%;
    color: #6d757f;
}

.rcm-article-single__related-item-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -1.4%;
    color: #000000;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rcm-article-single__sidebar {
    width: 300px;
}

.rcm-article-single__ad {
    width: 300px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rcm-article-single__ad+.rcm-article-single__ad {
    margin-top: 17px;
}

.rcm-article-single__ad--600 {
    height: 600px;
}

.rcm-article-single__ad--250 {
    height: 250px;
}

.rcm-article-single__ad-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 28.59px;
    line-height: 28.59px;
    color: #000000;
}

.rcm-article-single__ad-content {
    width: 100%;
    height: 100%;
}

.rcm-article-single__ad-content>* {
    width: 100%;
    height: 100%;
}

@media (max-width: 1260px) {
    .rcm-article-single__layout {
        grid-template-columns: minmax(0, 1fr) 300px;
        column-gap: 40px;
    }

    .rcm-article-single__image {
        width: 100%;
        height: auto;
        aspect-ratio: 792 / 439;
    }
}

@media (max-width: 1024px) {
    .rcm-article-single__layout {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .rcm-article-single__sidebar {
        width: 100%;
        margin-top: 46px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
        justify-items: center;
    }

    .rcm-article-single__ad+.rcm-article-single__ad {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .rcm-article-single__container {
        padding: 0 15px;
    }

    .rcm-article-single__title {
        font-size: 24px;
        line-height: 28.59px;
    }

    .rcm-article-single__meta {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 16px;
        margin-top: 12px;
        margin-bottom: 24px;
        background: #f8f9fa;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .rcm-article-single__meta-left {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px 20px;
        width: 100%;
    }

    .rcm-article-single__share-button {
        align-self: flex-end;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        width: auto;
        height: auto;
        min-height: 36px;
        padding: 8px 16px;
        background: #ffffff;
        border: 1px solid #dee2e6;
        border-radius: 6px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        white-space: nowrap;
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .rcm-article-single__share-button:hover {
        background: var(--rcm-topic-color, #7153b0);
        border-color: var(--rcm-topic-color, #7153b0);
        color: #ffffff;
    }

    .rcm-article-single__share-button:hover .rcm-article-single__share-text {
        color: #ffffff;
    }

    .rcm-article-single__share-button:hover .rcm-article-single__share-icons .fa-arrow-right {
        color: #ffffff;
    }

    .rcm-article-single__share-text {
        font-size: 13px;
    }

    .rcm-article-single__share-icons {
        font-size: 14px;
    }

    .rcm-article-single__layout {
        padding-top: 20px;
    }

    .rcm-article-single__image {
        height: auto;
        aspect-ratio: 792 / 439;
    }

    .rcm-article-single__pager {
        margin-top: 28px;
        gap: 12px;
    }

    .rcm-article-single__related-grid {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .rcm-article-single__related-item {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .rcm-article-single__related-thumb {
        width: 100%;
        height: 200px;
    }

    .rcm-article-single__related-content {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .rcm-article-single__meta {
        padding: 12px;
        gap: 10px;
    }

    .rcm-article-single__share-button {
        padding: 6px 12px;
        min-height: 32px;
        font-size: 12px;
    }

    .rcm-article-single__share-text {
        font-size: 12px;
    }

    .rcm-article-single__share-icons {
        font-size: 13px;
    }
}

/* Guide Single Shortcode */
.rcm-guide-single {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding-bottom: 60px !important;
    background-color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    box-sizing: border-box !important;
}

.rcm-guide-single__container {
    max-width: 1250.91px !important;
    width: 100% !important;
    margin: 0 auto !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    container-type: inline-size !important;
}

/* Breadcrumb */
.rcm-guide-single__breadcrumb {
    display: flex !important;
    align-items: center !important;
    gap: 13px !important;
    padding: 35px 0 33px !important;
}

.rcm-guide-single__breadcrumb-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 29.147px !important;
    height: 29.147px !important;
    border-radius: 14.573px !important;
    background: var(--rcm-topic-color, #7153B0) !important;
    overflow: hidden !important;
}

.rcm-guide-single__breadcrumb-icon svg {
    width: 14px !important;
    height: 14px !important;
}

.rcm-guide-single__breadcrumb-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.rcm-guide-single__breadcrumb-label {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    color: #6D757F !important;
    text-transform: capitalize !important;
    letter-spacing: 0 !important;
    line-height: 14.784px !important;
}

/* Hero Section — Figma 1771:1613: 428×438 #f5f5f5 panel (radii TL/BL 12px) + image (TR/BR 12px); title 30px/32.582 Bold @ 53,67; subtitle @ 53,184; sponsored 338×77 @ 45,359 */
.rcm-guide-single__hero {
    position: relative !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    border: none !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: stretch !important;
    min-height: 438px !important;
    margin: 20px 0 30px !important;
    background-color: transparent !important;
    background-image: none !important;
}

.rcm-guide-single__hero--no-image {
    min-height: 0 !important;
}

.rcm-guide-single__hero--no-image .rcm-guide-single__hero-panel {
    flex: 1 1 100% !important;
    max-width: 100% !important;
}

.rcm-guide-single__hero::after {
    display: none !important;
    content: none !important;
}

.rcm-guide-single__hero-panel {
    box-sizing: border-box !important;
    flex: 1 1 300px !important;
    width: auto !important;
    max-width: 428px !important;
    min-width: 0 !important;
    background: #f5f5f5 !important;
    border-radius: 12px 0 0 12px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 67px 40px 0 53px !important;
}

.rcm-guide-single__hero-visual {
    flex: 1 1 240px !important;
    min-width: 0 !important;
    min-height: 438px !important;
    border-radius: 0 12px 12px 0 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.rcm-guide-single__hero-content {
    position: relative !important;
    z-index: 1 !important;
    left: auto !important;
    top: auto !important;
    bottom: auto !important;
    right: auto !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 299px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    text-align: left !important;
    flex: 1 1 auto !important;
}

.rcm-guide-single__hero:has(.rcm-guide-single__sponsored) .rcm-guide-single__hero-content {
    bottom: auto !important;
}

.rcm-guide-single__hero-title {
    color: #3e286d !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 30px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 32.582px !important;
    margin: 0 0 24px !important;
    text-transform: capitalize !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
}

.rcm-guide-single__hero-content:has(.rcm-guide-single__hero-subtitle) .rcm-guide-single__hero-title {
    margin: 0 0 19px !important;
}

.rcm-guide-single__hero-subtitle {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    line-height: 22px !important;
    color: #000000 !important;
    margin: 0 !important;
    font-weight: 400 !important;
    width: 100% !important;
    max-width: 285px !important;
    text-transform: capitalize !important;
    overflow-wrap: break-word !important;
}

.rcm-guide-single__hero--no-image .rcm-guide-single__hero-panel {
    border-radius: 12px !important;
}

/* Figma 1771:1613 — 338×77 @ x=45 (8px left of 53px copy), #7153b0, top radii 12px */
.rcm-guide-single__sponsored {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    top: auto !important;
    z-index: 1 !important;
    box-sizing: border-box !important;
    width: 338px !important;
    max-width: calc(100% + 8px) !important;
    min-height: 77px !important;
    margin-top: auto !important;
    margin-left: -8px !important;
    display: flex !important;
    align-items: center !important;
    background-color: #7153b0 !important;
    padding: 17px 20px !important;
    border-radius: 12px 12px 0 0 !important;
    color: #ffffff !important;
}

.rcm-guide-single__sponsored-text {
    margin: 0 !important;
    padding: 0 !important;
    width: 298px !important;
    max-width: 100% !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 22px !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
}

/* Hero: narrow *content* width (e.g. Elementor column) — viewport @media alone misses this */
@container (max-width: 720px) {
    .rcm-guide-single__hero {
        width: 100% !important;
        margin: 20px 0 24px !important;
        flex-direction: column-reverse !important;
        min-height: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .rcm-guide-single__hero-panel {
        flex: 1 1 auto !important;
        width: 100% !important;
        max-width: none !important;
        padding: 28px 20px 0 !important;
        background: #f5f5f5 !important;
        border-radius: 0 0 12px 12px !important;
    }

    .rcm-guide-single__hero-visual {
        flex: 0 0 auto !important;
        width: 100% !important;
        min-height: clamp(180px, 40cqi, 240px) !important;
        max-height: min(320px, 55cqi) !important;
        border-radius: 12px 12px 0 0 !important;
    }

    .rcm-guide-single__sponsored {
        margin-top: 0 !important;
        margin-left: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        border-radius: 0 0 12px 12px !important;
    }

    .rcm-guide-single__hero-title {
        font-size: clamp(22px, 6.5cqi, 28px) !important;
        line-height: 1.2 !important;
        width: 100% !important;
        margin-bottom: 16px !important;
    }

    .rcm-guide-single__hero-content:has(.rcm-guide-single__hero-subtitle) .rcm-guide-single__hero-title {
        margin-bottom: 16px !important;
    }

    .rcm-guide-single__hero-content {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        flex: 1 1 auto !important;
        min-height: 0 !important;
        justify-content: flex-start !important;
    }

    .rcm-guide-single__hero-subtitle {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }

    .rcm-guide-single__sponsored-text {
        width: 100% !important;
        max-width: 100% !important;
    }

    .rcm-guide-single__hero--no-image .rcm-guide-single__hero-panel {
        border-radius: 12px !important;
    }
}

@container (max-width: 480px) {
    .rcm-guide-single__hero-panel {
        padding: 24px 16px 0 !important;
    }

    .rcm-guide-single__hero-visual {
        min-height: 200px !important;
        max-height: 240px !important;
    }
}

/* Meta Line */
.rcm-guide-single__meta {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    padding: 0 16px !important;
    margin-left: 20px !important;
    margin-bottom: 30px !important;
    border: none !important;
    min-height: 32px !important;
}

.rcm-guide-single__meta-right {
    display: flex !important;
    gap: 24px !important;
}

.rcm-guide-single__action-btn {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 6px 16px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #52525b !important;
    cursor: pointer !important;
    transition: color 0.2s ease !important;
    letter-spacing: -0.006em !important;
    line-height: 20px !important;
    text-transform: capitalize !important;
}

.rcm-guide-single__action-btn:hover {
    color: var(--rcm-topic-color, #7153b0) !important;
    background-color: transparent !important;
}

.rcm-guide-single__action-btn svg {
    width: 16px !important;
    height: 16px !important;
    color: var(--rcm-topic-color, #7153b0) !important;
    transition: transform 0.2s ease !important;
}

.rcm-guide-single__action-btn:hover svg {
    transform: none !important;
}

/* Intro and Sidebar Layout — grid + minmax(0) so copy + ad never exceed parent (flex 765+gap+300 overflowed ~1140px shells) */
.rcm-guide-single__intro-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 300px) !important;
    column-gap: clamp(24px, 8vw, 143px) !important;
    row-gap: 28px !important;
    margin-bottom: 30px !important;
    align-items: start !important;
    max-width: min(1208px, 100%) !important;
    padding: 0 16px !important;
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

.rcm-guide-single__intro-main {
    min-width: 0 !important;
    max-width: 765px !important;
}

.rcm-guide-single__intro-title {
    color: #3e286d !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 30px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 32.582px !important;
    margin: 0 0 26px !important;
    text-transform: capitalize !important;
    width: 735px !important;
    max-width: 100% !important;
}

.rcm-guide-single__intro-content {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    line-height: 22px !important;
    color: #000000 !important;
    width: 765px !important;
    max-width: 100% !important;
    text-transform: capitalize !important;
    text-align: justify !important;
    letter-spacing: -0.176px !important;
}

.rcm-guide-single__intro-content p {
    margin: 0 !important;
}

.rcm-guide-single__intro-content h2,
.rcm-guide-single__intro-content h3 {
    color: var(--rcm-topic-color, #7153b0) !important;
    font-family: 'Manrope', sans-serif !important;
    font-weight: 700 !important;
    font-size: 30px !important;
    margin-bottom: 24px !important;
    margin-top: 0 !important;
    line-height: 1.1 !important;
}

.rcm-guide-single__intro-sidebar {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 300px !important;
    justify-self: end !important;
}

.rcm-guide-single__ad-sidebar {
    position: static !important;
    top: auto !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 300px !important;
}

.rcm-guide-single__ad-placeholder {
    width: 100% !important;
    max-width: 300px !important;
    aspect-ratio: 300 / 250 !important;
    min-height: 200px !important;
    background-color: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 0 !important;
}

.rcm-guide-single__ad-image {
    width: 100% !important;
    max-width: 300px !important;
    height: auto !important;
    aspect-ratio: 300 / 250 !important;
    object-fit: cover !important;
    display: block !important;
}

.rcm-guide-single__ad-placeholder-leaderboard {
    width: 100% !important;
    max-width: 920px !important;
    height: 90px !important;
    background-color: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    margin: 30px auto 0 !important;
}

.rcm-guide-single__ad-label {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 28.59px !important;
    line-height: 28.59px !important;
    color: #000000 !important;
    opacity: 1 !important;
}

/* Sections */
.rcm-guide-single__section {
    margin-bottom: 40px !important;
}

.rcm-guide-single__section-header {
    margin-bottom: 16px !important;
}

.rcm-guide-single__section-title {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 700 !important;
    font-size: 25px !important;
    line-height: 1.3 !important;
    color: #3E286D !important;
    margin: 0 0 12px !important;
    text-transform: capitalize !important;
}

/* Guide single: same .rcm-section-border row as article/directory (flex comes from .rcm-section-border). */
.rcm-guide-single .rcm-guide-single__section-border.rcm-section-border {
    width: 100% !important;
    margin-bottom: 20px !important;
    background-image: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    position: relative !important;
}

.rcm-guide-single .rcm-guide-single__container > .rcm-guide-single__section-border.rcm-section-border {
    margin-top: 20px !important;
}

.rcm-guide-single__section-border-active {
    display: none !important;
}

/* Legacy: older markup used __top-divider (flat line); match section-border.svg */
.rcm-guide-single .rcm-guide-single__top-divider {
    width: 100% !important;
    height: 6px !important;
    margin-top: 0 !important;
    background-color: transparent !important;
    background-image: none !important;
    background-repeat: no-repeat !important;
    background-position: left center !important;
    background-size: 100% 6px !important;
    border: none !important;
    box-shadow: none !important;
    position: relative !important;
}

.rcm-guide-single .rcm-guide-single__top-divider-active {
    display: none !important;
}

.rcm-guide-single__section-desc {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    color: #000000 !important;
    margin-bottom: 20px !important;
    max-width: 1138px !important;
}

/* Articles Grid */
.rcm-guide-single__articles-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    column-gap: 18px !important;
    row-gap: 30px !important;
}

.rcm-guide-single__article-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 20px !important;
    background: transparent !important;
    text-decoration: none !important;
    transition: transform 0.2s !important;
    border: none !important;
}

.rcm-guide-single__article-card:hover {
    transform: translateY(-2px) !important;
}

.rcm-guide-single__article-card:hover .rcm-guide-single__article-title {
    filter: brightness(0.88) !important;
}

.rcm-guide-single__article-thumb {
    width: 284px !important;
    height: 162px !important;
    border-radius: 8px !important;
    background-size: cover !important;
    background-position: center !important;
    flex-shrink: 0 !important;
}

.rcm-guide-single__article-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    flex: 1 !important;
}

.rcm-guide-single__article-tag {
    font-family: 'Inter', sans-serif !important;
    font-size: 12.6px !important;
    font-weight: 600 !important;
    color: #6D757F !important;
    text-transform: uppercase !important;
    letter-spacing: 0 !important;
    margin-bottom: 6px !important;
}

.rcm-guide-single__article-title {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 700 !important;
    font-size: 19.4px !important;
    line-height: 1.3 !important;
    color: #3E286D !important;
    margin: 0 !important;
    transition: color 0.2s !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .rcm-guide-single__container {
        padding: 0 40px !important;
    }

    .rcm-guide-single__intro-layout {
        grid-template-columns: 1fr !important;
        column-gap: 0 !important;
        padding: 0 !important;
    }

    .rcm-guide-single__intro-sidebar {
        justify-self: start !important;
        max-width: 100% !important;
    }

    .rcm-guide-single__intro-main {
        max-width: 100% !important;
    }

    .rcm-guide-single__intro-title,
    .rcm-guide-single__intro-content {
        width: 100% !important;
    }

    .rcm-guide-single__intro-sidebar,
    .rcm-guide-single__ad-sidebar {
        flex: 1 1 auto !important;
        width: 300px !important;
        display: flex !important;
        justify-content: flex-start !important;
    }
}

@media (max-width: 768px) {
    .rcm-guide-single {
        padding-bottom: 30px !important;
    }

    .rcm-guide-single__container {
        padding: 0 20px !important;
    }

    .rcm-guide-single__hero {
        width: 100% !important;
        margin: 12px 0 16px !important;
        flex-direction: column-reverse !important;
        min-height: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .rcm-guide-single__hero-panel {
        flex: 1 1 auto !important;
        width: 100% !important;
        max-width: none !important;
        padding: 20px 16px 0 !important;
        background: #f5f5f5 !important;
        border-radius: 0 0 12px 12px !important;
    }

    .rcm-guide-single__hero-visual {
        flex: 0 0 auto !important;
        width: 100% !important;
        min-height: min(200px, 42vw) !important;
        max-height: 260px !important;
        border-radius: 12px 12px 0 0 !important;
    }

    .rcm-guide-single__sponsored {
        margin-top: 0 !important;
        margin-left: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        border-radius: 0 0 12px 12px !important;
    }

    .rcm-guide-single__hero-title {
        font-size: clamp(20px, 5.5vw, 26px) !important;
        line-height: 1.2 !important;
        width: 100% !important;
        margin-bottom: 12px !important;
    }

    .rcm-guide-single__hero-content:has(.rcm-guide-single__hero-subtitle) .rcm-guide-single__hero-title {
        margin-bottom: 12px !important;
    }

    .rcm-guide-single__hero-content {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        flex: 1 1 auto !important;
        min-height: 0 !important;
        justify-content: flex-start !important;
    }

    .rcm-guide-single__hero-subtitle {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 14px !important;
    }

    .rcm-guide-single__sponsored-text {
        width: 100% !important;
        max-width: 100% !important;
    }

    .rcm-guide-single__meta {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: flex-end !important;
        align-items: center !important;
        gap: 12px 16px !important;
        padding: 12px !important;
        margin-left: 0 !important;
        margin-bottom: 16px !important;
        background: #f8f9fa !important;
        border-radius: 8px !important;
        border: none !important;
        box-shadow: none !important;
    }

    .rcm-guide-single__meta-right {
        width: auto !important;
        justify-content: flex-end !important;
        gap: 8px !important;
    }

    .rcm-guide-single__action-btn {
        padding: 8px 16px !important;
        font-size: 13px !important;
        background: #ffffff !important;
        border: 1px solid #dee2e6 !important;
        border-radius: 6px !important;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
    }

    .rcm-guide-single__action-btn:hover {
        background: var(--rcm-topic-color, #7153b0) !important;
        color: #ffffff !important;
        border-color: var(--rcm-topic-color, #7153b0) !important;
    }

    .rcm-guide-single__action-btn:hover svg {
        color: #ffffff !important;
    }

    .rcm-guide-single__action-btn svg {
        width: 14px !important;
        height: 14px !important;
    }

    .rcm-guide-single__intro-layout {
        margin-bottom: 20px !important;
    }

    .rcm-guide-single__intro-title {
        font-size: 24px !important;
        line-height: 1.2 !important;
        margin-bottom: 14px !important;
    }

    .rcm-guide-single__intro-content {
        font-size: 15px !important;
        line-height: 21px !important;
    }

    .rcm-guide-single__section {
        margin-bottom: 24px !important;
    }

    .rcm-guide-single__section-header {
        margin-bottom: 12px !important;
    }

    .rcm-guide-single__section-desc {
        margin-bottom: 16px !important;
    }

    .rcm-guide-single__articles-grid {
        grid-template-columns: 1fr !important;
        row-gap: 16px !important;
    }

    .rcm-guide-single__ad-placeholder-leaderboard {
        margin-top: 20px !important;
    }
}

@media (max-width: 480px) {
    .rcm-guide-single__hero-panel {
        padding: 24px 16px 0 !important;
    }

    .rcm-guide-single__hero-visual {
        min-height: 200px !important;
        max-height: 240px !important;
    }

    .rcm-guide-single__article-card {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .rcm-guide-single__ad-sidebar,
    .rcm-guide-single__intro-sidebar,
    .rcm-guide-single__article-thumb {
        width: 100% !important;
    }

    .rcm-guide-single__ad-sidebar,
    .rcm-guide-single__intro-sidebar {
        max-width: 300px !important;
    }

    .rcm-guide-single__article-thumb {
        height: 200px !important;
    }

    .rcm-guide-single__meta {
        padding: 12px !important;
        gap: 10px !important;
    }

    .rcm-guide-single__action-btn {
        font-size: 12px !important;
        padding: 6px 12px !important;
    }
}

/* Guide Single Rule Notch - Diagonal Cut */
.rlm-guide-single__rule-notch {
    position: absolute !important;
    top: -1.5px !important;
    left: 36px !important;
    width: 10px !important;
    height: 6px !important;
    background: #ffffff !important;
    -webkit-mask-image: url('../../../themes/hello-elementor/assets/images/notch-mask.svg') !important;
    mask-image: url('../../../themes/hello-elementor/assets/images/notch-mask.svg') !important;
    -webkit-mask-size: 10px 6px !important;
    mask-size: 10px 6px !important;
    -webkit-mask-repeat: no-repeat !important;
    mask-repeat: no-repeat !important;
}
