/* =========================================================
   Base
   ========================================================= */

html,
body {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #ffffff;
    color: #171717;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
}

/* Generic JS-toggled visibility helpers (swapped via classList by site.js) */

.hidden {
    display: none;
}

.flex {
    display: flex;
}

.mq-body {
    margin: 0;
}

.mq-main {
    min-height: 100vh;
}

.mq-main--with-header {
    padding-top: 0;
}

/* =========================================================
   Utilities (shared helpers, not Tailwind-derived)
   ========================================================= */

.logo-center {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
}

.logo-below {
    position: relative;
    background-color: white;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: var(--ellipsis-max-lines, 3);
    -webkit-line-clamp: var(--ellipsis-max-lines, 3);
    -webkit-box-orient: vertical;
}

/* Fade-in animations used across pages */

.mq-fade-up,
.mq-fade-right {
    animation-duration: 0.8s;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
    animation-play-state: paused;
}

.mq-fade-up.is-inview,
.mq-fade-right.is-inview {
    animation-play-state: running;
}

.mq-fade-up {
    animation-name: mq-fade-up;
}

.mq-fade-right {
    animation-name: mq-fade-right;
}

@keyframes mq-fade-up {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mq-fade-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Horizontal scroll tracks (THINKaMuna carousels) */

.mq-scroll-track {
    display: flex;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    padding-bottom: 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.mq-scroll-track > * {
    scroll-snap-align: start;
    flex: 0 0 auto;
}

.mq-scroll-track::-webkit-scrollbar {
    display: none;
}

/* Mouse-drag-to-scroll now runs at every viewport width (see initDraggableCarousels in
   site.js), so the cursor affordance and drag-safety rules apply unconditionally too — only
   the touch-specific scrolling behavior stays scoped to narrow/touch viewports below. */
.tkm-page [data-drag-scroll] {
    cursor: grab;
    overscroll-behavior-x: contain;
    user-select: none;
}

.tkm-page [data-drag-scroll].is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.tkm-page [data-drag-scroll] img {
    -webkit-user-drag: none;
    user-select: none;
}

@media (max-width: 1024px) {
    .tkm-page [data-drag-scroll] {
        touch-action: pan-x pan-y;
        -webkit-overflow-scrolling: touch;
    }
}

/* THINKaMuna display font */

.tkm-bebas {
    font-family: "Bebas Neue", cursive;
}

/* THINKaMuna post modal image */

.mq-post-modal-image {
    max-width: min(680px, 80vw);
    max-height: 80vh;
    object-fit: contain;
}

@media (max-width: 767px) {
    .mq-post-modal-image {
        max-width: 90vw;
    }
}

@media (max-width: 1024px) {
    .mq-post-modal-image {
        max-height: calc(90vh - 7rem);
    }
}

/* Cookie popup show/hide */

.mq-cookie-hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s linear, opacity 0.4s linear;
}

/* =========================================================
   Header
   ========================================================= */

.site-header {
    box-sizing: border-box;
    z-index: 50;
    height: 80px;
    background: #ffffff;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
}

.site-header__inner {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    overflow: visible;
}

.site-header__logo {
    max-width: 169px;
    min-height: 42px;
    min-width: 42px;
    height: auto;
}

.site-header__nav {
    display: none;
    align-items: center;
    height: 100%;
}

.site-header__nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 1.25rem;
    z-index: 1000;
}

.site-header__nav-link {
    display: inline-block;
}

.site-header__nav-link.is-active {
    color: #fb923c;
}

.site-header__nav-item--underline {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: #fb923c;
}

.site-header__logo-link {
    position: relative;
    height: 56px;
    aspect-ratio: 16 / 9;
    width: 120px;
}

.site-header__logo-link img {
    /*width: 100%;*/
    height: 100%;
    /*object-fit: contain;*/
}

.site-header__menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.site-header__mobile-menu {
    background: #ffffff;
    border-bottom: 2px solid #cbd5e1;
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: height 0.5s ease;
    overflow: hidden;
    height: 0;
}

.site-header__mobile-menu.mq-mobile-menu-open {
    height: 400px;
}

.site-header__mobile-link {
    font-weight: 600;
    font-size: 1.125rem;
}

.site-header__mobile-link.is-active {
    color: #fb923c;
}

.site-header__mobile-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
}

@media (min-width: 768px) and (max-width: 1022px) {
    .site-header {
        padding: 0 20px;
    }
}

@media (min-width: 1023px) {
    .site-header {
        padding: 0 40px;
    }

    .site-header__nav {
        display: flex;
    }

    .site-header__nav-link:hover {
        color: #fb923c;
    }

    .site-header__menu-toggle {
        display: none;
    }

    .site-header__mobile-menu {
        display: none;
    }
}

@media (max-width: 767px) {
    .site-header__inner {
        padding: 0 20px;
    }

    .site-header__nav-link {
        font-weight: 600;
        font-size: 1.125rem;
    }
}

