.post-hero {
    display: flex;
    flex-direction: column;
}

.post-hero__top {
    background: var(--color-white);
    padding: 88px 0 24px;
}

.post-hero__top-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.post-hero__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
}

.post-hero__breadcrumbs a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.post-hero__breadcrumbs a:hover {
    color: var(--color-text);
}

.post-hero__breadcrumbs span {
    color: var(--color-text-secondary);
}

.post-hero__breadcrumbs span:last-child {
    color: var(--color-text);
}

.post-hero__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-hero__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-hero__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.post-hero__avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-hero__avatar span {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
}

.post-hero__author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.post-hero__author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
}

.post-hero__date {
    font-size: 12px;
    color: var(--color-text-secondary);
}

.post-hero__share {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.post-hero__share:hover {
    opacity: 0.85;
}

.post-hero__image {
    position: relative;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.post-hero__image-wrapper {
    position: relative;
    width: 100%;
    height: 540px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.post-hero__image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

.post-hero__transport {
    position: absolute;
    top: 28px;
    left: 40px;
    width: 40px;
    height: 40px;
    background: rgba(33, 46, 56, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.post-hero__transport img {
    filter: brightness(0) invert(1);
}

.post-hero__overlay-content {
    position: absolute;
    top: 132px;
    left: 24px;
    right: 24px;
    z-index: 1;
    padding-left: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.post-hero__title {
    font-size: 44px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
    margin: 0;
    max-width: 568px;
}

.post-hero__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--color-white);
    font-size: 16px;
    flex-wrap: wrap;
}

.post-hero__meta > span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-hero__meta img {
    filter: brightness(0) invert(1);
}

.post-hero__reactions {
    background: var(--color-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}

.post-hero__reactions-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.post-hero__reaction {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
}

.post-hero__reaction span {
    font-size: 16px;
    color: var(--color-text);
}

.post-plan {
    padding: 80px 24px;
    background: var(--color-white);
}

.post-plan__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.post-plan__tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.post-plan__tab {
    padding: 12px 16px;
    background: var(--color-bg);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-family);
}

.post-plan__tab--active {
    background: var(--color-primary);
    color: var(--color-white);
}

.post-plan__tab:hover:not(.post-plan__tab--active) {
    background: var(--color-border);
}

.post-plan__heading {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 40px;
}

.post-plan__body {
    display: flex;
    gap: 40px;
}

.post-plan__sidebar {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.post-plan__day-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    padding: 24px;
}

.post-plan__point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text);
}

.post-plan__point-icon {
    flex-shrink: 0;
}

.post-plan__text {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.6;
}

.post-plan__image {
    width: 100%;
    margin: 12px 0;
}

.post-plan__image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.post-plan__save-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    background: var(--color-accent);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    transition: opacity 0.2s;
}

.post-plan__save-btn:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    /* ====== HERO TOP ====== */
    .post-hero__top {
        padding: 64px 0 12px;
    }

    .post-hero__top-container {
        padding: 0 16px;
        gap: 12px;
    }

    .post-hero__breadcrumbs {
        font-size: 13px;
        gap: 6px;
    }

    .post-hero__header {
        gap: 8px;
    }

    .post-hero__author {
        gap: 8px;
    }

    .post-hero__avatar {
        width: 40px;
        height: 40px;
    }

    .post-hero__avatar span {
        font-size: 15px;
    }

    .post-hero__author-name {
        font-size: 13px;
    }

    .post-hero__date {
        font-size: 12px;
    }

    .post-hero__share {
        padding: 8px;
        gap: 0;
    }

    .post-hero__share span {
        display: none;
    }

    .post-hero__share img {
        width: 20px;
        height: 20px;
    }

    /* ====== HERO IMAGE — full-bleed ====== */
    .post-hero__image {
        padding: 0;
    }

    .post-hero__image-wrapper {
        height: 280px;
        border-radius: 0;
    }

    .post-hero__transport {
        top: 16px;
        left: 16px;
        width: 40px;
        height: 40px;
    }

    .post-hero__overlay-content {
        top: auto;
        bottom: 0;
        left: 16px;
        right: 16px;
        padding-left: 0;
        padding-bottom: 20px;
        gap: 8px;
    }

    .post-hero__title {
        font-size: 22px;
        max-width: 100%;
        line-height: 1.3;
    }

    .post-hero__meta {
        gap: 12px;
        font-size: 13px;
    }

    .post-hero__meta img {
        width: 16px;
        height: 16px;
    }

    /* ====== REACTIONS ====== */
    .post-hero__reactions {
        padding: 12px 0;
    }

    .post-hero__reactions-container {
        padding: 0 16px;
        gap: 8px;
    }

    .post-hero__reaction {
        padding: 4px 8px;
        gap: 4px;
    }

    .post-hero__reaction img {
        width: 20px;
        height: 20px;
    }

    .post-hero__reaction span {
        font-size: 13px;
    }

    /* ====== TRIP PLAN ====== */
    .post-plan {
        padding: 40px 16px;
    }

    .post-plan__tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-bottom: 20px;
        gap: 8px;
    }

    .post-plan__tabs::-webkit-scrollbar {
        display: none;
    }

    .post-plan__tab {
        padding: 8px 12px;
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .post-plan__heading {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .post-plan__body {
        flex-direction: column;
        gap: 24px;
    }

    .post-plan__sidebar {
        width: 100%;
        gap: 24px;
    }

    .post-plan__day-panel {
        padding: 16px;
        gap: 12px;
    }

    .post-plan__point {
        font-size: 13px;
        gap: 8px;
    }

    .post-plan__point-icon {
        width: 20px;
        height: 20px;
    }

    .post-plan__text {
        font-size: 14px;
    }

    .post-plan__save-btn {
        height: 44px;
        font-size: 15px;
    }
}
