/* Grid wrapper */
.mne-browse-stories .mne-grid-wrapper {
    transition: opacity 0.2s ease;
}

.mne-browse-stories .mne-grid {
    display: grid;
    gap: 24px;
}

.mne-browse-stories .mne-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.mne-browse-stories .mne-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.mne-browse-stories .mne-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .mne-browse-stories .mne-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .mne-browse-stories .mne-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .mne-browse-stories .mne-cols-4, .mne-browse-stories .mne-cols-3, .mne-browse-stories .mne-cols-2 {
        grid-template-columns: 1fr;
    }
}

/* Cards */
.mne-browse-stories .mne-card {
    background: #ffffff;
    border-radius: 0px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
    /* border-bottom: 1px dashed #728b75; */
    margin-top: 18px;
}

.mne-browse-stories .mne-card:after {
    content: '';
    background: repeating-linear-gradient( 90deg, #c9c2b8 0px, #c9c2b8 8px, transparent 8px, transparent 16px );
    height: 1px;
    position: relative;
    width: 100%;
    display: block;
    z-index: 0;
    bottom: 1px;
}

.mne-browse-stories .mne-card:nth-last-child(1):after, .mne-browse-stories .mne-card:nth-last-child(2):after, .mne-browse-stories .mne-card:nth-last-child(3):after {
    background: none !important;
}

.mne-browse-stories .mne-card:hover {
    /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); */
}

.mne-browse-stories .mne-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.mne-browse-stories .mne-card__thumb {
    width: 100%;
    height: 213px;
    overflow: hidden;
    border-radius: 30px;
}

.mne-browse-stories .mne-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mne-browse-stories .mne-card__body {
    padding: 29px 9px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mne-browse-stories .mne-card__title {
    color: #bc5c39;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 8px;
}

.mne-browse-stories .mne-card__meta {
    color: #39466e;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 12px;
}

.mne-browse-stories .mne-card__excerpt {
    color: #39466e;
    font-size: 17px;
    line-height: 1.2;
    margin: 6px 0 18px !important;
    flex: 1;
}

.mne-browse-stories .mne-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 13px 17px;
    border-radius: 30px;
    background: #e1ddd3;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    align-self: flex-start;
    transition: opacity 0.15s ease;
    margin-top: 39px;
    line-height: 1;
}

.mne-browse-stories .mne-card__badge > svg {
    display: none;
}

.mne-browse-stories .mne-card:hover .mne-card__badge {
    opacity: 0.8;
}

/* No results */
.mne-browse-stories .mne-no-results {
    text-align: center;
    color: #6a6a6a;
    font-size: 15px;
    padding: 40px 0;
    grid-column: 1 / -1;
}

/* Results count */
.mne-browse-stories .mne-results-count {
    text-align: center;
    color: #6a6a6a;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Load More */
.mne-browse-stories .mne-load-more {
    font-family: inherit !important;
    display: block;
    margin: 20px auto 0;
    text-transform: capitalize;
    padding: 17px 40px;
    border-radius: 30px !important;
    background: #f3b729;
    color: #384360;
    font-size: 19px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s ease;
    letter-spacing: 0.45px !important;
}

.mne-browse-stories .mne-load-more:hover {
    opacity: 0.85;
}

.mne-browse-stories .mne-load-more:disabled {
    opacity: 0.5;
    cursor: default;
}

/* Filter bar */
.mne-browse-stories .mne-filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 30px;
}

.mne-browse-stories .mne-filter-btn {
    padding: 19px 28px;
    border-radius: 30px;
    border: none;
    background: #e8e3db;
    color: #bc5c39;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    outline: none;
}

.mne-browse-stories .mne-filter-btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(201, 106, 61, 0.35);
}

.mne-browse-stories .mne-filter-btn.is-active {
    background: #bc5c39;
    color: #ffffff;
}

