/*
 * Lost in Manila — Place Hub
 * Compact destination identity + explorer activity + trip utilities.
 */

:root {
    --lim-hub-bg: #f3f5f4;
    --lim-hub-card: #ffffff;
    --lim-hub-border: #dfe6e2;
    --lim-hub-text: #17352d;
    --lim-hub-muted: #6b7772;
    --lim-hub-green: #164f40;
    --lim-hub-green-dark: #103c32;
    --lim-hub-orange: #e8772f;
    --lim-hub-shadow: 0 10px 34px rgba(20, 55, 45, 0.08);
}

.lim-place-hub {
    background: var(--lim-hub-bg);
    border-top: 1px solid var(--lim-hub-border);
}

.lim-place-hub-container {
    max-width: 1760px;
    padding: 24px;
}

.lim-place-hub-grid {
    display: grid;
    grid-template-columns:
        minmax(270px, 330px)
        minmax(440px, 1fr)
        minmax(290px, 360px);
    gap: 22px;
    align-items: start;
}

.lim-place-identity-column,
.lim-place-utility-column {
    position: sticky;
    top: 82px;
}

.lim-place-identity-card,
.lim-place-feed-card,
.lim-place-utility-card {
    border: 1px solid var(--lim-hub-border);
    border-radius: 18px;
    background: var(--lim-hub-card);
    box-shadow: var(--lim-hub-shadow);
    overflow: hidden;
}

.lim-place-cover {
    --lim-cover-image: none;
    position: relative;
    min-height: 220px;
    background:
        linear-gradient(
            180deg,
            rgba(7, 24, 19, 0.02),
            rgba(7, 24, 19, 0.2)
        ),
        var(--lim-cover-image);
    background-position: center;
    background-size: cover;
}

.lim-place-cover::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(8, 31, 25, 0.28)
        );
    pointer-events: none;
}

.lim-place-cover-empty {
    display: grid;
    place-items: center;
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(237, 153, 78, 0.42),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #194f41,
            #102f28
        );
}

.lim-place-cover-placeholder {
    display: grid;
    justify-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 700;
}

.lim-place-cover-placeholder i {
    font-size: 2rem;
}

.lim-place-identity-body {
    padding: 20px;
}

.lim-place-category-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.lim-place-category-row a,
.lim-place-category-row span {
    display: inline-flex;
    padding: 6px 9px;
    border: 1px solid #d6e1dc;
    border-radius: 999px;
    color: #43645a;
    background: #f6faf8;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.035em;
    text-decoration: none;
    text-transform: uppercase;
}

.lim-place-category-row .primary {
    color: #ffffff;
    border-color: var(--lim-hub-green);
    background: var(--lim-hub-green);
}

.lim-place-identity-body h1 {
    margin: 0;
    color: var(--lim-hub-text);
    font-size: clamp(1.7rem, 2.4vw, 2.35rem);
    font-weight: 850;
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.lim-place-location {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 12px;
    color: var(--lim-hub-muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.lim-place-location i {
    margin-top: 2px;
    color: var(--lim-hub-orange);
}

.lim-place-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--lim-hub-muted);
    font-size: 0.86rem;
}

.lim-place-rating strong {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--lim-hub-text);
    font-size: 1rem;
}

.lim-place-rating i {
    color: #f5ac2d;
}

.lim-place-main-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 18px;
}

.lim-place-action {
    appearance: none;
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 11px;
    border: 1px solid #d8e2de;
    border-radius: 11px;
    color: #254c40;
    background: #f8faf9;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 780;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 150ms ease,
        background-color 150ms ease,
        border-color 150ms ease;
}

.lim-place-action:hover {
    color: #173c31;
    border-color: #b9cbc4;
    background: #eef5f2;
    transform: translateY(-1px);
}

.lim-place-action-primary {
    grid-column: 1 / -1;
    color: #ffffff;
    border-color: var(--lim-hub-green);
    background: var(--lim-hub-green);
}

.lim-place-action-primary:hover {
    color: #ffffff;
    border-color: var(--lim-hub-green-dark);
    background: var(--lim-hub-green-dark);
}

