.home-renewal {
    --hr-navy: #233b62;
    --hr-navy-deep: #172b4c;
    --hr-blue: #597fad;
    --hr-blue-soft: #eaf0f7;
    --hr-coral: #df6870;
    --hr-ink: #172033;
    --hr-muted: #6d7480;
    --hr-line: #e2e6eb;
    --hr-paper: #f6f7f8;
    --hr-white: #fff;
    color: var(--hr-ink);
    background: var(--hr-white);
    font-family: "Noto Sans KR", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    overflow: hidden;
}

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

.home-renewal a {
    color: inherit;
    text-decoration: none;
}

.home-renewal button,
.home-renewal summary {
    font: inherit;
}

.home-renewal img {
    display: block;
    width: 100%;
}

.home-renewal h1,
.home-renewal h2,
.home-renewal h3,
.home-renewal p,
.home-renewal ol,
.home-renewal ul {
    padding: 0;
    margin: 0;
}

.home-renewal li {
    list-style: none;
}

.hr-shell {
    width: min(1440px, calc(100% - 80px));
    margin: 0 auto;
}

.hr-section {
    padding: 112px 0;
}

.hr-eyebrow {
    color: var(--hr-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
}

.hr-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 48px;
}

.hr-section__head h2,
.hr-mokjang__head h2 {
    margin-top: 10px;
    color: var(--hr-ink);
    font-family: "S-CoreDream", "Noto Sans KR", sans-serif;
    font-size: clamp(34px, 3vw, 52px);
    font-weight: 600;
    letter-spacing: -.055em;
    line-height: 1.22;
}

.hr-section__head > p {
    max-width: 470px;
    color: var(--hr-muted);
    font-size: 17px;
    line-height: 1.75;
}

.hr-section__head--compact {
    align-items: flex-end;
}

.hr-section__head--stacked {
    align-items: flex-end;
    margin-bottom: 28px;
}

.hr-text-link {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--hr-ink);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.hr-media-menu {
    position: relative;
    z-index: 6;
}

.hr-media-menu summary {
    list-style: none;
    cursor: pointer;
}

.hr-media-menu summary::-webkit-details-marker {
    display: none;
}

.hr-media-menu summary > span {
    color: var(--hr-blue);
    transition: transform .2s ease;
}

.hr-media-menu[open] summary > span {
    transform: rotate(180deg);
}

.hr-media-menu > div {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 260px;
    padding: 9px;
    border: 1px solid var(--hr-line);
    border-radius: 12px;
    background: var(--hr-white);
    box-shadow: 0 18px 45px rgba(18, 35, 59, .14);
    animation: hr-media-menu-in .2s ease both;
}

.hr-media-menu > div a {
    display: flex;
    min-height: 45px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 12px;
    border-radius: 8px;
    color: #455267;
    font-size: 14px;
    font-weight: 650;
    transition: color .2s ease, background-color .2s ease;
}

.hr-media-menu > div a:hover,
.hr-media-menu > div a:focus-visible {
    color: var(--hr-white);
    background: var(--hr-navy);
}

.hr-media-menu > div i {
    color: var(--hr-blue);
    font-size: 11px;
    font-style: normal;
}

.hr-media-menu > div a:hover i,
.hr-media-menu > div a:focus-visible i {
    color: var(--hr-white);
}

@keyframes hr-media-menu-in {
    from { opacity: 0; transform: translateY(-7px); }
    to { opacity: 1; transform: translateY(0); }
}

.hr-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 0 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
}

.hr-button--light {
    color: var(--hr-navy);
    background: var(--hr-white);
}

.hr-button--outline {
    color: var(--hr-white);
    border: 1px solid rgba(255, 255, 255, .45);
}

.hr-empty {
    display: flex;
    min-height: 180px;
    align-items: center;
    justify-content: center;
    padding: 30px;
    color: var(--hr-muted);
    text-align: center;
}

.hr-empty--dark {
    color: rgba(255, 255, 255, .66);
}

.hr-hero {
    padding: 36px 0 0;
    background: linear-gradient(180deg, #f4f6f8 0, #fff 100%);
}

.hr-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.72fr) minmax(380px, .78fr);
    gap: 24px;
    align-items: stretch;
}

.hr-banner,
.hr-sermon {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 24px;
}

.hr-banner {
    width: 100%;
    min-height: 430px;
    color: var(--hr-white);
    background: var(--hr-navy-deep);
}

.hr-banner__viewport,
.hr-banner__slide,
.hr-banner__slide > a,
.hr-banner__slide picture {
    width: 100%;
    height: 100%;
}

.hr-banner__viewport {
    position: absolute;
    inset: 0;
}

.hr-banner__slide {
    position: absolute;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity .55s ease, visibility .55s ease;
}

.hr-banner__slide.is-active {
    z-index: 1;
    visibility: visible;
    opacity: 1;
}

.hr-banner__slide > a {
    position: relative;
    display: block;
}

.hr-banner__slide picture {
    display: block;
}

.hr-banner__slide img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: var(--hr-navy-deep);
}

