:root {
    --pulse-ink: #121816;
    --pulse-muted: #6a7a72;
    --pulse-paper: #eef2ee;
    --pulse-card: #fbfcfb;
    --pulse-line: rgba(18, 24, 22, 0.1);
    --pulse-teal: #0f766e;
    --pulse-up: #027a48;
    --pulse-down: #b42318;
    --pulse-feed-size: 300px;
    --pulse-rates-size: 190px;
    --pulse-weather-size: 210px;
}

.pulse-page {
    background: var(--pulse-paper);
    color: var(--pulse-ink);
    min-height: calc(100vh - 56px);
    padding: 0.45rem 0.75rem 1rem;
}

.pulse-shell {
    max-width: min(1920px, 100%);
    margin: 0 auto;
}

.pulse-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--pulse-feed-size);
    gap: 0.55rem;
    align-items: stretch;
}

.pulse-main {
    min-width: 0;
}

.pulse-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.pulse-mood {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pulse-muted);
    background: rgba(18, 24, 22, 0.06);
    border: 1px solid var(--pulse-line);
}

.pulse-mood strong { font-weight: 800; }
.pulse-mood.is-positive { color: var(--pulse-up); background: rgba(2, 122, 72, 0.1); border-color: rgba(2, 122, 72, 0.2); }
.pulse-mood.is-negative { color: var(--pulse-down); background: rgba(180, 35, 24, 0.1); border-color: rgba(180, 35, 24, 0.2); }
.pulse-mood.is-neutral { color: #b54708; background: rgba(181, 71, 8, 0.1); border-color: rgba(181, 71, 8, 0.2); }

.pulse-bar-meta {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.72rem;
    color: var(--pulse-muted);
    font-variant-numeric: tabular-nums;
}

.pulse-bar-meta a {
    color: var(--pulse-teal);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1;
}

/* Погода — вертикальная колонка */
.pulse-weather {
    background: var(--pulse-card);
    border: 1px solid var(--pulse-line);
    border-radius: 10px;
    padding: 0.45rem 0.45rem 0.55rem;
    width: var(--pulse-weather-size);
    max-height: calc(100vh - 72px);
    overflow: visible;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.pulse-weather-head {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin-bottom: 0.45rem;
    position: relative;
    z-index: 8;
}

.pulse-weather-picker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    width: 100%;
}

.pulse-weather-chip-row {
    display: flex;
    align-items: stretch;
    gap: 0.35rem;
    width: 100%;
}

.pulse-weather-chip {
    appearance: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
    padding: 0.35rem 0.55rem;
    border-radius: 10px;
    background: rgba(15, 118, 110, 0.06);
    border: 1px solid rgba(15, 118, 110, 0.14);
    cursor: pointer;
    font: inherit;
    color: inherit;
}

.pulse-weather-chip:hover {
    border-color: rgba(15, 118, 110, 0.35);
    background: rgba(15, 118, 110, 0.1);
}

.pulse-weather-chip[aria-expanded="true"] {
    border-color: rgba(15, 118, 110, 0.45);
    border-bottom-left-radius: 0;
}

.pulse-weather-gear {
    appearance: none;
    flex: 0 0 auto;
    width: 2.55rem;
    border-radius: 10px;
    border: 1px solid rgba(15, 118, 110, 0.18);
    background: rgba(15, 118, 110, 0.06);
    color: var(--pulse-teal);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.pulse-weather-gear:hover {
    border-color: rgba(15, 118, 110, 0.4);
    background: rgba(15, 118, 110, 0.12);
}

.pulse-weather-gear[aria-expanded="true"] {
    border-color: rgba(15, 118, 110, 0.45);
    border-bottom-right-radius: 0;
    color: #0f766e;
}

.pulse-weather-chip-label {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--pulse-muted);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.pulse-weather-chip strong {
    color: var(--pulse-ink);
    font-weight: 800;
    font-size: 0.94rem;
    line-height: 1.15;
}

.pulse-weather-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.45rem;
    background: #fff;
    border: 1px solid rgba(15, 118, 110, 0.35);
    border-top: 1px solid var(--pulse-line);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 24px rgba(16, 24, 22, 0.14);
}

.pulse-weather-menu[hidden] {
    display: none !important;
}

.pulse-weather-menu-search {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.pulse-weather-input {
    font: inherit;
    font-size: 0.78rem;
    border: 1px solid var(--pulse-line);
    border-radius: 8px;
    background: #fff;
    color: var(--pulse-ink);
    padding: 0.32rem 0.5rem;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
}

.pulse-weather-geo {
    appearance: none;
    border: 1px solid var(--pulse-line);
    background: #fff;
    border-radius: 8px;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    line-height: 1;
    flex: 0 0 auto;
}

.pulse-weather-geo:hover {
    border-color: rgba(15, 118, 110, 0.45);
}

.pulse-weather-menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    max-height: 220px;
    overflow: auto;
}

.pulse-weather-option {
    appearance: none;
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    border-radius: 8px;
    padding: 0.38rem 0.5rem;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 650;
    color: var(--pulse-ink);
    cursor: pointer;
}

.pulse-weather-option:hover {
    background: rgba(15, 118, 110, 0.08);
}

.pulse-weather-option.is-active {
    background: rgba(15, 118, 110, 0.14);
    color: var(--pulse-teal);
}

.pulse-weather-option[hidden] {
    display: none !important;
}

.pulse-weather-days {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
    max-height: calc(100vh - 140px);
    overflow: auto;
}

.pulse-wx-day {
    appearance: none;
    width: 100%;
    text-align: left;
    font: inherit;
    color: inherit;
    cursor: pointer;
    padding: 0.4rem 0.5rem;
    border-radius: 8px;
    background: rgba(18, 24, 22, 0.035);
    border: 1px solid rgba(18, 24, 22, 0.06);
    transition: border-color .15s ease, background .15s ease;
}

.pulse-wx-day:hover {
    border-color: rgba(15, 118, 110, 0.35);
}

.pulse-wx-day.is-open {
    background: rgba(15, 118, 110, 0.06);
    border-color: rgba(15, 118, 110, 0.28);
}

.pulse-wx-summary {
    display: grid;
    gap: 0.12rem;
}

.pulse-wx-date {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--pulse-muted);
    white-space: nowrap;
}