/* Filter loading indicator */
.mne-browse-stories .mne-filter-loading {
    text-align: center;
    color: #6a6a6a;
    font-size: 14px;
    padding: 8px 0;
}

/* Search bar */
.mne-browse-stories .mne-search-bar {
    max-width: 651px;
    margin: 0 auto 32px;
    position: relative;
}

.mne-browse-stories .mne-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6a6a6a;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.mne-browse-stories .mne-search-input {
    font-family: inherit !important;
    width: 100%;
    padding: 12px 16px 12px 48px;
    border-radius: 50px;
    border: 2px solid #e8e3db;
    background: #ffffff;
    color: #39466e;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.15s ease;
}

.mne-browse-stories .mne-search-input:focus {
    border-color: #bc5c39;
}

/* Newsletter box / Apply box – shared structural styles */
.mne-browse-stories .mne-newsletter-box, .mne-browse-stories .mne-apply-box {
    background: #bc5c39;
    border-radius: 28px;
    padding: 24px 45px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.mne-browse-stories .mne-newsletter-box__title, .mne-browse-stories .mne-apply-box__title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #ffffff;
}

.mne-browse-stories .mne-newsletter-box__subtitle, .mne-browse-stories .mne-apply-box__desc {
    font-size: 26px;
    opacity: 0.9;
    margin: 0 0 16px;
    line-height: 1;
}

.mne-browse-stories .mne-newsletter-box__form, .mne-browse-stories .mne-apply-box__cta {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    overflow: hidden;
    padding: 15px;
    margin-top: 52px;
    position: relative;
    margin-bottom: 6px;
}

.mne-browse-stories .mne-newsletter-box__input, .mne-browse-stories .mne-apply-box__label {
    flex: 1;
    padding: 8px 12px;
    border: none;
    outline: none;
    font-size: 13px;
    color: #39466e;
    background: transparent;
}

.mne-browse-stories .mne-newsletter-box__submit, .mne-browse-stories .mne-apply-box__arrow {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50%;
    background: #39466e;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    transition: opacity 0.15s ease;
}

.mne-browse-stories .mne-newsletter-box__submit:hover, .mne-browse-stories .mne-apply-box__arrow:hover {
    opacity: 0.85;
}

/* Events grid */
.mne-upcoming-events .mne-events-grid {
    display: grid;
    gap: 24px;
}

.mne-upcoming-events .mne-events-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.mne-upcoming-events .mne-events-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .mne-upcoming-events .mne-events-cols-2, .mne-upcoming-events .mne-events-cols-3 {
        grid-template-columns: 1fr;
    }
}

.mne-upcoming-events .mne-event-card {
    background: #ffffff;
    border: 1px solid #ddd7cd;
    border-radius: 50px;
    padding: 36px 48px;
    transition: box-shadow 0.2s ease;
    position: relative;
}

.mne-upcoming-events .mne-event-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.mne-upcoming-events .mne-event-card__date {
    color: #384360;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 4px;
}

.mne-upcoming-events .mne-event-card__location {
    color: #384360;
    font-size: 17px;
    margin: 0 0 12px;
}

.mne-upcoming-events .mne-event-card__badge {
    display: inline-block;
    padding: 18px 21px;
    border-radius: 30px;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    background: #e1ddd3;
    color: #ffffff;
    float: right;
    top: 17px;
    position: absolute;
    right: 17px;
}

.mne-upcoming-events .mne-event-card__badge--closed {
    background: #b0b0b0;
}

.mne-upcoming-events .mne-event-card__badge--full {
    background: #bc5c39;
}

.mne-upcoming-events .mne-event-card__title {
    color: #39466e;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 12px;
}

.mne-upcoming-events .mne-event-card__excerpt {
    color: #39466e;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 16px;
}

.mne-upcoming-events .mne-event-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #bc5c39;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.15s ease;
    margin-top: 55px;
    float: left;
}

.mne-upcoming-events .mne-event-card__cta > svg {
    font-size: 1em;
    height: 1em;
    width: 1em;
    margin-top: 4px;
}