.lim-place-action.is-saved {
    color: #6c421b;
    border-color: #f2c995;
    background: #fff1df;
}

.lim-place-quick-details {
    display: grid;
    gap: 2px;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid #e5ebe8;
}

.lim-place-quick-detail {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 9px;
    align-items: start;
    padding: 8px 0;
    color: #39564d;
    font-size: 0.84rem;
    line-height: 1.45;
    text-decoration: none;
}

a.lim-place-quick-detail:hover {
    color: var(--lim-hub-green);
}

.lim-place-quick-detail i {
    margin-top: 2px;
    color: var(--lim-hub-green);
}

.lim-place-type-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.lim-place-type-list span {
    padding: 5px 8px;
    border-radius: 999px;
    color: #60716b;
    background: #f0f4f2;
    font-size: 0.69rem;
    font-weight: 700;
}

.lim-place-feed-column {
    min-width: 0;
}

.lim-place-feed-card {
    margin-bottom: 18px;
}

.lim-place-feed-card-header {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 16px 18px;
    border-bottom: 1px solid #e9eeeb;
}

.lim-place-feed-avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #ffffff;
    background: var(--lim-hub-green);
    font-size: 1.1rem;
}

.lim-place-feed-card-header div:last-child {
    display: grid;
    gap: 2px;
}

.lim-place-feed-card-header strong {
    color: var(--lim-hub-text);
    font-size: 0.94rem;
}

.lim-place-feed-card-header span {
    color: var(--lim-hub-muted);
    font-size: 0.76rem;
}

.lim-place-feed-content {
    padding: 22px;
}

.lim-place-feed-kicker,
.lim-place-utility-kicker,
.lim-place-activity-heading > div > span {
    display: block;
    margin-bottom: 5px;
    color: var(--lim-hub-orange);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lim-place-feed-content h2,
.lim-place-utility-card h2,
.lim-place-activity-heading h2 {
    margin: 0;
    color: var(--lim-hub-text);
    font-weight: 820;
    letter-spacing: -0.025em;
}

.lim-place-feed-content h2 {
    font-size: 1.55rem;
}

.lim-place-feed-content p {
    margin: 12px 0 0;
    color: #4f615b;
    font-size: 1rem;
    line-height: 1.75;
}

.lim-place-activity-heading {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: end;
    margin: 24px 4px 14px;
}

.lim-place-activity-heading h2 {
    font-size: 1.35rem;
}

.lim-place-activity-heading p {
    max-width: 260px;
    margin: 0;
    color: var(--lim-hub-muted);
    font-size: 0.82rem;
    line-height: 1.45;
    text-align: right;
}

.lim-place-community-feed .pup-section {
    padding: 0;
}

.lim-place-community-feed .pup-hero-grid,
.lim-place-community-feed .pup-empty-hero,
.lim-place-community-feed .pup-heading-row,
.lim-place-community-feed .pup-community-grid,
.lim-place-community-feed .pup-no-community {
    border: 1px solid var(--lim-hub-border);
    border-radius: 18px;
    background: var(--lim-hub-card);
    box-shadow: var(--lim-hub-shadow);
}

.lim-place-community-feed .pup-hero-grid {
    max-height: 440px;
    overflow: hidden;
}

.lim-place-community-feed .pup-hero-photo {
    min-height: 180px;
}

.lim-place-community-feed .pup-heading-row {
    margin-top: 16px;
    padding: 18px 20px;
}

.lim-place-community-feed .pup-community-grid {
    margin-top: 14px;
    padding: 15px;
}

.lim-place-community-feed .pup-photo-card {
    border-radius: 14px;
}

.lim-place-community-feed .pup-no-community {
    margin-top: 14px;
    padding: 18px;
}

.lim-place-utility-stack {
    display: grid;
    gap: 16px;
}

.lim-place-utility-card {
    padding: 18px;
}

.lim-place-plan-card {
    color: #ffffff;
    border-color: var(--lim-hub-green);
    background:
        radial-gradient(
            circle at 88% 10%,
            rgba(246, 150, 68, 0.34),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            var(--lim-hub-green),
            var(--lim-hub-green-dark)
        );
}

.lim-place-plan-card .lim-place-utility-kicker {
    color: #ffd6a6;
}

.lim-place-plan-card h2 {
    color: #ffffff;
    font-size: 1.35rem;
    line-height: 1.15;
}

.lim-place-plan-card p {
    margin: 10px 0 15px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
    line-height: 1.55;
}

.lim-place-plan-button {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 11px;
    color: var(--lim-hub-green);
    background: #ffffff;
    font-size: 0.86rem;
    font-weight: 820;
    text-decoration: none;
}

.lim-place-plan-button:hover {
    color: var(--lim-hub-green-dark);
    background: #fff8ee;
}

.lim-place-secondary-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
}