.hr-banner__empty {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8%;
    background:
        radial-gradient(circle at 80% 20%, rgba(118, 154, 195, .55), transparent 34%),
        linear-gradient(130deg, #192d4e, #405f89);
}

.hr-banner__empty .hr-eyebrow {
    color: #cad7e6;
}

.hr-banner__empty h1 {
    margin: 18px 0 34px;
    font-family: "S-CoreDream", "Noto Sans KR", sans-serif;
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 500;
    letter-spacing: -.06em;
    line-height: 1.28;
}

.hr-banner__empty .hr-button {
    align-self: flex-start;
}

.hr-banner__controls {
    position: absolute;
    z-index: 5;
    right: 24px;
    bottom: 24px;
    display: flex;
    height: 48px;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 24px;
    background: rgba(11, 20, 35, .72);
    backdrop-filter: blur(10px);
}

.hr-banner__controls button {
    width: 46px;
    height: 46px;
    padding: 0;
    color: var(--hr-white);
    border: 0;
    background: transparent;
    cursor: pointer;
}

.hr-banner__controls button:focus-visible,
.hr-banner__controls button:hover {
    background: rgba(255, 255, 255, .14);
    outline: none;
}

.hr-banner__counter {
    display: flex;
    min-width: 92px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 16px 0 11px;
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
}

.hr-banner__counter strong {
    color: var(--hr-white);
}

.hr-banner__counter i {
    width: 18px;
    height: 1px;
    background: rgba(255, 255, 255, .42);
}

.hr-sermon {
    display: flex;
    flex-direction: column;
    padding: 22px 24px;
    color: var(--hr-white);
    background: var(--hr-navy);
}

.hr-sermon__head,
.hr-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hr-sermon__head .hr-eyebrow {
    color: #afc2db;
}

.hr-sermon__head h2 {
    margin-top: 7px;
    font-family: "S-CoreDream", "Noto Sans KR", sans-serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -.04em;
}

.hr-circle-link {
    display: flex;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    transition: background .2s ease;
}

.hr-circle-link:hover {
    background: rgba(255, 255, 255, .13);
}

.hr-sermon__content {
    display: flex;
    min-height: 0;
    flex: 1 1 auto;
    flex-direction: column;
    margin-top: 16px;
}

.hr-sermon__thumb,
.hr-media-card__thumb {
    position: relative;
    overflow: hidden;
    background: #152745;
}

.hr-sermon__thumb {
    aspect-ratio: 927 / 419;
    border-radius: 12px;
}

.hr-sermon__thumb img,
.hr-media-card__thumb img,
.hr-story-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.hr-sermon__content:hover .hr-sermon__thumb img,
.hr-media-card a:hover .hr-media-card__thumb img,
.hr-story-card a:hover .hr-story-card__thumb img {
    transform: scale(1.035);
}

.hr-play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    padding-left: 3px;
    color: var(--hr-navy);
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .18);
    transform: translate(-50%, -50%);
}

.hr-sermon__copy {
    padding-top: 14px;
}

.hr-sermon__copy h3 {
    display: -webkit-box;
    overflow: hidden;
    font-family: "S-CoreDream", "Noto Sans KR", sans-serif;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -.04em;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.hr-sermon__copy p {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 14px;
    margin-top: 7px;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
}

.hr-sermon__copy time {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, .45);
    font-size: 13px;
}

.hr-sermon__quick {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
}

.hr-sermon__quick a {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 62px;
    flex-direction: column;
    justify-content: center;
    padding: 10px 34px 10px 13px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 9px;
    background: rgba(255, 255, 255, .06);
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.hr-sermon__quick a:hover {
    border-color: rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .12);
    transform: translateY(-2px);
}

.hr-sermon__quick span {
    color: #aebed2;
    font-size: 10px;
    font-weight: 700;
}

.hr-sermon__quick strong {
    overflow: hidden;
    margin-top: 2px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hr-sermon__quick i {
    position: absolute;
    top: 50%;
    right: 13px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-style: normal;
    transform: translateY(-50%);
}

.hr-campaigns {
    margin-top: 14px;
}

.hr-campaigns details {
    border-bottom: 1px solid var(--hr-line);
}

.hr-campaigns summary {
    display: flex;
    min-height: 58px;
    align-items: center;
    cursor: pointer;
    color: #3c4654;
    font-size: 14px;
    font-weight: 700;
    list-style: none;
}

.hr-campaigns summary::-webkit-details-marker,
.hr-write-menu summary::-webkit-details-marker {
    display: none;
}

.hr-campaigns summary strong {
    margin-left: 8px;
    color: var(--hr-coral);
}

.hr-campaigns summary > span {
    margin-left: auto;
    transition: transform .2s ease;
}

.hr-campaigns details[open] summary > span {
    transform: rotate(45deg);
}

.hr-campaigns ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 40px;
    padding: 5px 0 24px;
}

.hr-campaigns li a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #edf0f2;
    color: #4f5763;
    font-size: 14px;
}

.hr-quick {
    padding: 76px 0 88px;
}

.hr-quick__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.hr-quick__heading h2 {
    margin-top: 8px;
    font-family: "S-CoreDream", "Noto Sans KR", sans-serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -.05em;
}

.hr-quick__heading > p {
    max-width: 440px;
    color: var(--hr-muted);
    font-size: 14px;
}

.hr-quick__layout {
    display: grid;
    grid-template-columns: minmax(290px, .72fr) minmax(0, 1.55fr);
    align-items: start;
    gap: 18px;
}

.hr-quick-group {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--hr-line);
    border-radius: 17px;
    background: var(--hr-white);
}

.hr-quick-group--visitor {
    background: #f1f5f9;
}

.hr-quick-group__head {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 24px;
    border-bottom: 1px solid var(--hr-line);
}

.hr-quick-group__head > span {
    font-family: "S-CoreDream", "Noto Sans KR", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.04em;
}

