/* Project / content V2 shell. All rules are scoped to V2. */

#grid-content.hk-project-v2-shell {
    display: block;
    box-sizing: border-box;
    width: min(1200px, calc(100% - 48px));
    max-width: 1200px;
    margin: 0 auto;
    /* Breadcrumb row margin already separates from the nav — no extra top pad */
    padding: 0 0 72px;
}

#grid-content article.hk-project-v2 {
    display: block;
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100%;
    margin: 0;
    float: none;
    overflow: visible;
    color: #333333;
    font: 400 16px/1.5 "Source Sans Pro", Helvetica, Arial, sans-serif;
    text-overflow: clip;
}

.hk-project-v2 *,
.hk-project-v2 *::before,
.hk-project-v2 *::after {
    box-sizing: border-box;
}

.hk-project-v2 h1,
.hk-project-v2 h2,
.hk-project-v2 h3 {
    margin-top: 0;
    color: #333333;
    font-family: Lora, Georgia, "Times New Roman", serif;
    font-weight: 400;
    text-transform: none;
}

.hk-project-v2 h1 {
    margin-bottom: 24px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
}

.hk-project-v2 h2 {
    margin-bottom: 24px;
    font-size: 26px;
    line-height: 1.3;
}

.hk-project-v2 h3 {
    margin-bottom: 16px;
    font-size: 22px;
    line-height: 1.3;
}

.hk-project-v2 a {
    color: #333333;
}

.hk-project-v2 a:hover,
.hk-project-v2 a:focus {
    color: #e2001a;
}

.hk-project-v2__hero {
    --hk-media-bg: #f3f3f3;
    --hk-media-border: #dddddd;
    --hk-media-thumb-h: 72px;
    --hk-media-max-h: min(72vh, 680px);
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
    align-items: stretch;
    min-height: 0;
    margin-bottom: 32px;
    border: 1px solid var(--hk-media-border);
    background: #ffffff;
}

/* Image frame: sizes to the active slide; column may stretch for intro height. */
.hk-project-v2__media {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border-right: 1px solid var(--hk-media-border);
    background: var(--hk-media-bg);
}

.hk-project-v2__media .hk-swiper {
    position: relative;
    width: 100%;
    height: auto;
    max-width: none;
    display: flex;
    flex-direction: column;
    padding-right: 12px;
    padding-left: 12px;
    background: var(--hk-media-bg);
    box-sizing: border-box;
}

.hk-project-v2__media .hk-swiper-main {
    flex: 0 0 auto;
    min-height: 0;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: var(--hk-media-bg);
}

.hk-project-v2__media .hk-swiper-main .swiper-wrapper,
.hk-project-v2__media .hk-swiper-main .swiper-slide {
    height: 100%;
}

.hk-project-v2__media .hk-swiper-main .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hk-media-bg);
}

.hk-project-v2__media .hk-swiper--project .hk-swiper-main img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    object-fit: contain;
    object-position: center center;
}

.hk-project-v2__media .hk-swiper-thumbs {
    flex: 0 0 var(--hk-media-thumb-h);
    height: var(--hk-media-thumb-h);
    margin-top: 0;
    padding-top: 0;
    background: #ffffff;
    border-top: 1px solid var(--hk-media-border);
}

.hk-project-v2__media .hk-swiper-thumbs .swiper-slide {
    position: relative;
    width: calc(var(--hk-media-thumb-h) - 8px);
    height: calc(var(--hk-media-thumb-h) - 8px);
    margin-top: 4px;
    background: var(--hk-media-bg);
}

.hk-project-v2__media .hk-swiper-thumbs .swiper-slide img,
.single #grid-content article.hk-project-v2 .hk-swiper-thumbs .swiper-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    min-height: 0;
    object-fit: contain;
    object-position: center center;
}

.hk-project-v2__media .swiper-button-prev,
.hk-project-v2__media .swiper-button-next {
    border-radius: 0;
    background-color: rgba(51, 51, 51, 0.55);
}

.hk-project-v2__media .swiper-button-prev:hover,
.hk-project-v2__media .swiper-button-next:hover {
    background-color: rgba(226, 0, 26, 0.85);
}