.lim-place-secondary-link:hover {
    color: #ffffff;
}

.lim-place-utility-heading {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: start;
    margin-bottom: 12px;
}

.lim-place-utility-heading h2,
.lim-place-utility-card > h2 {
    font-size: 1.13rem;
    line-height: 1.2;
}

.lim-place-utility-heading a {
    color: var(--lim-hub-green);
    font-size: 0.77rem;
    font-weight: 800;
    text-decoration: none;
}

.lim-place-utility-card #place-map {
    width: 100%;
    height: 235px;
    border-radius: 12px;
    overflow: hidden;
}

.lim-place-contact-links {
    display: grid;
    gap: 4px;
    margin-top: 12px;
}

.lim-place-contact-links a {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 9px;
    align-items: center;
    padding: 9px;
    border-radius: 10px;
    color: #36564c;
    text-decoration: none;
}

.lim-place-contact-links a:hover {
    background: #f1f6f3;
}

.lim-place-contact-links i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--lim-hub-green);
    background: #e9f3ef;
}

.lim-place-contact-links span {
    display: grid;
    gap: 1px;
    font-size: 0.83rem;
    font-weight: 750;
}

.lim-place-contact-links small {
    color: var(--lim-hub-muted);
    font-size: 0.67rem;
    font-weight: 650;
}

.lim-place-travel-note {
    margin: 14px 0 0;
    padding-top: 13px;
    border-top: 1px solid #e5ebe8;
    color: var(--lim-hub-muted);
    font-size: 0.74rem;
    line-height: 1.5;
}

.lim-place-utility-card .lim-sponsored-links {
    margin: 0;
}

.lim-place-nearby-section {
    padding-top: 44px;
    padding-bottom: 44px;
}

.lim-share-confirmation {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 1090;
    max-width: calc(100vw - 32px);
    padding: 12px 18px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(17, 48, 40, 0.96);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
    font-size: 0.92rem;
    font-weight: 700;
    transform: translateX(-50%);
}