.pulse-wx-temps {
    display: flex;
    gap: 0.35rem;
    align-items: baseline;
    font-variant-numeric: tabular-nums;
}

.pulse-wx-temps .hi {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--pulse-ink);
}

.pulse-wx-temps .lo {
    font-size: 0.78rem;
    font-weight: 650;
    color: var(--pulse-muted);
}

.pulse-wx-desc {
    font-size: 0.68rem;
    color: var(--pulse-muted);
    line-height: 1.2;
}

.pulse-wx-precip {
    font-size: 0.65rem;
    color: #2563eb;
    font-weight: 650;
}

.pulse-wx-empty {
    font-size: 0.82rem;
    color: var(--pulse-muted);
    padding: 0.4rem 0.2rem;
}

.pulse-wx-hourly {
    display: none;
    margin-top: 0.4rem;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(18, 24, 22, 0.08);
    gap: 0.2rem;
}

.pulse-wx-day.is-open .pulse-wx-hourly {
    display: grid;
}

.pulse-wx-hour {
    display: grid;
    grid-template-columns: 2.4rem 2.4rem minmax(0, 1fr);
    gap: 0.25rem;
    align-items: baseline;
    font-size: 0.68rem;
    line-height: 1.25;
    color: var(--pulse-muted);
}

.pulse-wx-hour .t {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.pulse-wx-hour .v {
    font-weight: 800;
    color: var(--pulse-ink);
    font-variant-numeric: tabular-nums;
}

.pulse-wx-hour .d {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pulse-wx-hour.is-empty {
    grid-template-columns: 1fr;
}

.pulse-col-head-gap {
    margin-top: 0.75rem;
}

.pulse-body {
    display: grid;
    grid-template-columns: var(--pulse-rates-size) minmax(0, 1fr) var(--pulse-weather-size);
    gap: 0.55rem;
    align-items: stretch;
    min-height: calc(100vh - 72px);
}

.pulse-rates {
    background: var(--pulse-card);
    border: 1px solid var(--pulse-line);
    border-radius: 10px;
    padding: 0.45rem 0.45rem 0.55rem;
    max-height: calc(100vh - 72px);
    overflow: auto;
}

.pulse-rates-brand {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.55rem;
    padding: 0.1rem 0.15rem 0.5rem;
    border-bottom: 1px solid var(--pulse-line);
}

.pulse-rates-brand-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
}

.pulse-rates-brand .pulse-title {
    font-size: 1rem;
}

.pulse-rates-brand .pulse-mood {
    align-self: flex-start;
    max-width: 100%;
}

.pulse-col-head {
    margin: 0 0 0.4rem;
    padding: 0.1rem 0.2rem 0.35rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pulse-muted);
    border-bottom: 1px solid var(--pulse-line);
}