.hk-project-v2__media .hk-swiper-play {
    border-radius: 0;
    background: rgba(51, 51, 51, 0.72);
}

.hk-project-v2__media .hk-swiper-play:hover {
    background: rgba(226, 0, 26, 0.88);
}

.hk-project-v2__intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(32px, 4vw, 56px);
}

.hk-project-v2__category {
    margin-bottom: 16px;
    color: #7a7a7a;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hk-project-v2__quick-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    margin: 0 0 28px;
}

.hk-project-v2__quick-meta > div {
    min-width: 92px;
    padding: 10px 12px;
    border: 1px solid #dddddd;
    background: #ffffff;
}

.hk-project-v2__quick-meta dt,
.hk-project-v2__summary dt {
    color: #7a7a7a;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hk-project-v2__quick-meta dd,
.hk-project-v2__summary dd {
    margin: 3px 0 0;
    color: #333333;
    font-weight: 600;
}

.hk-project-v2__author {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: auto;
    margin-bottom: 28px;
}

.hk-project-v2__avatar {
    display: block;
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: 50%;
    background: #f3f3f3;
}

.hk-project-v2__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hk-project-v2__author small {
    display: block;
    color: #7a7a7a;
    font-size: 12px;
}

.hk-project-v2__author a {
    font-weight: 600;
}

.hk-project-v2__actions {
    display: flex;
    gap: 12px;
    align-items: stretch;
    width: 100%;
}

.hk-project-v2__button,
.hk-project-v2 a.hk-project-v2__button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border: 1px solid #c90017;
    border-radius: 0;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.hk-project-v2__button--primary,
.hk-project-v2 a.hk-project-v2__button--primary {
    background: #e2001a;
    color: #ffffff;
}

.hk-project-v2 button,
.hk-project-v2 input[type="button"],
.hk-project-v2 input[type="submit"],
.hk-project-v2__bookmark,
.hk-project-v2 .hk-comment-pagination a {
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.hk-project-v2__button:hover,
.hk-project-v2__button:focus,
.hk-project-v2 a.hk-project-v2__button:hover,
.hk-project-v2 a.hk-project-v2__button:focus,
.hk-project-v2 button:hover,
.hk-project-v2 button:focus,
.hk-project-v2 input[type="button"]:hover,
.hk-project-v2 input[type="button"]:focus,
.hk-project-v2 input[type="submit"]:hover,
.hk-project-v2 input[type="submit"]:focus,
.hk-project-v2__bookmark:hover,
.hk-project-v2__bookmark:focus-within,
.hk-project-v2 .hk-comment-pagination a:hover,
.hk-project-v2 .hk-comment-pagination a:focus {
    border-color: var(--hk-red-hover);
    background-color: var(--hk-red-hover);
    color: #ffffff;
}

.hk-project-v2__bookmark:hover a,
.hk-project-v2__bookmark:focus-within a {
    color: #ffffff;
}

.hk-project-v2__button--primary:hover,
.hk-project-v2__button--primary:focus,
.hk-project-v2 a.hk-project-v2__button--primary:hover,
.hk-project-v2 a.hk-project-v2__button--primary:focus {
    border-color: var(--hk-red-hover);
    background: var(--hk-red-hover);
    color: #ffffff;
}

.hk-project-v2__bookmark {
    display: flex;
    min-width: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid #dddddd;
}

.hk-project-v2__bookmark > * {
    margin: 0;
}

.hk-project-v2__admin-links {
    margin-top: 16px;
    font-size: 12px;
}

.hk-project-v2__anchor-nav {
    position: sticky;
    z-index: 20;
    top: 0;
    display: flex;
    gap: 4px;
    margin-bottom: 48px;
    padding: 0 16px;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    /* Solid fill + containment: semi-transparent sticky layers repaint on every scroll frame */
    background: #ffffff;
    contain: layout style;
}

.admin-bar .hk-project-v2__anchor-nav {
    top: 32px;
}

.hk-project-v2__anchor-nav a {
    display: block;
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.hk-project-v2__anchor-nav a:hover,
.hk-project-v2__anchor-nav a:focus {
    background: #f3f3f3;
}

.hk-project-v2__layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: clamp(40px, 6vw, 72px);
    align-items: start;
}

.hk-project-v2__main {
    min-width: 0;
}

@media (min-width: 768px) {
    .hk-project-v2__main {
        padding-right: 24px;
        padding-left: 24px;
    }
}

.hk-project-v2__content {
    margin-bottom: 56px;
    font-size: 18px;
    line-height: 1.65;
}

.hk-project-v2__content > :first-child {
    margin-top: 0;
}

/* Cap large images; do not force width:100% (that upscales small thumbs). */
.hk-project-v2__content img {
    max-width: 100%;
    width: auto;
    height: auto;
}

/* WP replaces emoji with SVG <img> (viewBox only) — without this they fill the column. */
.hk-project-v2__content img.emoji {
    width: 1em;
    height: 1em;
    max-width: 1em;
    min-height: 0;
    display: inline;
    vertical-align: -0.1em;
}

.hk-project-v2__content a,
.hk-project-v2__step-copy a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hk-project-v2__section {
    scroll-margin-top: 100px;
    margin: 0 0 64px;
}

.hk-project-v2__supplies {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.hk-project-v2__card {
    padding: 24px;
    border: 1px solid #dddddd;
    background: #f3f3f3;
}

.hk-project-v2__card ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hk-project-v2__card li {
    position: relative;
    padding-left: 18px;
}

.hk-project-v2__card li::before {
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 6px;
    height: 6px;
    background: #e2001a;
    content: "";
}

.hk-project-v2__step {
    padding: 32px 0;
    border-top: 1px solid #dddddd;
}

.hk-project-v2__step:last-child {
    border-bottom: 1px solid #dddddd;
}

.hk-project-v2__step > header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.hk-project-v2__step > header h3 {
    margin: 0;
}

.hk-project-v2__step-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    background: #e2001a;
    color: #ffffff;
    font-weight: 600;
}

.hk-project-v2__step-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.hk-project-v2__step-images a,
.hk-project-v2__step-images img {
    display: block;
    max-width: 100%;
}

.hk-project-v2__step-images img {
    width: 100%;
    height: auto;
}

.hk-project-v2__step-copy {
    font-size: 17px;
    line-height: 1.65;
}

.hk-project-v2__step-copy > :last-child {
    margin-bottom: 0;
}

.hk-project-v2__sidebar {
    min-width: 0;
}

.hk-project-v2__summary {
    position: sticky;
    top: 96px;
    padding: 28px;
    border: 1px solid #dddddd;
    background: #ffffff;
    contain: layout style;
}

.admin-bar .hk-project-v2__summary {
    top: 128px;
}

.hk-project-v2__summary h2 {
    font-size: 22px;
}

.hk-project-v2__summary dl {
    margin: 0 0 24px;
}

.hk-project-v2__summary dl > div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-top: 1px solid #eeeeee;
}

.hk-project-v2__summary dl > div:last-child {
    border-bottom: 1px solid #eeeeee;
}

.hk-project-v2__summary dd {
    text-align: right;
}

.hk-project-v2__summary .hk-project-v2__button {
    width: 100%;
}

.hk-project-v2__share,
.hk-project-v2__tags {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #eeeeee;
}

.hk-project-v2__tags strong {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
}

.hk-project-v2__previous-next {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin: 64px 0 40px;
    padding: 24px;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}

.hk-project-v2__previous-next > div:last-child {
    margin-left: auto;
    text-align: right;
}

.hk-project-v2__community {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(32px, 5vw, 64px);
    scroll-margin-top: 100px;
    margin-top: 56px;
    margin-bottom: 64px;
    padding-bottom: 32px;
}

@media (min-width: 1025px) {
    .hk-project-v2__community {
        grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
        align-items: start;
    }
}

.hk-project-v2__community:not(:has(.hk-project-v2__related)) {
    grid-template-columns: 1fr;
}

.hk-project-v2__community textarea,
.hk-project-v2__community input {
    max-width: 100%;
}

/*
 * Comments + related “media” rows — previously lived in hk-legacy
 * (Bootstrap .media / .form-control / .btn). V2 skips legacy, so restore here.
 */
.hk-project-v2__comments #comments > .h3 {
    padding-right: 10px;
    padding-left: 10px;
}