.hr-quick-group__head small {
    color: var(--hr-blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
}

.hr-quick__visitor-list > li + li {
    border-top: 1px solid var(--hr-line);
}

.hr-quick__visitor-list > li > a,
.hr-quick__visitor-list > li > button {
    position: relative;
    display: grid;
    width: 100%;
    min-height: 73px;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 10px 22px;
    border: 0;
    background: none;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: color .2s ease, background .2s ease;
}

.hr-quick__visitor-list > li > a:hover,
.hr-quick__visitor-list > li > button:hover,
.hr-quick__visitor-list > li.is-open > button {
    color: var(--hr-white);
    background: var(--hr-navy);
}

.hr-quick__visitor-list > li.is-open > button small,
.hr-quick__visitor-list > li.is-open > button .hr-quick__number {
    color: rgba(255, 255, 255, .68);
}

.hr-quick__member-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hr-quick__member-list li {
    min-width: 0;
    border-right: 1px solid var(--hr-line);
    border-bottom: 1px solid var(--hr-line);
}

.hr-quick__member-list li:nth-child(3n) {
    border-right: 0;
}

.hr-quick__member-list li:nth-child(n+4) {
    border-bottom: 0;
}

.hr-quick__member-list a {
    position: relative;
    display: flex;
    min-height: 109px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.hr-quick__member-list li:not(.is-featured) a:hover {
    z-index: 1;
    color: var(--hr-white);
    background: var(--hr-navy);
    transform: translateY(-3px);
}

.hr-quick__member-list .is-featured a {
    color: var(--hr-white);
}

.hr-quick__member-list .is-navy a {
    background: var(--hr-navy);
}

.hr-quick__member-list .is-blue a {
    background: var(--hr-blue);
}

.hr-quick__member-list .is-featured a:hover {
    filter: brightness(1.08);
}

.hr-quick__member-list .is-featured small,
.hr-quick__member-list li:not(.is-featured) a:hover small {
    color: rgba(255, 255, 255, .67);
}

.hr-quick__number {
    color: var(--hr-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
}

.hr-quick a:hover .hr-quick__number,
.hr-quick a:hover small,
.hr-quick button:hover .hr-quick__number,
.hr-quick button:hover small {
    color: rgba(255, 255, 255, .66);
}

.hr-quick__copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hr-quick__copy strong {
    font-size: 16px;
    letter-spacing: -.045em;
}

.hr-quick__copy small {
    color: var(--hr-muted);
    font-size: 12px;
}

.hr-quick__arrow {
    position: absolute;
    top: 16px;
    right: 17px;
    font-size: 14px;
}

.hr-quick__visitor-list .hr-quick__arrow {
    position: static;
    transition: transform .2s ease;
}

.hr-quick__visitor-list > li.is-open > button .hr-quick__arrow {
    transform: rotate(180deg);
}

.hr-quick__chapels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 13px 18px 17px;
    border-top: 1px solid var(--hr-line);
    background: #e9eff5;
    animation: hr-quick-panel-in .22s ease both;
}

.hr-quick__chapels[hidden] {
    display: none;
}

.hr-quick__chapels a {
    display: flex;
    min-width: 0;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 7px 11px;
    border: 1px solid #d0d9e3;
    border-radius: 8px;
    background: #fff;
    color: #47566b;
    font-size: 13px;
    font-weight: 700;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.hr-quick__chapels a span {
    color: var(--hr-blue);
    font-size: 11px;
}

.hr-quick__chapels a:hover {
    border-color: var(--hr-navy);
    background: var(--hr-navy);
    color: #fff;
}

.hr-quick__chapels a:hover span {
    color: #fff;
}

@keyframes hr-quick-panel-in {
    from {
        opacity: 0;
        transform: translateY(-7px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hr-microsites {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 0 22px;
    margin-top: 12px;
    border-top: 1px solid var(--hr-line);
    border-bottom: 1px solid var(--hr-line);
}

.hr-microsites > span {
    color: var(--hr-muted);
    font-size: 12px;
    font-weight: 700;
}

.hr-microsites > div {
    display: flex;
    gap: 28px;
}

.hr-microsites a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
}

.hr-microsites i {
    color: var(--hr-blue);
    font-style: normal;
}

.hr-affiliates {
    border-bottom: 1px solid var(--hr-line);
}

.hr-affiliates__bar {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 0 22px;
}

.hr-affiliates__bar > span {
    color: var(--hr-muted);
    font-size: 12px;
    font-weight: 700;
}

.hr-affiliates__bar > div {
    display: flex;
    align-items: center;
    gap: 28px;
}

.hr-affiliates__bar button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    gap: 9px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--hr-ink);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.hr-affiliates__bar button i {
    color: var(--hr-blue);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    transition: transform .2s ease;
}

.hr-affiliates__bar button[aria-expanded="true"] {
    color: var(--hr-blue);
}

.hr-affiliates__bar button[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.hr-affiliates__panel {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding: 18px 22px 24px;
    border-top: 1px solid var(--hr-line);
    background: #f8fafc;
}

.hr-affiliates__panel[hidden] {
    display: none;
}

.hr-affiliates__panel a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 7px 17px;
    border: 1px solid #d7dde5;
    border-radius: 999px;
    background: #fff;
    color: #526074;
    font-size: 14px;
    font-weight: 600;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}

.hr-affiliates__panel a:hover {
    border-color: var(--hr-navy);
    background: var(--hr-navy);
    color: #fff;
    transform: translateY(-2px);
}

.hr-week {
    background: var(--hr-paper);
}

.hr-week__grid {
    display: grid;
    grid-template-columns: .92fr 1.18fr .9fr;
    grid-template-areas:
        "bulletin news prayer"
        "popup news prayer";
    gap: 20px;
    align-items: stretch;
}

.hr-card {
    min-width: 0;
    min-height: 500px;
    padding: 30px;
    border: 1px solid #e4e7eb;
    border-radius: 18px;
    background: var(--hr-white);
}

.hr-card__head {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--hr-line);
}

.hr-card__head > span {
    font-family: "S-CoreDream", "Noto Sans KR", sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.04em;
}

.hr-card__head > a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 12px;
    color: var(--hr-muted);
    font-size: 12px;
    font-weight: 700;
}

.hr-card-menu {
    position: relative;
    z-index: 7;
}

.hr-card-menu summary {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    color: var(--hr-muted);
    font-size: 12px;
    font-weight: 700;
    list-style: none;
    white-space: nowrap;
    cursor: pointer;
}

.hr-card-menu summary::-webkit-details-marker {
    display: none;
}

.hr-card-menu summary > span {
    color: var(--hr-blue);
    transition: transform .2s ease;
}

.hr-card-menu[open] summary > span {
    transform: rotate(180deg);
}

.hr-card-menu > div {
    position: absolute;
    top: calc(100% + 7px);
    right: 0;
    width: 190px;
    padding: 8px;
    border: 1px solid var(--hr-line);
    border-radius: 11px;
    background: var(--hr-white);
    box-shadow: 0 16px 38px rgba(18, 35, 59, .14);
    animation: hr-media-menu-in .2s ease both;
}

.hr-card-menu > div a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 7px 11px;
    border-radius: 7px;
    color: #455267;
    font-size: 13px;
    font-weight: 650;
    transition: color .2s ease, background-color .2s ease;
}

.hr-card-menu > div a:hover,
.hr-card-menu > div a:focus-visible {
    color: var(--hr-white);
    background: var(--hr-navy);
}

.hr-card-menu > div i {
    color: var(--hr-blue);
    font-size: 10px;
    font-style: normal;
}

.hr-card-menu > div a:hover i,
.hr-card-menu > div a:focus-visible i {
    color: var(--hr-white);
}

.hr-bulletin {
    grid-area: bulletin;
    min-height: 0;
    padding: 24px;
}

.hr-bulletin__body {
    display: grid;
    grid-template-columns: 42% minmax(0, 1fr);
    gap: 18px;
    align-items: end;
    padding-top: 22px;
}

.hr-bulletin__cover {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 5px;
    background: var(--hr-blue-soft);
    box-shadow: 0 12px 30px rgba(25, 43, 72, .12);
}

.hr-bulletin__cover img {
    height: 100%;
    object-fit: cover;
}

.hr-bulletin__body p {
    color: var(--hr-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.hr-bulletin__body h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 8px 0 18px;
    font-size: 17px;
    letter-spacing: -.045em;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.hr-bulletin__body > div:last-child > span,
.hr-media-card__copy > span {
    display: inline-flex;
    gap: 18px;
    align-items: center;
    padding-bottom: 7px;
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 700;
}

.hr-bulletin__body i,
.hr-media-card__copy i {
    font-style: normal;
}

.hr-news ul {
    padding-top: 5px;
}

.hr-news {
    grid-area: news;
    min-height: 0;
}

.hr-news li + li {
    border-top: 1px solid #eceff2;
}

.hr-news li a {
    display: grid;
    min-height: 68px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 13px;
    align-items: center;
}

.hr-news li strong {
    overflow: hidden;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -.03em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hr-news li time {
    color: var(--hr-muted);
    font-size: 12px;
}

.hr-badge {
    display: inline-flex;
    min-height: 25px;
    align-items: center;
    padding: 0 9px;
    color: #4e6f98;
    border-radius: 3px;
    background: var(--hr-blue-soft);
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.hr-prayer {
    grid-area: prayer;
    min-height: 0;
    color: var(--hr-white);
    border-color: var(--hr-navy);
    background: var(--hr-navy);
}

.hr-card__head--light {
    border-color: rgba(255, 255, 255, .15);
}

.hr-card__head--light a {
    color: rgba(255, 255, 255, .6);
}

.hr-prayer__intro {
    margin: 24px 0 11px;
    color: #aebdd1;
    font-size: 13px;
}

.hr-prayer ol li {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 11px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.hr-prayer ol li > span {
    color: #9db4d1;
    font-size: 11px;
    font-weight: 800;
}

.hr-prayer ol p {
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    letter-spacing: -.025em;
    line-height: 1.65;
}

.hr-popup {
    grid-area: popup;
    min-height: 0;
    padding: 24px;
}

.hr-popup__controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hr-popup__controls button {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--hr-ink);
    border: 1px solid var(--hr-line);
    border-radius: 50%;
    background: var(--hr-white);
    cursor: pointer;
}

.hr-popup__controls button:hover,
.hr-popup__controls button:focus-visible {
    color: var(--hr-white);
    border-color: var(--hr-navy);
    background: var(--hr-navy);
}

.hr-popup__controls button:disabled {
    color: #b8bdc5;
    border-color: #eceff2;
    background: #f7f8f9;
    cursor: default;
}

.hr-popup__controls > span {
    min-width: 46px;
    color: #9aa0a8;
    font-size: 10px;
    text-align: center;
}

.hr-popup__controls strong {
    color: var(--hr-ink);
}

.hr-popup__viewport {
    position: relative;
    min-height: 220px;
    margin-top: 18px;
}

.hr-popup__slide {
    position: absolute;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity .35s ease, visibility .35s ease;
}

.hr-popup__slide.is-active {
    z-index: 1;
    visibility: visible;
    opacity: 1;
}

.hr-popup__slide > a {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 9px;
    background: var(--hr-blue-soft);
}

.hr-popup__thumb {
    height: 100%;
    overflow: hidden;
    background: var(--hr-blue-soft);
}

.hr-popup__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hr-popup__copy {
    position: absolute;
    inset: 0;
    padding: 24px 22px;
    color: var(--hr-white);
    pointer-events: none;
}

.hr-popup__copy h3,
.hr-popup__copy p {
    display: -webkit-box;
    overflow: hidden;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .2);
    -webkit-box-orient: vertical;
}

.hr-popup__copy h3 {
    max-width: 92%;
    font-family: "S-CoreDream", "Noto Sans KR", sans-serif;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -.045em;
    line-height: 1.4;
    -webkit-line-clamp: 2;
}

.hr-popup__copy p {
    max-width: 88%;
    margin-top: 9px;
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
}

.hr-popup__copy > span {
    display: none;
}

.hr-popup__empty {
    min-height: 220px;
}

.hr-media {
    background: var(--hr-white);
}

.hr-media__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.hr-media-card {
    min-width: 0;
}

.hr-media-card__thumb {
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    background: #e9edf2;
}

.hr-media-card__copy {
    padding: 22px 3px 0;
}

.hr-media-card__copy p,
.hr-story-card > a > div:last-child p {
    color: var(--hr-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
}

.hr-media-card__copy h3 {
    display: -webkit-box;
    min-height: 55px;
    overflow: hidden;
    margin: 8px 0 20px;
    font-family: "S-CoreDream", "Noto Sans KR", sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.hr-media-card__copy > span {
    color: var(--hr-muted);
    font-size: 11px;
}

.hr-mokjang {
    position: relative;
    color: var(--hr-white);
    background:
        radial-gradient(circle at 90% 5%, rgba(107, 139, 181, .25), transparent 25%),
        var(--hr-navy-deep);
}

.hr-mokjang__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 46px;
}

.hr-mokjang__head h2 {
    color: var(--hr-white);
}

.hr-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9cb4d0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
}

.hr-live > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--hr-coral);
    box-shadow: 0 0 0 5px rgba(223, 104, 112, .12);
    animation: hr-live 1.8s ease-in-out infinite;
}

@keyframes hr-live {
    50% { box-shadow: 0 0 0 9px rgba(223, 104, 112, 0); }
}

.hr-mokjang__lead {
    max-width: 650px;
    margin-top: 18px;
    color: rgba(255, 255, 255, .6);
    font-size: 16px;
}

.hr-activity {
    flex: 0 0 auto;
    padding-left: 26px;
    border-left: 1px solid rgba(255, 255, 255, .17);
}

.hr-activity strong {
    font-size: 14px;
    font-weight: 500;
}

.hr-activity strong em {
    color: #f39399;
    font-family: "S-CoreDream", "Noto Sans KR", sans-serif;
    font-size: 27px;
    font-style: normal;
    font-weight: 600;
}

.hr-activity p {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 6px;
    color: rgba(255, 255, 255, .48);
    font-size: 11px;
}

.hr-mokjang__feed {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .15);
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.hr-feed-card {
    min-width: 0;
    border-right: 1px solid rgba(255, 255, 255, .15);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.hr-feed-card > a {
    display: flex;
    min-height: 192px;
    flex-direction: column;
    padding: 24px;
    transition: background .2s ease, transform .2s ease;
}

.hr-feed-card > a:hover {
    position: relative;
    z-index: 1;
    background: #29466f;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .15);
    transform: translateY(-4px);
}

.hr-feed-card__top,
.hr-feed-card__meta {
    display: flex;
    align-items: center;
}

.hr-feed-card__top {
    justify-content: space-between;
    gap: 10px;
}

.hr-badge--community {
    color: #b9cde4;
    background: rgba(115, 151, 194, .18);
}

.hr-feed-card__top time {
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
}

.hr-feed-card h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 19px 0 auto;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.hr-feed-card__meta {
    gap: 8px;
    margin-top: 22px;
    color: rgba(255, 255, 255, .48);
    font-size: 11px;
}

.hr-feed-card__meta strong {
    overflow: hidden;
    color: rgba(255, 255, 255, .78);
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hr-feed-card__meta > span:last-child {
    margin-left: auto;
}

.hr-avatar {
    display: flex;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: #d8e2ef;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    font-size: 10px;
}

.hr-empty--community {
    min-height: 260px;
    color: rgba(255, 255, 255, .62);
    border: 1px solid rgba(255, 255, 255, .15);
}

.hr-mokjang__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
}

.hr-board-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.hr-board-links a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
}

.hr-board-links a::after {
    margin-left: 8px;
    content: "→";
}

.hr-write-menu {
    position: relative;
}

.hr-write-menu summary {
    display: flex;
    min-width: 190px;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 19px;
    color: var(--hr-navy-deep);
    border-radius: 4px;
    background: var(--hr-white);
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    list-style: none;
}

.hr-write-menu[open] summary span {
    transform: rotate(45deg);
}

.hr-write-menu > div {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 58px;
    width: 220px;
    padding: 8px;
    border: 1px solid #e1e5ea;
    border-radius: 7px;
    color: var(--hr-ink);
    background: var(--hr-white);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .2);
}

.hr-write-menu > div a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 0 12px;
    border-radius: 4px;
    font-size: 13px;
}