.mne-upcoming-events .mne-event-card__cta:hover {
    opacity: 0.8;
}

/* ============================================================
   SECTION-LEVEL WIDGET: FEATURED STORY
   ============================================================ */
.mne-featured-story {
    padding: 61px 36px;
    background: var(--mne-fs-bg, #f9f7f4);
}

.mne-featured-story .mne-featured-story__inner {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    max-width: 1180px;
    margin: 0 auto;
}

.mne-featured-story .mne-featured-story__image {
    flex: 0 0 53%;
    max-width: 53%;
}

.mne-featured-story .mne-featured-story__image img {
    width: 100%;
    height: 260px;
    border-radius: 29px;
    object-fit: cover;
    display: block;
}

.mne-featured-story .mne-featured-story__content {
    flex: 1 1 37%;
}

.mne-featured-story .mne-featured-story__badge {
    display: inline-block;
    background: #e8e3db;
    color: #bc5c39;
    font-size: 15px;
    font-weight: bolder;
    letter-spacing: 0px;
    text-transform: capitalize;
    padding: 18px 37px;
    border-radius: 38px;
    margin-bottom: 16px;
}

.mne-featured-story .mne-featured-story__title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 12px !important;
    /* color set via inline style from widget */
    margin-top: 17px !important;
}

.mne-featured-story .mne-featured-story__title.mne-orange {
    color: #bc5c39;
}

.mne-featured-story .mne-featured-story__meta {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    /* color set via inline style */
}

.mne-featured-story .mne-featured-story__excerpt {
    font-size: 19px;
    line-height: 1.5;
    margin-bottom: 24px;
    /* color set via inline style */
}

.mne-featured-story .mne-featured-story__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
    /* color set via inline style */
    margin-top: 18px;
    margin-left: 9px;
    font-size: 14px;
}

.mne-featured-story .mne-featured-story__cta {
    text-decoration: none !important;
}

.mne-featured-story .mne-featured-story__cta:hover {
    opacity: 0.8;
}

.mne-featured-story .mne-featured-story__cta svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .mne-featured-story .mne-featured-story__inner {
        flex-direction: column;
    }

    .mne-featured-story .mne-featured-story__image, .mne-featured-story .mne-featured-story__content {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* ============================================================
   SECTION-LEVEL WIDGET: BROWSE STORIES
   ============================================================ */
.mne-browse-stories {
    padding: 60px 36px 2px;
    background: var(--mne-bs-bg, #ffffff) !important;
}

.mne-browse-stories .mne-browse-stories__inner {
    max-width: 100%;
    margin: 0 auto;
}

.mne-browse-stories .mne-browse-stories__heading {
    font-size: 46px;
    font-weight: 800;
    text-align: center;
    margin: 0 0 32px;
    /* color set via inline style */
}

.mne-browse-stories .mne-browse-stories__controls {
    margin-bottom: 32px;
}

.mne-browse-stories .mne-browse-stories__row {
    display: flex;
    gap: 39px;
    align-items: flex-start;
}

.mne-browse-stories .mne-browse-stories__grid-col {
    flex: 1 1 auto;
    min-width: 0;
}

.mne-browse-stories .mne-browse-stories__sidebar {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 352px;
    margin-top: 18px;
}

.mne-browse-stories .mne-browse-stories__count {
    font-size: 13px;
    color: #888;
    margin-bottom: 32px;
}

.mne-browse-stories .mne-browse-stories__load-more {
    display: block;
    margin: 40px auto 0;
    background: transparent;
    border: 2px solid #39466e;
    color: #39466e;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.mne-browse-stories .mne-browse-stories__load-more:hover {
    background: #39466e;
    color: #fff;
}

.mne-browse-stories .mne-browse-stories__load-more:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* Apply For Residency box */
.mne-browse-stories .mne-apply-box {
    background: #728b75;
    border-radius: 28px;
    padding: 29px 35px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    color: #fff;
    text-decoration: none;
    margin-top: 21px;
}

.mne-browse-stories .mne-apply-box__title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.25;
}

.mne-browse-stories .mne-apply-box__desc {
    font-size: 13px;
    color: rgba(255,255,255,0.88);
    margin: 0;
    line-height: 1.6;
}

/* Apply box CTA: white pill with label on left + yellow circle arrow on right */
.mne-browse-stories .mne-apply-box__cta {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    padding: 18px 6px;
    margin-top: 6px;
}

.mne-browse-stories .mne-apply-box__label {
    flex: 1;
    padding: 6px 12px;
    color: #39466e;
    font-size: 14px;
}

.mne-browse-stories .mne-apply-box__arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #E4B223 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
}