@media (max-width: 1199.98px) {
    .lim-place-hub-grid {
        grid-template-columns: 300px minmax(0, 1fr);
    }

    .lim-place-utility-column {
        position: static;
        grid-column: 2;
    }

    .lim-place-utility-stack {
        grid-template-columns: 1fr 1fr;
    }

    .lim-place-utility-stack > :first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 899.98px) {
    .lim-place-hub-container {
        padding: 16px;
    }

    .lim-place-hub-grid {
        grid-template-columns: 1fr;
    }

    .lim-place-identity-column,
    .lim-place-utility-column {
        position: static;
        grid-column: auto;
    }

    .lim-place-identity-card {
        display: grid;
        grid-template-columns: minmax(220px, 38%) 1fr;
    }

    .lim-place-cover {
        min-height: 100%;
    }

    .lim-place-utility-stack {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 639.98px) {
    .lim-place-hub-container {
        padding: 10px;
    }

    .lim-place-hub-grid {
        gap: 14px;
    }

    .lim-place-identity-card {
        display: block;
        border-radius: 14px;
    }

    .lim-place-cover {
        min-height: 210px;
    }

    .lim-place-identity-body {
        padding: 17px;
    }

    .lim-place-main-actions {
        grid-template-columns: 1fr 1fr;
    }

    .lim-place-activity-heading {
        display: block;
        margin-inline: 2px;
    }

    .lim-place-activity-heading p {
        margin-top: 6px;
        text-align: left;
    }

    .lim-place-utility-stack {
        grid-template-columns: 1fr;
    }

    .lim-place-community-feed .pup-hero-grid {
        max-height: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lim-place-action {
        transition: none;
    }
}


/* PLACE PHOTO HUB V2 START */

.lim-place-sidebar-photos {
    margin-top: 16px;
    padding: 15px;
    border: 1px solid var(--lim-hub-border);
    border-radius: 18px;
    background: var(--lim-hub-card);
    box-shadow: var(--lim-hub-shadow);
}

.lim-place-sidebar-photos-heading {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.lim-place-sidebar-photos-heading > div {
    display: grid;
    gap: 2px;
}

.lim-place-sidebar-photos-heading span {
    color: var(--lim-hub-orange);
    font-size: 0.67rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lim-place-sidebar-photos-heading strong {
    color: var(--lim-hub-text);
    font-size: 0.95rem;
}

.lim-place-sidebar-photos-heading a,
.lim-place-activity-all-photos {
    color: var(--lim-hub-green);
    font-size: 0.76rem;
    font-weight: 800;
    text-decoration: none;
}

.lim-place-sidebar-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 72px;
    gap: 4px;
    overflow: hidden;
    border-radius: 12px;
}

.lim-place-sidebar-photo-grid a {
    position: relative;
    display: block;
    min-width: 0;
    overflow: hidden;
    background: #e8eeeb;
}

.lim-place-sidebar-photo-main {
    grid-column: span 2;
    grid-row: span 2;
}

.lim-place-sidebar-photo-grid img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 170ms ease;
}

.lim-place-sidebar-photo-grid a:hover img {
    transform: scale(1.04);
}

.lim-place-photo-more {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(10, 39, 32, 0.68);
    font-size: 1rem;
    font-weight: 850;
}

.lim-place-sidebar-photo-empty {
    min-height: 130px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    border-radius: 12px;
    color: #567168;
    background: #edf3f0;
    font-size: 0.82rem;
    font-weight: 750;
    text-align: center;
    text-decoration: none;
}

.lim-place-sidebar-photo-empty i {
    color: var(--lim-hub-green);
    font-size: 1.5rem;
}

.lim-place-sidebar-photo-button {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 10px;
    border: 1px solid #d6e1dc;
    border-radius: 10px;
    color: var(--lim-hub-green);
    background: #f7faf8;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
}

.lim-place-sidebar-photo-button:hover {
    color: var(--lim-hub-green-dark);
    background: #edf5f1;
}

.lim-place-activity-feed {
    display: grid;
    gap: 16px;
}

.lim-place-contribution-prompt,
.lim-place-activity-post,
.lim-place-activity-empty {
    border: 1px solid var(--lim-hub-border);
    border-radius: 18px;
    background: var(--lim-hub-card);
    box-shadow: var(--lim-hub-shadow);
}

.lim-place-contribution-prompt {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 15px 17px;
}

.lim-place-contribution-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--lim-hub-green);
}

.lim-place-contribution-prompt > div:nth-child(2) {
    display: grid;
    gap: 2px;
}

.lim-place-contribution-prompt strong {
    color: var(--lim-hub-text);
    font-size: 0.9rem;
}

.lim-place-contribution-prompt span {
    color: var(--lim-hub-muted);
    font-size: 0.76rem;
}

.lim-place-contribution-prompt button,
.lim-place-contribution-prompt > a {
    appearance: none;
    padding: 9px 12px;
    border: 0;
    border-radius: 9px;
    color: #ffffff;
    background: var(--lim-hub-green);
    font: inherit;
    font-size: 0.76rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.lim-place-activity-post {
    overflow: hidden;
}

.lim-place-activity-post-header {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 15px 17px;
}

.lim-place-activity-avatar,
.lim-place-activity-avatar-placeholder {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 50%;
}

.lim-place-activity-avatar {
    object-fit: cover;
}

.lim-place-activity-avatar-placeholder {
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--lim-hub-green);
    font-weight: 850;
}

.lim-place-activity-author {
    min-width: 0;
    flex: 1;
}