.hr-write-menu > div a:hover {
    background: var(--hr-blue-soft);
}

.hr-sharing {
    background: var(--hr-paper);
}

.hr-sharing__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(350px, .72fr);
    gap: 70px;
}

.hr-sharing__list {
    border-top: 2px solid var(--hr-ink);
}

.hr-sharing__list li {
    border-bottom: 1px solid var(--hr-line);
}

.hr-sharing__list a {
    display: grid;
    min-height: 72px;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 20px;
    align-items: center;
}

.hr-sharing__list strong {
    overflow: hidden;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -.03em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hr-sharing__author,
.hr-sharing__list time {
    color: var(--hr-muted);
    font-size: 12px;
}

.hr-family {
    padding: 30px;
    border-radius: 18px;
    background: var(--hr-white);
}

.hr-family > p {
    margin: 22px 0 10px;
    color: var(--hr-muted);
    font-size: 13px;
}

.hr-family li + li {
    border-top: 1px solid var(--hr-line);
}

.hr-family li a {
    display: grid;
    min-height: 62px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 11px;
    align-items: center;
}

.hr-family li strong {
    overflow: hidden;
    font-size: 13px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hr-family li a > span:last-child {
    color: var(--hr-muted);
    font-size: 12px;
}

.hr-badge--family {
    color: #92545a;
    background: #f7e9ea;
}

.hr-stories {
    background: var(--hr-white);
}

.hr-stories__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.hr-story-card:not(.hr-story-card--new-family) {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.hr-story-card__feature {
    display: block;
}

.hr-story-card__thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 16px;
    background: #e9edf1;
}

.hr-story-card__thumb--empty {
    background:
        linear-gradient(135deg, transparent 0 49%, rgba(255,255,255,.32) 50% 52%, transparent 53%),
        var(--hr-blue-soft);
}

.hr-story-card:not(.hr-story-card--new-family) > a > div:last-child {
    position: relative;
    padding: 22px 42px 0 3px;
}

.hr-story-card:not(.hr-story-card--new-family) > a > div:last-child h3 {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 8px;
    font-family: "S-CoreDream", "Noto Sans KR", sans-serif;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.hr-story-card:not(.hr-story-card--new-family) > a > div:last-child > span {
    position: absolute;
    top: 22px;
    right: 3px;
}

.hr-story-card__more {
    display: flex;
    min-height: 52px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 4px 0;
    margin-top: auto;
    border-top: 1px solid var(--hr-line);
    color: var(--hr-navy);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: -.025em;
    transition: border-color .2s ease, color .2s ease;
}

.hr-story-card__more i {
    color: var(--hr-blue);
    font-style: normal;
    transition: transform .2s ease;
}

.hr-story-card__more:hover {
    border-color: #bdcad8;
    color: var(--hr-blue);
}

.hr-story-card__more:hover i {
    transform: translateX(4px);
}

.hr-story-card--new-family > a {
    display: flex;
    height: 100%;
    min-height: 100%;
    flex-direction: column;
    padding: 27px 28px 24px;
    border: 1px solid #dbe3eb;
    border-radius: 16px;
    background:
        radial-gradient(circle at 92% 5%, rgba(89, 127, 173, .14), transparent 27%),
        #edf2f6;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.hr-story-card--new-family > a:hover {
    border-color: #bdcad8;
    box-shadow: 0 18px 42px rgba(25, 43, 72, .11);
    transform: translateY(-3px);
}

.hr-new-family__head {
    position: relative;
    padding-right: 36px;
}

.hr-new-family__head p {
    color: var(--hr-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.hr-new-family__head h3 {
    margin-top: 8px;
    font-family: "S-CoreDream", "Noto Sans KR", sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -.05em;
}

.hr-new-family__head > span {
    position: absolute;
    top: 2px;
    right: 0;
    color: var(--hr-blue);
}

.hr-story-card--new-family ol {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
    margin-top: 19px;
    border-top: 1px solid #d4dde6;
}

.hr-story-card--new-family li {
    display: grid;
    min-height: 51px;
    grid-template-columns: 25px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid #d4dde6;
}

.hr-story-card--new-family li > span {
    color: var(--hr-blue);
    font-size: 10px;
    font-weight: 800;
}

.hr-story-card--new-family li strong {
    overflow: hidden;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -.025em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hr-new-family__empty {
    display: flex;
    min-height: 180px;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    color: var(--hr-muted);
    font-size: 13px;
}

.hr-new-family__footer {
    display: flex;
    min-height: 44px;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 12px;
    color: var(--hr-navy);
    font-size: 12px;
    font-weight: 750;
}

.hr-new-family__footer i {
    color: var(--hr-blue);
    font-style: normal;
}

.hr-worship-guide {
    padding: 88px 0 82px;
    background:
        radial-gradient(circle at 87% 12%, rgba(89, 127, 173, .12), transparent 28%),
        #edf2f6;
}

.hr-worship-guide__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 32px;
}

.hr-worship-guide__head h2 {
    margin-top: 9px;
    font-family: "S-CoreDream", "Noto Sans KR", sans-serif;
    font-size: clamp(32px, 2.8vw, 44px);
    font-weight: 600;
    letter-spacing: -.055em;
}

.hr-worship-guide__head > div:first-child > p:last-child {
    margin-top: 12px;
    color: var(--hr-muted);
    font-size: 15px;
}

.hr-worship-guide__links {
    display: flex;
    gap: 9px;
}

.hr-worship-guide__links a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    gap: 16px;
    padding: 8px 18px;
    border: 1px solid #cbd4df;
    border-radius: 999px;
    background: rgba(255, 255, 255, .6);
    color: var(--hr-navy);
    font-size: 14px;
    font-weight: 700;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.hr-worship-guide__links a:hover {
    border-color: var(--hr-navy);
    background: var(--hr-navy);
    color: #fff;
}

.hr-worship-guide__grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 16px;
}

.hr-worship-card {
    min-width: 0;
    padding: 30px;
    border: 1px solid #dbe2e9;
    border-radius: 18px;
    background: rgba(255, 255, 255, .82);
}

.hr-worship-card__title {
    display: flex;
    align-items: baseline;
    gap: 13px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--hr-line);
}

.hr-worship-card__title span {
    color: var(--hr-blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
}

.hr-worship-card__title h3 {
    font-family: "S-CoreDream", "Noto Sans KR", sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.045em;
}

.hr-worship-card--sunday ol {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-top: 24px;
}

.hr-worship-card--sunday li {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 8px;
    padding: 0 18px;
    border-left: 1px solid var(--hr-line);
}

.hr-worship-card--sunday li:first-child {
    padding-left: 0;
    border-left: 0;
}

.hr-worship-card--sunday li span {
    color: var(--hr-muted);
    font-size: 12px;
    font-weight: 700;
}

.hr-worship-card--sunday li strong {
    color: var(--hr-navy-deep);
    font-size: clamp(16px, 1.4vw, 20px);
    letter-spacing: -.035em;
    white-space: nowrap;
}

.hr-worship-card--weekday dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 24px;
}

.hr-worship-card--weekday dl > div {
    min-width: 0;
    padding: 0 16px;
    border-left: 1px solid var(--hr-line);
}

.hr-worship-card--weekday dl > div:first-child {
    padding-left: 0;
    border-left: 0;
}

.hr-worship-card--weekday dt {
    min-height: 40px;
    color: #5d697a;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.45;
    word-break: keep-all;
}

.hr-worship-card--weekday dd {
    margin-top: 8px;
    color: var(--hr-navy-deep);
    font-size: 16px;
    font-weight: 750;
    white-space: nowrap;
}

.hr-worship-guide__notice {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
    padding: 18px 4px 0;
    color: #738092;
    font-size: 12px;
}

.hr-worship-guide__notice p::before {
    margin-right: 6px;
    color: var(--hr-coral);
    content: "※";
}

.home-renewal a:focus-visible,
.home-renewal button:focus-visible,
.home-renewal summary:focus-visible {
    outline: 3px solid #f2a1a6;
    outline-offset: 3px;
}

@media (max-width: 1200px) {
    .hr-shell { width: min(100% - 48px, 1440px); }
    .hr-hero__grid { grid-template-columns: minmax(0, 1fr) clamp(270px, 30vw, 360px); }
    .hr-sermon { padding: 21px; }
    .hr-quick__layout { grid-template-columns: minmax(270px, .7fr) minmax(0, 1.5fr); }
    .hr-week__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "bulletin popup"
            "news prayer";
    }
    .hr-prayer { min-height: auto; }
    .hr-prayer ol { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
    .hr-media__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 20px; }
    .hr-mokjang__feed { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .hr-sharing__grid { gap: 38px; }
}

@media (min-width: 901px) and (max-width: 1000px) {
    .hr-sermon { padding: 18px; }
}

@media (max-width: 900px) {
    .hr-section { padding: 86px 0; }
    .hr-hero__grid { grid-template-columns: 1fr; align-items: start; }
    .hr-banner { min-height: 0; aspect-ratio: 927 / 419; }
    .hr-sermon { min-height: 0; }
    .hr-sermon__content { display: grid; grid-template-columns: minmax(280px, .9fr) 1fr; gap: 28px; align-items: center; }
    .hr-sermon__copy { padding-top: 0; }
    .hr-quick__layout { grid-template-columns: 1fr; }
    .hr-quick__visitor-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .hr-quick__visitor-list > li + li { border-top: 0; border-left: 1px solid var(--hr-line); }
    .hr-quick__visitor-list > li > a, .hr-quick__visitor-list > li > button { min-height: 112px; grid-template-columns: 1fr auto; align-content: space-between; }
    .hr-quick__visitor-list .hr-quick__number { grid-column: 1; }
    .hr-quick__visitor-list .hr-quick__copy { grid-column: 1 / -1; }
    .hr-quick__visitor-list .hr-quick__arrow { position: absolute; }
    .hr-week__grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "bulletin"
            "news"
            "prayer"
            "popup";
    }
    .hr-card { min-height: auto; }
    .hr-prayer ol { grid-template-columns: 1fr; gap: 0; }
    .hr-mokjang__head { align-items: flex-start; flex-direction: column; }
    .hr-activity { padding-left: 0; border-left: 0; }
    .hr-mokjang__feed { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hr-sharing__grid { grid-template-columns: 1fr; }
    .hr-stories__grid { gap: 14px; }
}

@media (max-width: 767px) {
    .home-renewal { font-size: 15px; }
    .hr-shell { width: calc(100% - 36px); }
    .hr-section { padding: 72px 0; }
    .hr-section__head { align-items: flex-start; flex-direction: column; gap: 14px; margin-bottom: 32px; }
    .hr-section__head h2, .hr-mokjang__head h2 { font-size: 32px; }
    .hr-section__head > p { font-size: 14px; }
    .hr-media-menu { width: 100%; }
    .hr-media-menu summary { width: 100%; justify-content: space-between; }
    .hr-media-menu > div { right: 0; width: 100%; }
    .hr-hero { padding-top: 18px; }
    .hr-hero__grid { gap: 12px; }
    .hr-banner { aspect-ratio: 16 / 9; border-radius: 16px; }
    .hr-banner__controls { right: 14px; bottom: 14px; height: 44px; }
    .hr-banner__controls button { width: 40px; height: 42px; }
    .hr-banner__counter { min-width: 78px; padding-right: 12px; }
    .hr-sermon { padding: 25px 20px 22px; border-radius: 16px; }
    .hr-sermon__thumb { aspect-ratio: 16 / 9; }
    .hr-sermon__head h2 { font-size: 21px; }
    .hr-circle-link { width: 44px; height: 44px; }
    .hr-sermon__content { display: block; margin-top: 20px; }
    .hr-sermon__copy { padding-top: 18px; }
    .hr-sermon__copy h3 { font-size: 19px; }
    .hr-sermon__quick { margin-top: 18px; }
    .hr-sermon__quick a { min-height: 64px; padding-left: 12px; }
    .hr-sermon__quick strong { font-size: 12px; }
    .hr-campaigns { margin-top: 7px; }
    .hr-campaigns ul { grid-template-columns: 1fr; }
    .hr-sermon__copy h3 { -webkit-line-clamp: 2; }
    .hr-quick { padding: 52px 0 66px; }
    .hr-quick__heading { align-items: flex-start; flex-direction: column; gap: 9px; margin-bottom: 22px; }
    .hr-quick__heading h2 { font-size: 26px; }
    .hr-quick__heading > p { font-size: 13px; }
    .hr-quick-group { border-radius: 14px; }
    .hr-quick-group__head { min-height: 60px; padding: 0 18px; }
    .hr-quick__visitor-list { display: block; }
    .hr-quick__visitor-list > li + li { border-top: 1px solid var(--hr-line); border-left: 0; }
    .hr-quick__visitor-list > li > a, .hr-quick__visitor-list > li > button { min-height: 70px; grid-template-columns: 26px minmax(0, 1fr) auto; align-content: center; padding: 10px 17px; }
    .hr-quick__visitor-list .hr-quick__number, .hr-quick__visitor-list .hr-quick__copy { grid-column: auto; }
    .hr-quick__visitor-list .hr-quick__arrow { position: static; }
    .hr-quick__member-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hr-quick__member-list li:nth-child(n) { border-right: 1px solid var(--hr-line); border-bottom: 1px solid var(--hr-line); }
    .hr-quick__member-list li:nth-child(2n) { border-right: 0; }
    .hr-quick__member-list li:nth-child(n+5) { border-bottom: 0; }
    .hr-quick__member-list a { min-height: 108px; padding: 17px 14px; }
    .hr-quick__copy strong { font-size: 15px; }
    .hr-quick__arrow { top: 14px; right: 14px; }
    .hr-microsites { align-items: flex-start; flex-direction: column; gap: 0; padding: 13px 17px 6px; }
    .hr-microsites > div { width: 100%; justify-content: space-between; }
    .hr-affiliates__bar { min-height: 0; align-items: flex-start; flex-direction: column; gap: 2px; padding: 13px 17px 7px; }
    .hr-affiliates__bar > div { width: 100%; justify-content: space-between; gap: 20px; }
    .hr-affiliates__bar button { min-height: 42px; }
    .hr-affiliates__panel { padding: 15px 17px 20px; }
    .hr-affiliates__panel a { min-height: 38px; padding: 6px 14px; font-size: 13px; }
    .hr-card { padding: 24px 20px; border-radius: 14px; }
    .hr-card__head > span { font-size: 18px; }
    .hr-bulletin__body { grid-template-columns: 42% minmax(0, 1fr); gap: 17px; }
    .hr-bulletin__body h3 { margin-bottom: 18px; font-size: 17px; }
    .hr-popup { padding: 24px 20px; }
    .hr-popup__viewport { min-height: 224px; }
    .hr-popup__copy { padding: 23px 20px; }
    .hr-popup__copy h3 { font-size: 20px; }
    .hr-popup__copy p { font-size: 13px; }
    .hr-news li a { grid-template-columns: auto minmax(0, 1fr) auto; gap: 8px; padding: 10px 0; }
    .hr-news li time { display: block; font-size: 12px; white-space: nowrap; }
    .hr-media__grid { grid-template-columns: 1fr; gap: 14px; }
    .hr-media-card > a { display: grid; grid-template-columns: 132px minmax(0, 1fr); gap: 15px; align-items: center; }
    .hr-media-card__thumb { aspect-ratio: 16 / 10; border-radius: 10px; }
    .hr-media-card .hr-play { width: 36px; height: 36px; font-size: 10px; }
    .hr-media-card__copy { min-width: 0; padding: 0; }
    .hr-media-card__copy p { font-size: 9px; }
    .hr-media-card__copy h3 { min-height: auto; margin: 5px 0 10px; font-size: 15px; line-height: 1.45; }
    .hr-media-card__copy > span { font-size: 10px; }
    .hr-mokjang__head { gap: 25px; margin-bottom: 34px; }
    .hr-mokjang__lead { font-size: 14px; }
    .hr-activity strong { display: block; line-height: 1.8; }
    .hr-mokjang__feed { grid-template-columns: 1fr; }
    .hr-feed-card > a { min-height: 168px; padding: 21px 19px; }
    .hr-mokjang__actions { align-items: stretch; flex-direction: column; }
    .hr-board-links { justify-content: space-between; gap: 8px; }
    .hr-board-links a { font-size: 12px; }
    .hr-write-menu summary { width: 100%; }
    .hr-write-menu > div { right: 0; bottom: 58px; width: 100%; }
    .hr-sharing__list a { min-height: 80px; grid-template-columns: auto minmax(0, 1fr) auto; gap: 10px; }
    .hr-sharing__author { display: none; }
    .hr-family { padding: 24px 20px; }
    .hr-stories__grid { grid-template-columns: 1fr; gap: 42px; }
    .hr-story-card--new-family > a { min-height: 390px; padding: 24px 20px 20px; }
    .hr-story-card--new-family li { min-height: 50px; }
    .hr-worship-guide { padding: 68px 0 62px; }
    .hr-worship-guide__head { align-items: flex-start; flex-direction: column; gap: 22px; }
    .hr-worship-guide__head h2 { font-size: 32px; }
    .hr-worship-guide__links { width: 100%; }
    .hr-worship-guide__links a { flex: 1; justify-content: space-between; }
    .hr-worship-guide__grid { grid-template-columns: 1fr; }
    .hr-worship-card { padding: 24px 20px; border-radius: 14px; }
    .hr-worship-card--sunday ol { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 0; }
    .hr-worship-card--sunday li:nth-child(3) { padding-left: 0; border-left: 0; }
    .hr-worship-card--weekday dl { display: block; }
    .hr-worship-card--weekday dl > div, .hr-worship-card--weekday dl > div:first-child { display: flex; min-height: 50px; align-items: center; justify-content: space-between; gap: 20px; padding: 0; border-left: 0; border-top: 1px solid var(--hr-line); }
    .hr-worship-card--weekday dl > div:first-child { border-top: 0; }
    .hr-worship-card--weekday dt { min-height: 0; }
    .hr-worship-card--weekday dd { margin-top: 0; }
    .hr-worship-guide__notice { display: block; line-height: 1.6; }
    .hr-worship-guide__notice p + p { margin-top: 5px; }
    .hr-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .home-renewal *,
    .home-renewal *::before,
    .home-renewal *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