.pulse-tape {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pulse-tape-row {
    display: grid;
    grid-template-columns: 2.4rem minmax(0, 1fr) 3.2rem;
    gap: 0.25rem;
    align-items: baseline;
    padding: 0.34rem 0.15rem;
    border-bottom: 1px solid rgba(18, 24, 22, 0.06);
    font-variant-numeric: tabular-nums;
}

.pulse-tape-row:last-child {
    border-bottom: 0;
}

.pulse-tape-name {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.pulse-tape-price {
    font-size: 0.82rem;
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
}

.pulse-tape-delta {
    font-size: 0.72rem;
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
}

.pulse-tape-delta.up { color: var(--pulse-up); }
.pulse-tape-delta.down { color: var(--pulse-down); }
.pulse-tape-delta.flat { color: var(--pulse-muted); }

/* Центр: табы новостей */
.pulse-news {
    background: var(--pulse-card);
    border: 1px solid var(--pulse-line);
    border-radius: 10px;
    padding: 0.55rem 0.75rem 0.75rem;
    min-width: 0;
    max-height: calc(100vh - 72px);
    overflow: auto;
    display: flex;
    flex-direction: column;
}

.pulse-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0 0 0.45rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid var(--pulse-line);
    position: sticky;
    top: 0;
    z-index: 2;
    background: var(--pulse-card);
}

.pulse-dates {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin: 0 0 0.65rem;
    position: sticky;
    top: 2.6rem;
    z-index: 2;
    background: var(--pulse-card);
    padding-bottom: 0.35rem;
}

.pulse-date {
    appearance: none;
    border: 1px solid var(--pulse-line);
    background: rgba(18, 24, 22, 0.03);
    color: var(--pulse-muted);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    padding: 0.28rem 0.55rem;
    border-radius: 8px;
    cursor: pointer;
    transition: color .15s ease, background .15s ease, border-color .15s ease;
}

.pulse-date:hover {
    color: var(--pulse-ink);
    border-color: rgba(15, 118, 110, 0.35);
}

.pulse-date.is-active {
    color: #fff;
    background: #1f2d28;
    border-color: #1f2d28;
}

.pulse-news.is-loading-news .pulse-news-content {
    opacity: 0.55;
}

.pulse-tab {
    appearance: none;
    border: 1px solid transparent;
    background: transparent;
    color: var(--pulse-muted);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    cursor: pointer;
    transition: color .15s ease, background .15s ease, border-color .15s ease;
}

.pulse-tab:hover {
    color: var(--pulse-ink);
    background: rgba(18, 24, 22, 0.05);
}

.pulse-tab.is-active {
    color: #fff;
    background: var(--pulse-teal);
    border-color: var(--pulse-teal);
}

.pulse-tab-panel {
    display: none;
    min-width: 0;
}

.pulse-tab-panel.is-active {
    display: block;
}

.pulse-news-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.15rem;
}