.hk-project-v2__comments .comment-list {
    margin: 0;
    padding: 0 10px;
    list-style: none;
}

.hk-project-v2__comments .comment-list .children {
    margin: 0;
    padding: 0 0 0 24px;
    list-style: none;
}

.hk-project-v2__comments .comment-list > li,
.hk-project-v2__comments .comment-list .children > li {
    border-top: 1px solid #eeeeee;
    margin: 0;
    padding: 23px 3px 0;
    list-style: none;
    position: relative;
}

.hk-project-v2__comments .comment-list li.comment.bypostauthor {
    background: #fff5f6;
    border-bottom: 2px solid #e2001a;
}

.hk-project-v2__comments .comment-body.media {
    display: block;
    overflow: hidden;
    position: relative;
}

.hk-project-v2__comments .comment-author.media-body {
    overflow: hidden;
}

.hk-project-v2__comments .comment-list .avatar {
    float: left;
    width: 40px;
    height: 40px;
    margin: 0 10px 8px 0;
    padding: 2px;
    border: 1px solid #dddddd;
    border-radius: 0;
    background: #ffffff;
}

.hk-project-v2__comments .comment-list .avatar.pull-left {
    float: left !important;
}

.hk-project-v2__comments .comment-list li .reply {
    position: static !important;
    top: auto !important;
    right: auto !important;
    clear: both;
    margin: 10px 0 0;
}