@media (max-width: 900px) {
    .mne-browse-stories .mne-browse-stories__row {
        flex-direction: column;
    }

    .mne-browse-stories .mne-browse-stories__sidebar {
        width: 100%;
        flex: none;
    }
}

/* ============================================================
   SECTION-LEVEL WIDGET: UPCOMING EVENTS
   ============================================================ */
.mne-upcoming-events {
    padding: 34px 36px 0px;
    background: var(--mne-ue-bg, #ffffff) !important;
}

.mne-upcoming-events:before {
    content: '';
    background: repeating-linear-gradient(90deg, #d2d2d2 -1px, #aaaaaa 1px, transparent 1px, transparent 7px);
    height: 1px;
    position: relative;
    width: 100%;
    display: block;
    z-index: 0;
    bottom: 1px;
}

.mne-upcoming-events .mne-upcoming-events__inner {
    max-width: 100%;
    margin: 35px 0;
    width: 100%;
}

.mne-upcoming-events .mne-upcoming-events__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 34px;
    gap: 16px;
    flex-wrap: wrap;
}

.mne-upcoming-events .mne-upcoming-events__heading {
    font-size: 44px;
    font-weight: 800;
    color: var(--mne-ue-heading, #39466e);
    margin: 0;
}

.mne-upcoming-events .mne-upcoming-events__nav {
    display: flex;
    gap: 10px;
}

.mne-upcoming-events .mne-events-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 100%;
    width: 67px;
    height: 67px;
}

.mne-upcoming-events .mne-events-nav.mne-events-nav--prev {
    background: #e1ddd3;
}

.mne-upcoming-events .mne-events-nav.mne-events-nav--next {
    background: #f3b729;
}

.mne-upcoming-events .mne-events-nav > svg {
    font-size: 3em;
    width: 1em;
    height: 1em;
    color: #fff;
}

.mne-upcoming-events .mne-events-nav__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    transition: opacity 0.2s ease;
    line-height: 1;
}

.mne-upcoming-events .mne-events-nav__btn--prev {
    background: #e8e3db;
    color: #39466e;
}

.mne-upcoming-events .mne-events-nav__btn--next {
    background: #e4b224;
    color: #fff;
}

.mne-upcoming-events .mne-events-nav__btn:hover {
    opacity: 0.8;
}

.mne-upcoming-events .mne-events-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(var(--mne-events-cols, 3), 1fr);
}

@media (max-width: 900px) {
    .mne-upcoming-events .mne-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .mne-upcoming-events .mne-events-grid {
        grid-template-columns: 1fr;
    }

    .mne-upcoming-events .mne-upcoming-events__heading {
        font-size: 26px;
    }
}

/* ============================================================
   SECTION-LEVEL WIDGET: MEDIA KIT
   ============================================================ */