.pulse-news-list a {
    display: block;
    text-decoration: none;
    color: var(--pulse-ink);
    font-size: 0.92rem;
    line-height: 1.35;
    font-weight: 600;
    padding: 0.45rem 0.2rem;
    border-bottom: 1px solid rgba(18, 24, 22, 0.05);
}

.pulse-news-list a:hover {
    color: var(--pulse-teal);
}

.pulse-news-list.compact a {
    font-size: 0.84rem;
    font-weight: 550;
    padding: 0.32rem 0.1rem;
}

.pulse-news-meta {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.72rem;
    color: var(--pulse-muted);
    font-weight: 500;
}

.pulse-empty {
    color: var(--pulse-muted);
    font-size: 0.86rem;
    margin: 0.6rem 0.2rem;
}

/* Справа: лента карточек */
.pulse-feed {
    position: relative;
    width: var(--pulse-feed-size);
    min-height: calc(100vh - 72px);
    max-height: calc(100vh - 72px);
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    overscroll-behavior: contain;
    cursor: ns-resize;
}

.pulse-feed-head {
    display: none;
}

.pulse-feed.is-empty {
    display: none;
}

.pulse-feed-viewport {
    position: absolute;
    inset: 0;
    padding-top: 0.55rem;
    overflow: hidden;
    mask-image: linear-gradient(180deg, transparent, #000 3%, #000 97%, transparent);
}

.pulse-feed.is-loading .pulse-marquee-track::before {
    content: '';
    display: block;
    width: var(--pulse-feed-size);
    height: var(--pulse-feed-size);
    border-radius: 12px;
    background: linear-gradient(90deg, #1a2420 0%, #243028 50%, #1a2420 100%);
    background-size: 200% 100%;
    animation: pulse-shimmer 1.2s ease-in-out infinite;
    margin-bottom: 0.55rem;
}

@keyframes pulse-shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.pulse-marquee-track {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    will-change: transform;
    transform: translateY(0);
}

.pulse-card-item {
    position: relative;
    display: block;
    width: var(--pulse-feed-size);
    height: var(--pulse-feed-size);
    flex: 0 0 var(--pulse-feed-size);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(16, 24, 22, 0.18);
    transition: transform .15s ease, border-color .15s ease;
}

.pulse-card-item:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 118, 110, 0.55);
    color: #fff;
    z-index: 3;
}

.pulse-card-media {
    position: absolute;
    inset: 0;
    display: block;
    background: #1a2420;
    overflow: hidden;
    z-index: 0;
}

.pulse-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pulse-card-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.55);
    background: linear-gradient(135deg, #1f2d28, #0f1714);
}

.pulse-card-media:not(.is-fallback) .pulse-card-fallback {
    display: none;
}

.pulse-card-media:not(:has(img)) .pulse-card-fallback,
.pulse-card-media.is-fallback .pulse-card-fallback {
    display: flex;
}

.pulse-card-fallback.is-reddit {
    background: linear-gradient(135deg, #ff6a33, #c43200);
}

.pulse-card-fallback.is-x {
    background: linear-gradient(135deg, #1d9bf0, #0a66a8);
}

.pulse-card-fallback.is-now {
    background: linear-gradient(135deg, #2f7a68, #163f36);
}

.pulse-card-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 4.5rem 0.85rem 0.85rem;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 12, 10, 0.45) 35%, rgba(8, 12, 10, 0.78) 100%);
}

.pulse-card-src {
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.12rem 0.4rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
}