.hk-project-v2__comments .comment-meta {
    margin-top: 8px;
    color: #999999;
    font-size: 12px;
}

.hk-project-v2__comments .comment-meta a {
    color: #7a7a7a;
    font-size: 13px;
}

.hk-project-v2__comments .comment-respond {
    background-color: #f3f3f3;
    padding: 20px;
    margin-bottom: 24px;
}

.hk-project-v2__comments .comment-respond .comment-reply-title {
    margin-top: 0;
}

.hk-project-v2__comments .comment-respond small #cancel-comment-reply-link {
    display: block;
    padding-top: 3px;
    color: #333333;
    font-size: 11px;
}

.hk-project-v2__comments .comment-form p {
    margin-bottom: 12px;
}

.hk-project-v2__comments .form-control {
    display: block;
    width: 100%;
    height: 35px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #555555;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.hk-project-v2__comments textarea.form-control {
    height: auto;
    min-height: 120px;
}

.hk-project-v2__comments .form-control:focus {
    border-color: #e2001a;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(226, 0, 26, 0.15);
}

.hk-project-v2__comments .form-control::-webkit-input-placeholder,
.hk-project-v2__comments .form-control::-moz-placeholder,
.hk-project-v2__comments .form-control:-ms-input-placeholder {
    color: #999999;
    opacity: 1;
}

.hk-project-v2__comments .btn {
    display: inline-block;
    margin-bottom: 0;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 0;
    background-image: none;
    user-select: none;
    text-decoration: none;
}

.hk-project-v2__comments .btn-default,
.hk-project-v2__comments .btn.btn-default {
    color: #ffffff;
    background-color: #e2001a;
    border-color: #c90017;
}

.hk-project-v2__comments .btn-default:hover,
.hk-project-v2__comments .btn-default:focus,
.hk-project-v2__comments .btn.btn-default:hover,
.hk-project-v2__comments .btn.btn-default:focus {
    color: #ffffff;
    background-color: var(--hk-red-hover, #c40016);
    border-color: #8b0010;
    text-decoration: none;
}

.hk-project-v2__comments .btn-xs,
.hk-project-v2__comments .btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
}

.hk-project-v2__comments .reply .hk-comment-reply,
.hk-project-v2__comments .reply .comment-reply-link {
    color: #333333;
}

.hk-project-v2 .comment-form-author > label,
.hk-project-v2 .comment-form-email > label,
.hk-project-v2 .comment-form-url > label,
.hk-project-v2 .comment-form-comment > label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.hk-project-v2__related > h2 {
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #dddddd;
}

.hk-project-v2__related .hk-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
}

.hk-project-v2__related .hk-related-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #333333;
    text-decoration: none;
}

.hk-project-v2__related .hk-related-item:hover,
.hk-project-v2__related .hk-related-item:focus {
    color: #e2001a;
    text-decoration: none;
}