.mne-media-kit {
    padding: 21px 36px 60px;
    background: var(--mne-mk-outer-bg, #ffffff) !important;
}

.mne-media-kit .mne-media-kit__inner {
    max-width: 100%;
    margin: 0 auto;
}

.mne-media-kit .mne-media-kit__card {
    background: var(--mne-mk-card-bg, #d8d2c8) !important;
    border-radius: 60px;
    padding: 54px 37px;
}

.mne-media-kit .mne-media-kit__heading {
    font-size: 44px;
    font-weight: 800;
    color: var(--mne-mk-heading, #39466e);
    margin: 0 0 16px;
    text-align: center;
}

.mne-media-kit .mne-media-kit__desc {
    font-size: 16px;
    color: #39466e;
    text-align: center;
    margin: 0 auto 40px;
    max-width: 768px;
    line-height: 1.6;
}

.mne-media-kit .mne-media-kit__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 53px;
    margin-top: 35px;
}

.mne-media-kit .mne-media-kit__item {
    border-radius: 45px;
    padding: 63px 63px 26px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

.mne-media-kit .mne-media-kit__icon {
    display: none;
    width: 48px;
    height: 48px;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 16px;
}

.mne-media-kit .mne-media-kit__item-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.mne-media-kit .mne-media-kit__item-desc {
    font-size: 23px;
    color: rgba(255,255,255,0.9);
    line-height: 1.25;
    margin: 0 0 51px;
    flex: 1;
}

.mne-media-kit .mne-media-kit__btn {
    display: inline-block;
    margin-top: auto;
    background: #fff;
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.mne-media-kit .mne-media-kit__btn:hover {
    opacity: 0.85;
}

.mne-media-kit .mne-media-kit__contact {
    text-align: center;
    font-size: 20px;
    line-height: 1.4;
    color: #555;
}

.mne-media-kit .mne-media-kit__contact p {
    margin: 0 0 4px;
}

.mne-media-kit .mne-media-kit__email {
    color: #bc5c39;
    font-weight: 600;
    text-decoration: none;
}

.mne-media-kit .mne-media-kit__email:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .mne-media-kit .mne-media-kit__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .mne-media-kit .mne-media-kit__grid {
        grid-template-columns: 1fr;
    }

    .mne-media-kit .mne-media-kit__card {
        padding: 24px;
    }
}

/* This selector is affecting site wide and causing layout issues, need to scope it to only the news section */
.elementor-element.elementor-widget-mne_featured_story, .elementor-element.elementor-widget-mne_browse_stories, .elementor-element.elementor-widget-mne_upcoming_events, .elementor-element.elementor-widget-mne_media_kit {
    margin: auto;
}

.elementor-element.elementor-widget-mne_browse_stories, .elementor-element.elementor-widget-mne_upcoming_events, .elementor-element.elementor-widget-mne_media_kit {
    max-width: 1587px !important;
    width: 100%;
}

/* 
   Propagate each widget's background colour up to the direct Elementor
   section/container wrapper so it extends 100% of the viewport width. 
*/
[data-elementor-type="wp-page"] > *:has(.mne-featured-story) {
    background: var(--mne-fs-bg, #d8d2c8) !important;
}

[data-elementor-type="wp-page"] > *:has(.mne-browse-stories) {
    background: var(--mne-bs-bg, #ffffff) !important;
}

[data-elementor-type="wp-page"] > *:has(.mne-upcoming-events) {
    background: var(--mne-ue-bg, #ffffff) !important;
}

[data-elementor-type="wp-page"] > *:has(.mne-media-kit) {
    background: var(--mne-mk-outer-bg, #ffffff) !important;
}

.mne-browse-stories .mne-filter-btn {
    background: #e8e3db !important;
    color: #bc5c39 !important;
    border: none !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    font-size: 20px !important;
    text-transform: capitalize !important;
    letter-spacing: 0px !important;
}

.mne-browse-stories .mne-filter-btn:hover, .mne-browse-stories .mne-filter-btn:focus {
    background: #e8e3db !important;
    color: #bc5c39 !important;
    text-decoration: none !important;
}

.mne-browse-stories .mne-filter-btn.is-active, .mne-browse-stories .mne-filter-btn.is-active:hover {
    background: #bc5c39 !important;
    color: #ffffff !important;
}

.mne-browse-stories .mne-search-input {
    border: 2px solid #e8e3db !important;
    border-radius: 50px !important;
    padding: 12px 16px 12px 48px !important;
    width: 100% !important;
    background: #ffffff !important;
    color: #39466e !important;
    font-size: 16px !important;
}

.mne-browse-stories .mne-search-input::placeholder {
    color: #abacac !important;
}

.mne-browse-stories .mne-search-input:focus {
    border-color: #bc5c39 !important;
}

.mne-browse-stories .mne-browse-stories__load-more {
    background: transparent !important;
    border: 2px solid #39466e !important;
    color: #39466e !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.mne-browse-stories .mne-browse-stories__load-more:hover {
    background: #39466e !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ Newsletter box (input[type=email] + [type=submit]:hover beat our classes) ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ */
.mne-browse-stories .mne-newsletter-box__input, .mne-browse-stories .mne-apply-box__label {
    border: none !important;
    border-radius: 0 !important;
    outline: none !important;
    padding: 0px 12px !important;
    width: 100% !important;
    background: transparent !important;
    color: #39466e !important;
    font-size: 25px !important;
    flex: 1 !important;
    font-family: inherit !important;
}

.mne-browse-stories .mne-newsletter-box__submit, .mne-browse-stories .mne-apply-box__arrow {
    background: #39466e;
    border: none !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    width: 50px !important;
    height: 50px !important;
    right: 7px;
    position: absolute;
    padding: 0px !important;
}

.mne-browse-stories .mne-newsletter-box__submit > svg, .mne-browse-stories .mne-apply-box__arrow > svg {
    right: 1px;
    position: relative;
    height: 32px;
    width: 32px;
}

.mne-browse-stories .mne-newsletter-box__submit:hover, .mne-browse-stories .mne-newsletter-box__submit:focus, .mne-browse-stories .mne-apply-box__arrow:hover, .mne-browse-stories .mne-apply-box__arrow:focus {
    background: #39466e !important;
    color: #ffffff !important;
    text-decoration: none !important;
    opacity: 0.85;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ Apply box ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â as an <a> it picks up theme a{color:#c36} ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ */
.mne-browse-stories .mne-apply-box, .mne-browse-stories .mne-apply-box:hover, .mne-browse-stories .mne-apply-box:visited {
    color: #ffffff !important;
    text-decoration: none !important;
}

.mne-browse-stories .mne-apply-box__label {
    color: #39466e !important;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ Events nav buttons ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ */
.mne-upcoming-events .mne-events-nav__btn {
    border: none !important;
    border-radius: 50% !important;
    text-decoration: none !important;
}

.mne-upcoming-events .mne-events-nav__btn--prev, .mne-upcoming-events .mne-events-nav__btn--prev:hover {
    background: #e8e3db !important;
    color: #39466e !important;
}

.mne-upcoming-events .mne-events-nav__btn--next, .mne-upcoming-events .mne-events-nav__btn--next:hover {
    background: #e4b224 !important;
    color: #ffffff !important;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ Media kit download buttons ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ */
.mne-media-kit .mne-media-kit__btn {
    background: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    display: inline-block !important;
    padding: 17px 22px;
    font-size: 20px;
    letter-spacing: 1px;
    word-spacing: 0px;
}

.mne-media-kit .mne-media-kit__btn:hover {
    background: #ffffff !important;
    text-decoration: none !important;
    opacity: 0.85;
}

.mne-browse-stories .mne-card__link, .mne-browse-stories .mne-card__link:hover, .mne-browse-stories .mne-card__link:visited {
    color: inherit !important;
    text-decoration: none !important;
}

.mne-upcoming-events .mne-event-card__cta, .mne-upcoming-events .mne-event-card__cta:hover, .mne-upcoming-events .mne-event-card__cta:visited {
    color: #bc5c39 !important;
    text-decoration: none !important;
}

.mne-browse-stories .mne-browse-stories__heading {
    margin: 0 0 32px !important;
    font-size: 46px !important;
    font-weight: 800 !important;
}

.mne-upcoming-events .mne-upcoming-events__heading {
    margin: 0 !important;
    font-size: 48px !important;
    font-weight: 800 !important;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
}

.mne-media-kit .mne-media-kit__heading {
    margin: 0 0 6px !important;
    font-size: 48px !important;
    font-weight: 800 !important;
}

.mne-featured-story .mne-featured-story__title {
    font-size: 30px !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    margin: 16px 0px 12px 9px !important;
}

.mne-browse-stories .mne-card__title {
    font-size: 30px !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    margin: 0 0 17px !important;
}

.mne-upcoming-events .mne-event-card__title {
    font-size: 25px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin: 38px 0 1px !important;
    position: relative;
    float: left;
}

.mne-browse-stories .mne-newsletter-box__title {
    font-size: 41px !important;
    font-weight: 700 !important;
    margin: 28px 0px 7px 0px !important;
    color: #ffffff !important;
    text-align: left;
    letter-spacing: 0px;
    line-height: 1;
}

.mne-browse-stories .mne-apply-box__title {
    font-size: 29px !important;
    font-weight: 800 !important;
    margin: 0 0 16px !important;
    color: #ffffff !important;
    line-height: 1.25 !important;
}

.mne-media-kit .mne-media-kit__item-title {
    font-size: 29px !important;
    font-weight: 700 !important;
    margin: 0 0 0px !important;
    color: #fff !important;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ Paragraph margins: p{margin-block-end:.9rem} from Hello theme ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ */
.mne-featured-story .mne-featured-story__meta {
    margin-bottom: 16px !important;
    margin-block-end: 0 !important; margin-left: 9px;
    font-weight: bold;
    font-size: 15px;
}

.mne-featured-story .mne-featured-story__excerpt {
    margin-bottom: 24px !important;
    margin-block-end: 0 !important; margin-left: 9px;
    margin-top: 3px;
}

.mne-browse-stories .mne-card__meta {
    margin: 0 0 12px !important;
    margin-block-end: 0 !important; }

.mne-browse-stories .mne-card__excerpt {
    margin-block-end: 0 !important; }

.mne-upcoming-events .mne-event-card__date {
    margin: 0 0 2px !important;
    margin-block-end: 0 !important; max-width: calc(100% - 100px);
    float: left;
    width: 100%;
}

.mne-upcoming-events .mne-event-card__location {
    margin: 0 0 12px !important;
    margin-block-end: 0 !important; max-width: calc(100% - 100px);
    float: left;
    width: 100%;
}

.mne-upcoming-events .mne-event-card__excerpt {
    margin: 0 0 16px !important;
    margin-block-end: 0 !important; float: left;
    font-size: 19px;
    line-height: 1.2;
}

.mne-browse-stories .mne-newsletter-box__subtitle {
    margin: 0 0 16px !important;
    margin-block-end: 0 !important; }

.mne-media-kit .mne-media-kit__desc {
    font-size: 19px !important;
    color: #39466e !important;
    margin: 0 auto 40px !important;
    margin-block-end: 0 !important; max-width: 438px;
}

/* ====================================================
   SINGLE POST STYLES
   ==================================================== */
/*
 * Singles Component Styles
 *
 * These styles are scoped to the `.singles` class selector, which means
 * they will ONLY affect elements that have the `singles` class applied.
 *
 * However, there are some considerations to keep in mind:
 *
 * 1. SPECIFICITY CONFLICTS:
 *    - If other components share the same class names or nested selectors,
 *      there may be unintended style overrides depending on specificity.
 *
 * 2. GLOBAL RESETS OR INHERITANCE:
 *    - Some CSS properties (e.g., `font-size`, `color`, `line-height`) are
 *      inherited by child elements, which could affect nested components
 *      inside `.singles`.
 *
 * 3. CASCADE ORDER:
 *    - If this stylesheet is loaded after other stylesheets, it may
 *      override styles from other components unintentionally.
 *
 * 4. RECOMMENDATION:
 *    - To ensure full isolation, consider using CSS Modules, BEM naming
 *      conventions, or a scoped styling solution (e.g., Shadow DOM,
 *      CSS-in-JS) to prevent style leakage to other site components.
 */
/* Layout: centred column with breathing room */
.single .site-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

/* Page header: title + bottom rule */
.single .page-header {
    padding-bottom: 28px;
    border-bottom: 1px solid #e0dbd3;
    margin-bottom: 36px;
}

.single .entry-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 34px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    color: #1e2639 !important;
    margin: 0 !important;
    margin-block-end: 0 !important; }

/* Injected: author + date line */
.single .mne-single-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 28px !important;
    margin-block-end: 0 !important; }

.single .mne-single-meta__author {
    font-weight: 600;
    color: #39466e;
}

.single .mne-single-meta__sep {
    color: #c0bab2;
    font-size: 18px;
    line-height: 1;
}

/* Injected: featured image hero */
.single .mne-single-thumb {
    width: 100%;
    margin: 0 0 36px !important;
    margin-block-end: 0 !important; }

.single .mne-single-thumb__img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

/* Content typography */
.single .page-content > p {
    font-size: 17px !important;
    line-height: 1.8 !important;
    color: #3a3a3a !important;
    margin: 0 0 24px !important;
    margin-block-end: 0 !important; }

.single .page-content h2 {
    font-family: Georgia, serif;
    font-size: 26px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: #1e2639 !important;
    margin: 40px 0 16px !important;
    margin-block-end: 0 !important; }

.single .page-content h3 {
    font-family: Georgia, serif;
    font-size: 21px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    color: #1e2639 !important;
    margin: 32px 0 12px !important;
    margin-block-end: 0 !important; }

/* WordPress block images + captions */
.single .page-content figure.wp-block-image {
    margin: 36px 0 !important;
    margin-block-end: 0 !important; }

.single .page-content figure.wp-block-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.single .page-content figcaption, .single .page-content .wp-element-caption {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #6b7280 !important;
    text-align: center !important;
    margin-top: 10px !important;
    font-style: italic !important;
    margin-block-end: 0 !important; }

/* Tag pills */
.single .post-tags {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e0dbd3;
}

.single .post-tags .tag-links {
    font-size: 13px;
    color: #6b7280;
}

.single .post-tags .tag-links a {
    display: inline-block;
    background: #f4f2ee;
    color: #39466e !important;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 4px;
    text-decoration: none !important;
    margin-left: 6px;
    transition: background 0.2s, color 0.2s;
}

.single .post-tags .tag-links a:hover {
    background: #39466e !important;
    color: #fff !important;
}

/* Comments */
.single #comments {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e0dbd3;
}

.single .comment-reply-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1e2639 !important;
    margin: 0 0 24px !important;
    margin-block-end: 0 !important; }

.single .comment-form p {
    margin: 0 0 16px !important;
    margin-block-end: 0 !important; }

.single .comment-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #39466e;
    margin-bottom: 6px;
}

.single .comment-form input[type="text"], .single .comment-form input[type="email"], .single .comment-form input[type="url"], .single .comment-form textarea {
    width: 100% !important;
    padding: 10px 14px !important;
    border: 1px solid #d0cdc8 !important;
    border-radius: 6px !important;
    background: #fff !important;
    font-size: 14px !important;
    color: #3a3a3a !important;
    box-shadow: none !important;
    box-sizing: border-box;
}

.single #submit, .single .comment-form .submit {
    background: #39466e !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 28px !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    letter-spacing: 0.02em !important;
    transition: background 0.2s !important;
}

.single #submit:hover, .single .comment-form .submit:hover {
    background: #1e2639 !important;
}