.pulse-card-src.is-reddit { background: rgba(255, 69, 0, 0.75); color: #fff; }
.pulse-card-src.is-x { background: rgba(29, 155, 240, 0.75); color: #fff; }
.pulse-card-src.is-now { background: rgba(47, 122, 104, 0.85); color: #fff; }

.pulse-card-text {
    font-size: 0.95rem;
    font-weight: 650;
    line-height: 1.32;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
    word-break: break-word;
}

.pulse-card-tip {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: calc(100% + 8px);
    padding: 0.5rem 0.6rem;
    border-radius: 8px;
    background: #0b1210;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #d7e4de;
    font-size: 0.78rem;
    line-height: 1.35;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity .15s ease, transform .15s ease;
    z-index: 5;
}

.pulse-card-item:hover .pulse-card-tip {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    :root {
        --pulse-feed-size: 260px;
        --pulse-rates-size: 170px;
        --pulse-weather-size: 190px;
    }
}

@media (max-width: 991px) {
    .pulse-layout {
        grid-template-columns: 1fr;
    }

    .pulse-body {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .pulse-weather {
        width: 100%;
        max-height: none;
        order: 2;
    }

    .pulse-rates {
        max-height: none;
        overflow: visible;
    }

    .pulse-tape {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .pulse-tape-row {
        border-bottom: 1px solid rgba(18, 24, 22, 0.06);
    }

    .pulse-news {
        max-height: none;
    }

    .pulse-feed {
        width: 100%;
        min-height: 320px;
        max-height: 420px;
    }

    .pulse-feed .pulse-card-item {
        width: min(300px, 100%);
        height: min(300px, 70vw);
        flex-basis: min(300px, 70vw);
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .pulse-tab {
        font-size: 0.72rem;
        padding: 0.35rem 0.6rem;
    }
}

/* Мобильная оболочка /info и /info/more */
.pulse-page-mobile {
    padding: 0.55rem 0.7rem 1.1rem;
}

.pulse-mobile-login {
    margin: 0 0 0.75rem;
    padding: 0.75rem;
    border-radius: 12px;
    border: 1px solid var(--pulse-line);
    background: var(--pulse-card);
}

.pulse-mobile-login-title {
    margin: 0 0 0.55rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pulse-muted);
}

.pulse-mobile-login-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
}

.pulse-mobile-login-input {
    font: inherit;
    font-size: 1rem;
    border: 1px solid var(--pulse-line);
    border-radius: 10px;
    background: #fff;
    color: var(--pulse-ink);
    padding: 0.7rem 0.8rem;
    min-height: 44px;
}

.pulse-mobile-login-input:focus {
    outline: none;
    border-color: rgba(15, 118, 110, 0.55);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.pulse-mobile-login-btn {
    appearance: none;
    border: 0;
    border-radius: 10px;
    background: var(--pulse-teal);
    color: #fff;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 750;
    min-height: 44px;
    padding: 0.7rem 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.pulse-mobile-login-btn:hover {
    filter: brightness(0.96);
}

.pulse-mobile-login-error {
    margin-top: 0.45rem;
    color: #b42318;
    font-size: 0.8rem;
    font-weight: 650;
}

/* Форма на странице — скрыть дубль логина в мобильном меню */
body:has(.pulse-mobile-login) .gk-header-login-mobile {
    display: none !important;
}

.pulse-mobile-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.7rem;
}

.pulse-mobile-top .pulse-title {
    margin: 0.15rem 0 0.35rem;
}

.pulse-mobile-back {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--pulse-teal);
    text-decoration: none;
}

.pulse-mobile-back:hover {
    text-decoration: underline;
}

.pulse-mobile-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex: 0 0 auto;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 118, 110, 0.25);
    background: rgba(15, 118, 110, 0.08);
    color: var(--pulse-teal);
    font-size: 0.8rem;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
}

.pulse-mobile-more-link:hover {
    background: rgba(15, 118, 110, 0.14);
    color: #0b5f58;
}

.pulse-weather.is-mobile {
    width: 100%;
    max-width: none;
    max-height: none;
}

.pulse-weather.is-mobile .pulse-weather-days {
    max-height: none;
}

.pulse-more-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
}

.pulse-page-more .pulse-rates,
.pulse-page-more .pulse-news {
    max-height: none;
    overflow: visible;
}

@media (min-width: 768px) {
    .pulse-more-grid {
        grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
        align-items: start;
    }
}