.hk-project-v2__related .hk-related-item__media {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: #eeeeee;
}

.hk-project-v2__related .hk-related-item__media img,
.hk-project-v2__related .img-related {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    object-fit: cover;
}

.hk-project-v2__related .hk-related-item__title {
    display: block;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
}

.hk-project-v2 .hk-comment-pagination {
    clear: both;
    margin: 24px 0;
}

.hk-project-v2 .hk-comment-pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hk-project-v2 .hk-comment-pagination li {
    margin: 0;
    padding: 0;
}

.hk-project-v2 .hk-comment-pagination a,
.hk-project-v2 .hk-comment-pagination span {
    display: inline-flex;
    min-width: 38px;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 7px 11px;
    border: 1px solid #dddddd;
    text-decoration: none;
}

.hk-project-v2 .hk-comment-pagination .current {
    border-color: #e2001a;
    background: #e2001a;
    color: #ffffff;
}

.hk-project-v2__mobile-actions {
    display: none;
}

@media (max-width: 1024px) {
    .hk-project-v2__hero {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
        min-height: 0;
    }

    .hk-project-v2__media {
        min-height: 0;
    }

    .hk-project-v2__layout {
        grid-template-columns: minmax(0, 1.8fr) minmax(240px, 0.9fr);
        gap: 36px;
    }
}

@media (max-width: 767px) {
    #grid-content.hk-project-v2-shell {
        width: 100%;
        margin: 0;
        padding: 12px 0 92px;
        transform: none;
    }

    .hk-project-v2__layout,
    .hk-project-v2__previous-next,
    .hk-project-v2__community,
    .hk-project-v2 > .adsense {
        margin-right: var(--hk-gutter-mobile, 12px);
        margin-left: var(--hk-gutter-mobile, 12px);
    }

    .hk-project-v2__hero {
        --hk-media-thumb-h: 64px;
        --hk-media-max-h: none;
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
        border-right: 0;
        border-left: 0;
    }

    .hk-project-v2__media {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--hk-media-border, #dddddd);
    }

    .hk-project-v2__media .hk-swiper {
        padding-right: 8px;
        padding-left: 8px;
    }

    .hk-project-v2__media .hk-swiper--project .hk-swiper-main img {
        width: 100%;
        max-height: none;
    }

    .hk-project-v2__intro {
        padding: 28px 20px 32px;
    }

    .hk-project-v2 h1 {
        font-size: 32px;
    }

    .hk-project-v2__actions {
        align-items: center;
    }

    .hk-project-v2__anchor-nav {
        top: 0;
        margin-bottom: 36px;
        padding: 0 12px;
        overflow-x: auto;
        white-space: nowrap;
    }

    .admin-bar .hk-project-v2__anchor-nav {
        top: 46px;
    }

    .hk-project-v2__anchor-nav a {
        padding: 13px 10px;
    }

    .hk-project-v2__layout {
        display: block;
    }

    .hk-project-v2__content {
        font-size: 17px;
    }

    .hk-project-v2__supplies,
    .hk-project-v2__step-images,
    .hk-project-v2__community {
        grid-template-columns: 1fr;
    }

    .hk-project-v2__sidebar {
        margin-top: 48px;
    }

    .hk-project-v2__summary {
        position: static;
    }

    .hk-project-v2__previous-next {
        flex-direction: column;
        margin-top: 48px;
        padding-right: 0;
        padding-left: 0;
    }

    .hk-project-v2__previous-next > div:last-child {
        margin-left: 0;
        text-align: left;
    }

    .hk-project-v2__community {
        display: grid;
    }

    .hk-project-v2__mobile-actions {
        position: fixed;
        z-index: 1000;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 8px;
        align-items: center;
        padding: 10px 12px;
        border-top: 1px solid #dddddd;
        background: #ffffff;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    }

    .hk-project-v2__mobile-actions > a:first-child {
        text-align: center;
        text-decoration: none;
    }

    /* Clear fixed bottom bar so comment paging / last comments stay readable */
    .hk-project-v2 {
        padding-bottom: 96px;
    }

    .hk-project-v2__community {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }

    .hk-project-v2__comments #comments {
        padding-bottom: 16px;
    }
}