.lim-place-activity-author > div {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    color: #5d6c67;
    font-size: 0.84rem;
}

.lim-place-activity-author a,
.lim-place-activity-author strong {
    color: var(--lim-hub-text);
    font-weight: 820;
    text-decoration: none;
}

.lim-place-activity-author small {
    display: block;
    margin-top: 2px;
    color: var(--lim-hub-muted);
    font-size: 0.7rem;
}

.lim-place-activity-featured {
    padding: 5px 8px;
    border-radius: 999px;
    color: #8a4d18;
    background: #fff0df;
    font-size: 0.65rem;
    font-weight: 850;
    text-transform: uppercase;
}

.lim-place-activity-caption {
    margin: 0;
    padding: 0 17px 14px;
    color: #40554e;
    font-size: 0.92rem;
    line-height: 1.58;
}

.lim-place-activity-image {
    display: block;
    max-height: 640px;
    overflow: hidden;
    background: #edf1ef;
}

.lim-place-activity-image img {
    width: 100%;
    max-height: 640px;
    display: block;
    object-fit: contain;
    margin: auto;
    background: #18231f;
}

.lim-place-activity-post-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding: 11px 16px;
    border-top: 1px solid #e6ece9;
}

.lim-place-activity-likes {
    display: flex;
    gap: 6px;
    align-items: center;
    color: var(--lim-hub-muted);
    font-size: 0.75rem;
}

.lim-place-activity-likes i {
    color: #dd604f;
}

.lim-place-activity-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lim-place-activity-actions > a,
.lim-place-activity-actions > details > summary {
    color: var(--lim-hub-green);
    font-size: 0.74rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.lim-place-activity-actions .pup-vote-button {
    padding: 7px 10px;
}

.lim-place-activity-empty {
    min-height: 190px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    padding: 28px;
    color: var(--lim-hub-muted);
    text-align: center;
}

.lim-place-activity-empty > i {
    color: var(--lim-hub-green);
    font-size: 2rem;
}

.lim-place-activity-empty > div {
    display: grid;
    gap: 4px;
}

.lim-place-activity-empty strong {
    color: var(--lim-hub-text);
}

.lim-place-activity-empty span {
    max-width: 430px;
    font-size: 0.82rem;
}

.lim-place-activity-empty a {
    margin-top: 7px;
    color: var(--lim-hub-green);
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 899.98px) {
    .lim-place-sidebar-photos {
        margin-top: 0;
    }
}

@media (max-width: 639.98px) {
    .lim-place-contribution-prompt {
        grid-template-columns: 40px 1fr;
    }

    .lim-place-contribution-prompt button,
    .lim-place-contribution-prompt > a {
        grid-column: 1 / -1;
        text-align: center;
    }

    .lim-place-activity-post-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* PLACE PHOTO HUB V2 END */


/* PLACE HUB CLEANUP V1 START */

/*
 * Planning belongs in the right utility column.
 * The remaining left actions now form a compact three-button row.
 */
.lim-place-main-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lim-place-main-actions .lim-place-action {
    min-width: 0;
    padding-inline: 7px;
}

/*
 * The activity heading no longer needs space reserved for a duplicate link.
 */
.lim-place-activity-heading {
    align-items: start;
    justify-content: flex-start;
}

/*
 * Empty activity should communicate status without occupying most
 * of the first screen.
 */
.lim-place-activity-empty {
    min-height: 145px;
    padding: 22px;
}

/*
 * Nearby adventures should follow the hub more naturally.
 */
.lim-place-nearby-section {
    padding-top: 28px;
}

/*
 * The left details now contain only location information.
 */
.lim-place-quick-details {
    gap: 0;
}

/*
 * A six-image preview remains balanced even after the cover image
 * is excluded from the preview set.
 */
.lim-place-sidebar-photo-grid {
    grid-auto-rows: 68px;
}

@media (max-width: 639.98px) {
    .lim-place-main-actions {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lim-place-main-actions .lim-place-action {
        font-size: 0.75rem;
    }

    .lim-place-activity-empty {
        min-height: 130px;
    }
}

/* PLACE HUB CLEANUP V1 END */