/* =========================================================
   Contact section
   ========================================================= */

#contact {
    scroll-margin-top: 64px;
}

.contact-section {
    box-sizing: border-box;
    width: 100%;
    padding: 3rem 1rem;
    margin: 0 auto;
    background: #57534e;
    color: #ffffff;
}

.contact-section__inner {
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    min-width: 0;
    max-width: 1200px;
}

.contact-section__title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.contact-section__text {
    margin-bottom: 1.5rem;
}

.contact-section__text-label {
    margin-right: 1rem;
}

.contact-section__link {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.contact-section__map {
    box-sizing: border-box;
    width: 100%;
    position: relative;
    max-width: 1200px;
    height: 345px;
    overflow: hidden;
}

.contact-section__map img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media (max-width: 1022px) {
    .contact-section__map {
        height: auto;
        aspect-ratio: 753 / 344;
    }

    .contact-section__map img {
        object-fit: contain;
    }
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    background: #000000;
    color: #ffffff;
    padding: 1.25rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.site-footer__col {
    padding: 1rem;
    margin: 1.25rem 0;
}

.site-footer__heading {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.site-footer__address {
    line-height: 2.5rem;
}

.site-footer__link {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-footer__nav {
    flex-grow: 1;
}

.site-footer__nav-item {
    margin: 1.25rem 0;
}

.site-footer__nav-link:hover {
    color: #fb923c;
}

.site-footer__nav-link.is-active {
    color: #fb923c;
}

.site-footer__copy {
    line-height: 2.5rem;
    font-size: 0.875rem;
}

.site-footer__privacy-link:hover {
    color: #fb923c;
}

@media (min-width: 768px) {
    .site-footer__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================================
   Cookie popup
   ========================================================= */

.cookie-popup {
    position: fixed;
    font-size: 0.875rem;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    z-index: 1010;
}

.cookie-popup__text {
    flex: 1 1 auto;
    display: none;
}

.cookie-popup__text--short {
    display: block;
}

.cookie-popup__link {
    text-decoration: underline;
}

.cookie-popup__link:hover {
    color: #374151;
}

.cookie-popup__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
}

.cookie-popup__accept {
    background: #000000;
    border: 1px solid #000000;
    padding: 0.5rem 1rem;
    color: #ffffff;
    cursor: pointer;
}

.cookie-popup__accept:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(0, 0, 0, 0.9);
}

@media (min-width: 1023px) {
    .cookie-popup__text {
        display: block;
    }

    .cookie-popup__text--short {
        display: none;
    }
}

/* =========================================================
   Page wrapper (shared by every top-level page)
   ========================================================= */

.page {
    width: 100%;
    overflow: hidden;
}

.page--centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 8rem;
}

.page-heading {
    font-size: 1.5rem;
    width: 75%;
    text-align: center;
}

@media (min-width: 1023px) {
    .page-heading {
        font-size: 3rem;
        width: auto;
        text-align: center;
    }
}

/* =========================================================
   Home page
   ========================================================= */

.home-hero-wrap {
    position: relative;
    padding-top: 0;
}

.home-hero-wrap,
.home-hero-wrap *,
.home-hero-wrap::before,
.home-hero-wrap::after,
.home-hero-wrap *::before,
.home-hero-wrap *::after {
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .home-hero-wrap {
        padding-top: 80px;
    }
}

.home-hero {
    position: relative;
    height: 100%;
}

.home-carousel-container {
    position: relative;
    height: 100%;
}

[data-home-carousel] {
    cursor: grab;
    touch-action: pan-y;
    overscroll-behavior-x: contain;
    user-select: none;
}

[data-home-carousel].is-dragging {
    cursor: grabbing;
}

[data-home-carousel] .home-carousel-image {
    pointer-events: none;
    -webkit-user-drag: none;
}

.home-carousel-slider,
.home-carousel-list {
    position: relative;
    display: block;
}

.home-carousel-list {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.home-carousel-track {
    position: relative;
    left: 0;
    top: 0;
    display: flex;
    align-items: flex-start;
    width: 100%;
    transform: translate3d(0, 0, 0);
    transition: transform 500ms ease;
    will-change: transform;
}

.home-carousel-track.is-resetting {
    transition: none;
}

.home-carousel-slide {
    display: block;
    flex: 0 0 100%;
    min-width: 0;
    height: 100%;
}

.home-carousel-image {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.home-logo-panel {
    padding: 0 0.5rem;
    margin: 0 auto;
    width: auto;
    animation: home-logo-rise 0.8s ease-out both;
}

@keyframes home-logo-rise {
    from {
        opacity: 0;
        transform: translate(-50%, 200px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@media (max-width: 767px) {
    .home-carousel-slider {
        height: 350px;
    }

    .home-carousel-image {
        width: 100%;
        height: 300px;
        object-position: center;
    }

    .home-logo-panel {
        width: 80%;
    }
}

@media (min-width: 1023px) {
    .home-logo-panel {
        width: 700px;
        padding: 0 5rem;
        margin-bottom: -10px;
    }
}

.home-logo-panel__image {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .home-logo-panel__image {
        width: 350px;
        height: 100%;
    }
}

.home-family {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    gap: 2.5rem;
}

@media (min-width: 1023px) {
    .home-family {
        padding: 5rem 0;
        gap: 5rem;
    }
}

.home-family__title {
    font-size: 1.5rem;
    width: 75%;
    text-align: center;
}

@media (min-width: 1023px) {
    .home-family__title {
        font-size: 3rem;
        width: auto;
    }
}

.home-family__grid-wrap {
    width: 100%;
}

@media (min-width: 1023px) {
    .home-family__grid-wrap {
        width: 900px;
    }
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 1023px) {
    .company-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.company-card {
    display: block;
    background: #f9f9f9;
    padding: 2.5rem;
    color: inherit;
    text-decoration: none;
}

.company-card--linked {
    cursor: pointer;
    transition: background-color 0.18s var(--ease, ease), transform 0.18s var(--ease, ease);
}

.company-card--linked:hover,
.company-card--linked:focus-visible {
    background: #f1f1f1;
    transform: translateY(-2px);
}

.company-card__image {
    display: block;
    object-fit: cover;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    max-width: 200px;
    min-height: 200px;
    min-width: 200px;
}

/* =========================================================
   About page
   ========================================================= */

.about-intro,
.about-intro *,
.about-vmv,
.about-vmv * {
    box-sizing: border-box;
}

.about-intro {
    display: flex;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    padding: 1.25rem;
}

@media (max-width: 767px) {
    .about-intro {
        padding: 1.25rem 1rem;
        font-size: 1rem;
    }
}

.about-intro__grid {
    width: 100%;
    min-width: 0;
    max-width: 920px;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(0.5rem, 3vw, 1.5rem);
}

@media (min-width: 768px) {
    .about-intro__grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
    }
}

.about-intro__col {
    min-width: 0;
    padding: clamp(0rem, 1vw, 1rem);
    margin: 1.25rem 0;
}

.about-intro__text-wrap {
    position: relative;
    padding: clamp(0rem, 2vw, 1.25rem);
    height: auto;
}

.about-intro__text {
    margin-bottom: 1rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.about-intro__text > :first-child,
.about-vmv__content > :first-child {
    margin-top: 0;
}

.about-intro__text > :last-child,
.about-vmv__content > :last-child {
    margin-bottom: 0;
}

.about-intro__image-wrap {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    width: 100%;
    min-width: 0;
}

.about-intro__image {
    display: block;
    object-fit: cover;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 0.79;
}

@media (max-width: 767px) {
    .about-intro__image-col {
        display: none;
    }
}

.about-vmv {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 1.25rem auto 0;
    width: 100%;
    background: #ffedd5;
}

.about-vmv__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 2.5rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
    margin: 0 auto;
    width: 100%;
    height: auto;
    max-width: 1000px;
    gap: 2.5rem;
}

@media (max-width: 767px) {
    .about-vmv__inner {
        padding: 2.25rem 1.25rem;
        gap: 2rem;
    }
}

.about-vmv__heading {
    position: relative;
    height: auto;
    font-size: 3.75rem;
    font-weight: 600;
    line-height: 1.15;
}

@media (max-width: 767px) {
    .about-vmv__heading {
        font-size: 2.25rem;
        margin: 0;
    }
}

.about-vmv__heading-accent {
    font-weight: 500;
}

.about-vmv__body {
    position: relative;
    margin-top: 1.25rem;
    height: auto;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

@media (max-width: 767px) {
    .about-vmv__body {
        padding: 0;
        text-align: left;
    }
}

/* Vision/Mission/Values now come from one continuous BodyHtml field split at each <h1> the
   editor inserts, so style those headings/paragraphs directly to match the previous
   per-section accent-heading look. */
.about-vmv__body h1 {
    position: relative;
    height: auto;
    font-size: 3.75rem;
    font-weight: 500;
    line-height: 1.15;
    margin: 2.5rem 0 1.5rem;
}

.about-vmv__body h1:first-child {
    margin-top: 0;
}

@media (max-width: 767px) {
    .about-vmv__body h1 {
        font-size: 2.25rem;
    }
}

.about-vmv__body h3,
.about-vmv__body p {
    margin: 0;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.about-vmv__body h3 {
    font-weight: inherit;
}

.about-vmv__body h3:has(> strong) {
    margin-top: 1.75rem;
}

/* =========================================================
   Team page
   ========================================================= */

.team-section {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 1.25rem auto;
    width: 100%;
    height: auto;
    max-width: 980px;
}

.team-section__title {
    position: relative;
    margin: 1.25rem auto 0;
    height: auto;
    font-size: 3.75rem;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 767px) {
    .team-section__title {
        font-size: 2.25rem;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-card {
    position: relative;
    flex-grow: 1;
    padding: 1.25rem;
    height: auto;
}

.team-card__col {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.team-card__panel {
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
    align-self: stretch;
    margin: 0 auto;
    width: 100%;
    background: #ffffff;
    max-width: 200px;
}

@media (max-width: 767px) {
    .team-card__panel {
        margin: 1.25rem auto;
    }
}

.team-card__image {
    object-fit: cover;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    max-width: 200px;
    min-height: 20px;
    min-width: 20px;
}

.team-card__info {
    position: relative;
    padding: 0.375rem;
    margin-bottom: auto;
    font-size: 0.875rem;
}

.team-card__info p {
    margin: 0;
}

@media (max-width: 767px) {
    .team-card__info {
        font-size: 1.5rem;
    }
}

/* =========================================================
   News page
   ========================================================= */

.news-section {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 1.25rem auto;
    width: 100%;
    height: auto;
    max-width: 980px;
}

.news-section__title {
    position: relative;
    margin: 1.25rem auto 0;
    height: auto;
    font-size: 3.75rem;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 767px) {
    .news-section__title {
        font-size: 2.25rem;
    }
}

.news-list {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
}

.news-list__placeholders {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.news-list__placeholder {
    background: #eeeeee;
    border-radius: 0.375rem;
    height: 260px;
    animation: mq-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.news-list__empty {
    padding: 2.5rem;
    text-align: center;
    color: #6b7280;
    background: #f4f5f7;
    border-radius: 0.5rem;
}

@keyframes mq-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* News items rendered dynamically by site.js */

.news-card {
    box-sizing: border-box;
    display: flex;
    position: relative;
    flex-direction: column;
    flex-shrink: 0;
    align-self: center;
    padding: 1.25rem;
    margin: 1.25rem 0;
    width: 100%;
    background: #eeeeee;
    border-radius: 0.375rem;
}

.news-card__row {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .news-card__row {
        flex-direction: row;
    }
}

.news-card__meta {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 2;
}

@media (min-width: 768px) {
    .news-card__meta {
        order: 0;
        width: auto;
        flex: 1 1 0;
    }
}

.news-card__meta-inner {
    box-sizing: border-box;
    display: flex;
    position: relative;
    flex-direction: column;
    flex-shrink: 0;
    align-self: stretch;
    margin: 0 auto;
    width: 100%;
    pointer-events: auto;
}

@media (min-width: 1023px) {
    .news-card__meta-inner {
        max-width: 200px;
    }
}

@media (max-width: 767px) {
    .news-card__meta-inner {
        align-self: center;
        margin: 0 auto 1.25rem 0;
        text-align: left;
    }
}

.news-card__date {
    display: block;
    margin: 1.25rem 0;
    height: auto;
}

.news-card__title {
    display: block;
    height: auto;
    font-size: 1.25rem;
    font-weight: 600;
}

.news-card__blurb-col {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 2;
}

@media (min-width: 768px) {
    .news-card__blurb-col {
        order: 0;
        width: auto;
        flex: 1 1 0;
        margin-left: 1.25rem;
    }
}

.news-card__blurb-inner {
    box-sizing: border-box;
    display: flex;
    position: relative;
    flex-direction: column;
    flex-shrink: 0;
    padding-bottom: 2rem;
    height: auto;
    pointer-events: auto;
}

.news-card__blurb {
    display: block;
    height: auto;
    font-size: 1.25rem;
}

.news-card__read-more {
    position: relative;
    display: block;
    flex-shrink: 0;
    margin-top: 1.25rem;
    height: auto;
    color: #3b82f6;
    text-decoration: underline;
    cursor: pointer;
    pointer-events: auto;
}

.news-card__image-col {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 1;
}

@media (min-width: 768px) {
    .news-card__image-col {
        order: 0;
        width: auto;
        flex: 1 1 0;
        margin-left: 1.25rem;
    }
}

.news-card__image-inner {
    box-sizing: border-box;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
    flex-shrink: 0;
    width: 100%;
    height: auto;
    pointer-events: auto;
}

.news-card__image {
    box-sizing: border-box;
    object-fit: cover;
    object-position: top;
    overflow: hidden;
    flex-shrink: 0;
    width: 100%;
    aspect-ratio: 1.42;
    min-height: 20px;
    min-width: 20px;
}

.news-card__image--placeholder {
    background: #e2e8f0;
}

/* =========================================================
   MQuest Ventures page
   ========================================================= */

.ventures-page {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

.ventures-page__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 8rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.ventures-page__logo {
    width: 800px;
    height: 240px;
    object-fit: cover;
    max-width: 100%;
}

.ventures-page__text {
    margin: 6rem 0;
    text-align: justify;
}

/* =========================================================
   Auth page
   ========================================================= */

.auth-page {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    margin: auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    min-width: 16rem;
    padding: 1rem 2rem 2rem;
    background: #ffffff;
}

.auth-form__logo {
    display: block;
    height: 9rem;
    width: 100%;
    object-fit: contain;
    max-width: 300px;
}

.auth-form__error {
    border: 1px solid #ef4444;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    width: 100%;
}

.auth-form__error.hidden {
    display: none;
}

.auth-form__field {
    width: 100%;
}

.auth-form__input {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    display: block;
    margin: 0.25rem 0;
    width: 100%;
}

.auth-form__submit {
    padding: 0.5rem 0;
    border-radius: 0.5rem;
    background: #22c55e;
    width: 100%;
    color: #ffffff;
    border: none;
    cursor: pointer;
}

.auth-form__submit:hover {
    background: rgba(34, 197, 94, 0.9);
}

.auth-form__submit:active {
    background: rgba(34, 197, 94, 0.95);
}

/* =========================================================
   Privacy Commitment page
   ========================================================= */

.privacy-page__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 8rem;
}

.privacy-page__header {
    position: relative;
    height: auto;
}

.privacy-page__title {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
}

@media (min-width: 1023px) {
    .privacy-page__title {
        font-size: 3.75rem;
    }
}

.privacy-page__article {
    position: relative;
    padding: 2.5rem 3rem 1.25rem;
    height: auto;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.privacy-page__section {
    margin-bottom: 2rem;
}

.privacy-page__content p {
    text-align: justify;
}

.privacy-page__content p + p {
    margin-top: 1rem;
}

.privacy-page__content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-page__illustration {
    float: right;
    margin-left: 1.25rem;
    min-width: 320px;
    min-height: 325px;
    max-width: 320px;
}

@media (max-width: 767px) {
    .privacy-page__illustration {
        display: none;
    }
}

.privacy-page__content ul,
.privacy-page__content ol {
    list-style: disc;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.privacy-page__content ol {
    list-style: decimal;
}

.privacy-page__content address {
    font-style: normal;
}

.privacy-page__content a {
    color: #2563eb;
}

.privacy-page__content a:hover {
    color: #1e40af;
}

/* =========================================================
   THINKaMuna page
   ========================================================= */

.tkm-page {
    width: 100%;
    overflow: hidden;
}

.tkm-hero-wrap {
    padding-top: 0;
}

@media (max-width: 767px) {
    .tkm-hero-wrap {
        padding-top: 80px;
    }
}

.tkm-hero {
    width: 100%;
    margin: 0 auto;
    max-width: 1440px;
}

.tkm-hero__top-image,
.tkm-hero__bottom-image {
    height: 57px;
    width: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .tkm-hero__top-image,
    .tkm-hero__bottom-image {
        display: none;
    }
}

.tkm-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 1023px) {
    .tkm-hero__grid {
        grid-template-columns: 260px minmax(0, 1fr) 260px;
        align-items: stretch;
    }
}

.tkm-hero__side-image {
    max-width: 260px;
    display: block;
}

.tkm-hero__side-image img {
    width: 100%;
    height: 100%;
}

.tkm-hero__side-image--left img {
    object-position: left;
}

.tkm-hero__side-image--right {
    margin-top: -12px;
}

.tkm-hero__side-image--right img {
    object-position: right;
}

@media (max-width: 1022px) {
    .tkm-hero__side-image {
        display: none;
    }
}

.tkm-hero__main {
    box-sizing: border-box;
    padding: 1rem;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

@media (min-width: 768px) {
    .tkm-hero__main {
        padding-top: 6rem;
    }
}

.tkm-hero__logo-row {
    box-sizing: border-box;
    display: flex;
    position: relative;
    flex-direction: row;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    width: 100%;
}

.tkm-hero__logo {
    max-width: 170px;
}

.tkm-hero__tagline-row {
    box-sizing: border-box;
    display: flex;
    position: relative;
    flex-direction: row;
    flex-shrink: 0;
    width: 100%;
}

.tkm-hero__tagline-header {
    text-align: center;
    box-sizing: border-box;
    position: relative;
    align-self: stretch;
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .tkm-hero__tagline-header {
        margin: 0.25rem 0;
    }
}

.tkm-hero__tagline {
    font-size: 1.5rem;
    line-height: 2rem;
}

@media (min-width: 1023px) {
    .tkm-hero__tagline {
        font-size: 2.25rem;
    }
}

.tkm-hero__video-panel {
    width: 100%;
    min-width: 0;
    background-repeat: no-repeat;
}

@media (min-width: 1023px) {
    .tkm-hero__video-panel {
        background-image: url("/assets/tkm/news-bg.png");
        background-size: 114% 114%;
        background-position: 42% 75%;
    }
}

.tkm-hero__banner-row {
    box-sizing: border-box;
    display: flex;
    position: relative;
    flex-direction: row;
    flex-shrink: 0;
    justify-content: center;
    align-self: center;
    width: 100%;
}

.tkm-hero__banner-image {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .tkm-hero__banner-image {
        padding: 0 1.25rem;
    }
}

.tkm-hero__video-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 0;
}

@media (min-width: 768px) {
    .tkm-hero__video-block {
        gap: 2.5rem;
    }
}

.tkm-hero__video-frame-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tkm-hero__video-frame-outer {
    position: relative;
    width: 100%;
    max-width: 730px;
    aspect-ratio: 16 / 9;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #000000;
}

@media (min-width: 1023px) {
    .tkm-hero__video-frame-outer {
        height: 400px;
    }
}

.tkm-hero__video-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    border: none;
}

.tkm-hero__video-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    border-radius: 0.75rem;
    background: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tkm-hero__video-poster[hidden] {
    display: none;
}

.tkm-hero__video-poster-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tkm-hero__video-poster-play {
    position: relative;
    width: 64px;
    height: 64px;
}

.tkm-hero__video-track-row {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    width: 100%;
    min-width: 0;
    padding: 0;
}

@media (min-width: 1023px) {
    .tkm-hero__video-track-row {
        max-width: 873px;
        margin: 0 auto;
        /* padding: 0 4rem; */
    }
}

.tkm-hero__video-track-col {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    border-radius: 0.5rem;
    overflow: hidden;
}

/* Scroll arrow buttons (shared across THINKaMuna carousels) */

.tkm-scroll-btn {
    display: none;
    position: absolute;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    width: 50px;
    height: 50px;
    line-height: 0;
    z-index: 10;
}

.tkm-scroll-btn img {
    display: block;
    width: 50px;
    height: 50px;
}

@media (min-width: 1023px) {
    .tkm-scroll-btn {
        display: block;
    }
}

.tkm-scroll-btn--video-prev {
    left: -3rem;
}

.tkm-scroll-btn--video-next {
    right: -3rem;
}

.tkm-scroll-btn--news-prev {
    top: 30%;
    left: 0;
}

.tkm-scroll-btn--news-next {
    top: 30%;
    right: 0;
}

.tkm-scroll-btn--post-prev {
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.tkm-scroll-btn--post-next {
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

/* Video card rendered dynamically by site.js */

.tkm-video-card {
    display: flex;
    justify-content: space-around;
    position: relative;
    cursor: pointer;
    margin-right: 1rem;
    max-width: 50vw;
    text-align: left;
    border: none;
    background: none;
    padding: 0;
}

.tkm-video-card__image,
.tkm-video-card__image--placeholder {
    width: 270px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 0.5rem;
}

.tkm-video-card__image--placeholder {
    background: #e2e8f0;
}

.tkm-video-card__overlay {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    position: absolute;
    inset: 0;
    bottom: 0;
    border-radius: 0.5rem;
    padding: 0 0.75rem 1rem;
    gap: 0.75rem;
    background: rgba(53, 49, 67, 0.5);
}

.tkm-video-card__overlay.is-active {
    background: rgba(224, 57, 0, 0.4);
}

.tkm-video-card__play-icon {
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

@media (min-width: 768px) {
    .tkm-video-card__play-icon {
        width: 50px;
        height: 50px;
    }
}

.tkm-video-card__title {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .tkm-video-card__title {
        font-size: 1.25rem;
    }
}

/* THINKaMuna news / posts sections */

.tkm-news-section,
.tkm-posts-section {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    margin: 0 auto;
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("/assets/tkm/news-bg.png");
    background-position: center;
    flex-grow: 0;
    max-width: 1440px;
}

.tkm-news-section {
    margin-top: -1px;
}

@media (min-width: 1023px) {
    .tkm-posts-section {
        margin-bottom: 4rem;
    }
}

.tkm-objectives-section {
    margin-top: -1px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("/assets/tkm/banner-bg.png");
    background-position: 53% 60%;
    flex-grow: 0;
    max-width: 1440px;
}

@media (min-width: 768px) {
    .tkm-objectives-section {
        background-position: 10% 60%;
    }
}

.tkm-objectives-section__inner {
    box-sizing: border-box;
    position: relative;
    align-self: stretch;
    padding: 5rem 1.25rem;
    width: 100%;
    height: auto;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.5rem;
    text-align: center;
    color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: linear-gradient(to bottom, rgba(215, 24, 0, 0.55), rgba(242, 141, 23, 0.55));
    min-height: 450px;
}

@media (min-width: 768px) {
    .tkm-objectives-section__inner {
        padding: 5rem;
        font-size: 1.5rem;
        line-height: 2.5rem;
    }
}

.tkm-news-posts-inner {
    box-sizing: border-box;
    position: relative;
    align-self: stretch;
    padding: 2.5rem;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1023px) {
    .tkm-news-posts-inner {
        gap: 2.5rem;
    }
}

.tkm-news-posts-inner--posts {
    padding: 0 2.5rem;
}

.tkm-section-heading {
    color: #3730a3;
    font-size: 2.25rem;
    font-weight: 700;
    text-align: left;
    line-height: 2.5rem;
}

@media (min-width: 1023px) {
    .tkm-section-heading {
        font-size: 3.75rem;
        text-align: center;
    }
}

.tkm-track-wrap {
    box-sizing: border-box;
    padding: 0;
    position: relative;
    width: 100%;
    min-width: 0;
}

@media (min-width: 1023px) {
    .tkm-track-wrap {
        padding: 0 1.5rem;
    }
}

.tkm-track-wrap--posts {
    height: 100%;
}

/* THINKaMuna news card rendered dynamically by site.js */

.tkm-news-card {
    width: 60vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .tkm-news-card {
        width: 300px;
    }
}

@media (min-width: 1023px) {
    .tkm-news-card {
        width: 383px;
    }
}

/* Only 3 cards' worth of width is visible at once — any further items require scrolling/
   dragging the track rather than growing to show everything at once. Centered in its wrapper
   with a visible gap between cards (was only 0.5rem via .tkm-news-card's own margin-right). */
#tkm-news-track {
    max-width: calc(3 * 60vw + 2 * 1.5rem);
    margin-left: auto;
    margin-right: auto;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    #tkm-news-track {
        max-width: calc(3 * 300px + 2 * 1.5rem);
    }
}

@media (min-width: 1023px) {
    #tkm-news-track {
        max-width: calc(3 * 383px + 2 * 1.5rem);
    }
}

.tkm-news-card__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .tkm-news-card__body {
        gap: 2rem;
    }
}

.tkm-news-card__image,
.tkm-news-card__image--placeholder {
    height: 230px;
    width: 100%;
    object-fit: cover;
}

.tkm-news-card__image--placeholder {
    width: 300px;
    background: #e2e8f0;
}

@media (min-width: 1023px) {
    .tkm-news-card__image,
    .tkm-news-card__image--placeholder {
        height: 285px;
    }

    .tkm-news-card__image--placeholder {
        width: 383px;
    }
}

.tkm-news-card__title {
    width: 100%;
    font-size: 14px;
    color: #000000;
    text-align: left;
    line-height: 1.5rem;
}

@media (min-width: 1023px) {
    .tkm-news-card__title {
        font-size: 20px;
    }
}

/* THINKaMuna post card rendered dynamically by site.js */

.tkm-post-card {
    width: 60vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    padding: 0;
}

@media (min-width: 640px) {
    .tkm-post-card {
        width: auto;
    }
}

.tkm-post-card__image {
    cursor: pointer;
    height: 300px;
    width: 300px;
    object-fit: contain;
    background: #f9fafb;
}

.tkm-post-card__image--placeholder {
    height: 300px;
    width: 300px;
    border: 1px solid #94a3b8;
    border-radius: 1rem;
    background: #f1f5f9;
}

@media (min-width: 1023px) {
    .tkm-post-card__image,
    .tkm-post-card__image--placeholder {
        height: 384px;
        width: 384px;
    }
}

/* Only 3 cards' worth of width is visible at once — any further posts require scrolling/
   dragging the track rather than growing to show everything at once. Centered in its wrapper
   with a visible gap between cards (was only 0.5rem via .tkm-post-card's own margin-right). */
#tkm-post-track {
    max-width: calc(3 * 60vw + 2 * 1.5rem);
    margin-left: auto;
    margin-right: auto;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    #tkm-post-track {
        max-width: calc(3 * 300px + 2 * 1.5rem);
    }
}

@media (min-width: 1023px) {
    #tkm-post-track {
        max-width: calc(3 * 384px + 2 * 1.5rem);
    }
}

.tkm-socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.125rem;
    margin: 1rem 0;
}

.tkm-socials__icon {
    height: 2rem;
    width: 2rem;
}

@media (min-width: 1023px) {
    .tkm-socials__icon {
        height: 2.5rem;
        width: 2.5rem;
    }
}

.tkm-socials__badge {
    height: 116px;
}

@media (min-width: 1023px) {
    .tkm-socials__badge {
        height: 150px;
    }
}

.tkm-partners {
    margin: 0 auto;
    max-width: 1440px;
}

@media (min-width: 1023px) {
    .tkm-partners {
        margin-top: 6rem;
    }
}

.tkm-partners__title {
    padding: 11.09px 0;
    font-size: 2.25rem;
    color: #d00b11;
    text-align: center;
}

.tkm-partners__rows {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 1023px) {
    .tkm-partners__rows {
        padding: 2rem;
        gap: 1rem;
        margin-bottom: 0;
    }
}

.tkm-partners__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 0.5rem;
    width: 100%;
}

@media (min-width: 1023px) {
    .tkm-partners__row {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
}

.tkm-partners__logo {
    object-fit: cover;
    flex: 0 0 auto;
}

.tkm-partners__logo--mqh {
    width: 60px;
}

.tkm-partners__logo--kbp {
    width: 16px;
}

.tkm-partners__logo--tv5 {
    width: 50px;
}

.tkm-partners__logo--nbc {
    width: 60px;
}

.tkm-partners__logo--cignal {
    width: 50px;
}

.tkm-partners__logo--philstar {
    width: 60px;
}

.tkm-partners__logo--bworld {
    width: 100px;
}

.tkm-partners__logo--freeman {
    width: 80px;
    height: 40px;
    margin-top: -0.5rem;
    object-fit: contain;
}

.tkm-partners__logo--pldt {
    width: 70px;
    margin-top: 0.5rem;
}

.tkm-partners__logo--smart {
    width: 70px;
    margin-top: 0.5rem;
}

.tkm-partners__logo--default {
    width: 70px;
    object-fit: contain;
}

@media (min-width: 768px) and (max-width: 1022px) {
    .tkm-partners__logo--mqh {
        width: 60px;
    }

    .tkm-partners__logo--kbp {
        width: 16px;
    }

    .tkm-partners__logo--tv5 {
        width: 50px;
    }

    .tkm-partners__logo--nbc {
        width: 60px;
    }

    .tkm-partners__logo--cignal {
        width: 50px;
    }

    .tkm-partners__logo--philstar {
        width: 60px;
    }

    .tkm-partners__logo--bworld {
        width: 100px;
    }

    .tkm-partners__logo--freeman {
        width: 80px;
    }

    .tkm-partners__logo--pldt {
        width: 70px;
    }

    .tkm-partners__logo--smart {
        width: 70px;
    }
}

@media (min-width: 1023px) {
    .tkm-partners__logo--mqh {
        width: 180px;
        margin-top: 0.5rem;
    }

    .tkm-partners__logo--kbp {
        width: 32px;
    }

    .tkm-partners__logo--tv5 {
        width: 120px;
    }

    .tkm-partners__logo--nbc {
        width: 140px;
    }

    .tkm-partners__logo--cignal {
        width: 70px;
    }

    .tkm-partners__logo--philstar {
        width: 100px;
    }

    .tkm-partners__logo--bworld {
        width: 210px;
        margin-top: 0.75rem;
    }

    .tkm-partners__logo--freeman {
        width: 150px;
    }

    .tkm-partners__logo--pldt {
        width: 110px;
    }

    .tkm-partners__logo--smart {
        width: 110px;
    }

    .tkm-partners__logo--default {
        width: 130px;
    }
}

/* THINKaMuna post modal */

html.tkm-post-modal-open,
body.tkm-post-modal-open {
    overflow: hidden;
    overscroll-behavior: none;
}

.tkm-post-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    overscroll-behavior: contain;
    z-index: 1100;
}

.tkm-post-modal.flex {
    display: flex;
}

.tkm-post-modal__box {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    padding: 1rem;
}

@media (min-width: 1023px) {
    .tkm-post-modal__box {
        padding: 0;
    }
}

.tkm-post-modal__close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    color: #ffffff;
    font-size: 2.25rem;
    line-height: 1;
    border: none;
    background: none;
    cursor: pointer;
}

.tkm-post-modal__content-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0);
}

.tkm-post-modal__content {
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: pan-y;
    user-select: none;
    cursor: grab;
}

.tkm-post-modal__content.is-dragging {
    cursor: grabbing;
}

.tkm-post-modal__content img {
    -webkit-user-drag: none;
}

.tkm-post-modal__image--placeholder {
    width: 300px;
    height: 300px;
    background: #e2e8f0;
}

@media (min-width: 1023px) {
    .tkm-post-modal__image--placeholder {
        width: 680px;
        height: 680px;
    }
}

.tkm-post-modal__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.tkm-post-modal__nav img {
    display: block;
    width: 50px;
    height: 50px;
}

.tkm-post-modal__nav-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

@media (min-width: 1025px) {
    .tkm-post-modal__nav-controls {
        margin-top: 0;
    }

    .tkm-post-modal__nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .tkm-post-modal__nav--prev {
        left: -4rem;
    }

    .tkm-post-modal__nav--next {
        right: -4rem;
    }
}

/* Error rendering placeholder produced by site.js */

.mq-inline-error {
    border-radius: 0.375rem;
    background: #eeeeee;
    padding: 2.5rem;
    text-align: center;
    font-size: 1.125rem;
}

/* =========================================================
   Error page (Views/Shared/Error.cshtml)
   ========================================================= */

.mq-error-title {
    color: #dc3545;
}
