:root {
    --bg: #f0f0f0;
    --text: #333;
    --container-bg: #fff;
    --border: #ccc;
    --answer-bg: #f9f9f9;
    --answer-hover: #eee;
    --answer-selected: #ddd;
    --primary: #333;
    --primary-hover: #555;
    --shadow: rgba(0, 0, 0, 0.1);
    --bar-height: 64px;
    --bar-bg: #ffffff;
    --danger: #b91c1c;
}

body[data-theme="dark"] {
    --bg: #121212;
    --text: #e5e5e5;
    --container-bg: #1e1e1e;
    --border: #3a3a3a;
    --answer-bg: #2a2a2a;
    --answer-hover: #333;
    --answer-selected: #3f3f3f;
    --primary: #f0f0f0;
    --primary-hover: #d9d9d9;
    --shadow: rgba(0, 0, 0, 0.4);
    --bar-bg: #171717;
    --danger: #ef4444;
}

* {
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    min-height: 100vh;
    transition: background-color 0.2s, color 0.2s;
}

body.nav-open {
    overflow: hidden;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--bar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background: var(--bar-bg);
    border-bottom: 1px solid var(--border);
    z-index: 30;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.top-bar-logo {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.icon-btn {
    border: 1px solid var(--border);
    background: var(--container-bg);
    color: var(--text);
    border-radius: 999px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    box-shadow: 0 0 8px var(--shadow);
    font-size: 1.1rem;
    line-height: 1;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 20;
}

.side-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: var(--container-bg);
    border-right: 1px solid var(--border);
    box-shadow: 0 12px 32px var(--shadow);
    z-index: 40;
    display: flex;
    flex-direction: column;
    transition: left 0.2s ease;
}

.side-nav.open {
    left: 0;
}

.side-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.side-nav-header h2 {
    margin: 0;
    font-size: 1rem;
}

.side-nav-menu {
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
    gap: 0.5rem;
}

#dynamic-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-link {
    display: block;
    text-decoration: none;
    color: var(--text);
    background: var(--answer-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.8rem 0.9rem;
}

.nav-link:hover {
    background: var(--answer-hover);
}

.side-nav-footer {
    margin-top: auto;
    border-top: 1px solid var(--border);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.side-nav-footer label {
    font-size: 0.9rem;
}

#language-select,
input:not([type="checkbox"]),
select,
textarea {
    border: 1px solid var(--border);
    background: var(--container-bg);
    color: var(--text);
    border-radius: 8px;
    padding: 0.55rem 0.7rem;
}

.page-main {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: calc(var(--bar-height) + 1.2rem) 1rem 2rem;
}

.container {
    background-color: var(--container-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--shadow);
    width: 90%;
    max-width: 600px;
    text-align: center;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.wide-container {
    max-width: 980px;
    text-align: left;
}

h1,
h2,
h3,
p {
    color: var(--text);
}

.sub-copy {
    margin-top: -0.35rem;
    margin-bottom: 1.2rem;
    opacity: 0.85;
}

.page-back-link {
    margin-bottom: 0.9rem;
}

.content-section {
    margin-top: 2rem;
}

.content-section h2 {
    margin: 0 0 0.9rem;
}

.section-head-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.section-head-row h2 {
    margin: 0;
}

.insights-tabs {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.insights-tab {
    border: 1px solid var(--border);
    background: var(--answer-bg);
    color: var(--text);
    border-radius: 999px;
    padding: 0.42rem 0.85rem;
    font-size: 0.88rem;
    cursor: pointer;
}

.insights-tab.active {
    background: var(--primary);
    color: var(--container-bg);
    border-color: var(--primary);
}

.insights-tab[hidden] {
    display: none;
}

.insights-panel {
    margin-top: 0.25rem;
}

.mind-board-intro {
    margin-bottom: 1.4rem;
}

.mind-guide-card {
    text-decoration: none;
    color: var(--text);
    min-height: 160px;
}

.mind-guide-card .recent-result-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mind-guide-card-category {
    margin: 0;
    font-size: 0.83rem;
    font-weight: 700;
    opacity: 0.82;
}

.mind-guide-card-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
}

.mind-guide-card-summary {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    opacity: 0.92;
}

.mind-guide-meta {
    margin-top: auto;
    display: flex;
    gap: 0.6rem;
    font-size: 0.8rem;
    opacity: 0.78;
}

.mind-board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.9rem;
}

.mind-post-detail {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--answer-bg);
    padding: 1rem;
}

.mind-post-detail h1 {
    margin: 0;
    line-height: 1.45;
}

.mind-post-detail .mind-guide-meta {
    margin: 0.65rem 0 1rem;
}

.mind-post-content h2,
.mind-post-content h3 {
    margin: 1.1rem 0 0.5rem;
    line-height: 1.4;
}

.mind-post-content p,
.mind-post-content li {
    line-height: 1.76;
}

.mind-post-content ul {
    margin: 0.3rem 0 0.8rem 1.2rem;
    padding: 0;
}

.intro-copy {
    margin: 0;
    line-height: 1.7;
}

.empty-message {
    margin-top: 1rem;
}

.test-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 1rem;
}

.test-filter-controls {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.test-filter-controls + .test-card-grid {
    margin-top: 0.9rem;
}

.filter-chip-row,
.filter-toggle-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-chip,
.filter-toggle-btn {
    border: 1px solid var(--border);
    background: var(--answer-bg);
    color: var(--text);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    font-size: 0.9rem;
}

.filter-chip.active {
    background: var(--primary);
    color: var(--container-bg);
    border-color: var(--primary);
}

.filter-chip:hover,
.filter-toggle-btn:hover {
    background: var(--answer-hover) !important;
    color: var(--text) !important;
}

.test-card {
    border: 1px solid var(--border);
    background: var(--answer-bg);
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    text-align: left;
    padding: 0;
}

.test-card:hover {
    background: var(--answer-hover);
}

a.test-card {
    text-decoration: none;
    color: inherit;
}

.test-card-thumb {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
    background: var(--container-bg);
    color: var(--text);
    opacity: 0.75;
}

.test-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.test-card-title {
    margin: 0;
    font-weight: 700;
    padding: 0;
    min-width: 0;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.test-card-title-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.8rem;
}

.copy-link-btn {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--container-bg);
    color: var(--text);
    flex: 0 0 auto;
    padding: 0;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.copy-link-btn:hover {
    background: var(--answer-hover) !important;
    color: var(--text) !important;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 1.2rem;
    transform: translateX(-50%) translateY(8px);
    background: var(--text);
    color: var(--container-bg);
    border-radius: 999px;
    padding: 0.6rem 0.95rem;
    font-size: 0.9rem;
    box-shadow: 0 10px 26px var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 70;
}

.toast.show {
    opacity: 0.96;
    transform: translateX(-50%) translateY(0);
}

.recent-result-card {
    min-height: 150px;
}

.recent-carousel-shell {
    overflow: hidden;
}

.recent-carousel-track {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.1rem 0.3rem 0.4rem 0;
    cursor: grab;
}

.recent-carousel-track::-webkit-scrollbar {
    display: none;
}

.recent-carousel-track.dragging {
    cursor: grabbing;
    user-select: none;
}

.carousel-card {
    flex: 0 0 calc(90% - 0.5rem);
    scroll-snap-align: start;
}

.carousel-indicators {
    margin-top: 0.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--answer-bg);
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.recent-result-body {
    padding: 0.85rem;
}

.recent-result-body .test-card-title {
    padding: 0;
    margin-bottom: 0.55rem;
}

.recent-result-type {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
}

.recent-result-summary {
    margin: 0.65rem 0 0;
    font-size: 0.93rem;
    line-height: 1.5;
    opacity: 0.9;
    white-space: pre-line;
}

.text-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}

.text-link-list a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
    opacity: 0.9;
}

.text-link-list a:hover {
    opacity: 1;
}

.test-view-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.progress-block {
    margin: 0.6rem 0 1.1rem;
}

.progress-track {
    width: 100%;
    height: 10px;
    background: var(--answer-bg);
    border: 1px solid var(--border);
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    width: 0;
    height: 100%;
    background: var(--primary);
    transition: width 0.25s ease;
}

.progress-text {
    margin: 0.45rem 0 0;
    font-size: 0.92rem;
    color: var(--text);
}

#question-container {
    margin-bottom: 1.5rem;
}

#question {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

#question-scenario {
    margin: 0 0 0.7rem;
    padding: 0.75rem 0.85rem;
    border: 1px dashed var(--border);
    border-radius: 10px;
    background: var(--answer-bg);
    line-height: 1.6;
    font-size: 0.96rem;
}

#answers button {
    display: block;
    width: 100%;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border: 1px solid var(--border);
    border-radius: 5px;
    background-color: var(--answer-bg);
    color: var(--text);
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: left;
}

#answers button:hover {
    background-color: var(--answer-hover);
}

#answers button.selected {
    background-color: var(--answer-selected);
}

#next-btn,
#prev-btn,
#view-result-btn,
.primary-link,
#back-to-list-btn,
#admin-login-btn,
#admin-logout-btn,
#add-question-btn,
#apply-question-count,
#save-basic-btn,
#save-questions-btn,
#save-results-btn,
.admin-question button,
.table-action-wrap button,
#go-create-btn,
#list-prev-page,
#list-next-page,
#back-to-list-btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--container-bg);
    padding: 0.7rem 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
}

button:hover,
#next-btn:hover,
#prev-btn:hover,
#view-result-btn:hover,
.primary-link:hover {
    background-color: var(--primary-hover);
}

.question-actions {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
}

#next-btn:disabled,
#prev-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

#result-container {
    margin-top: 2rem;
}

#result {
    font-size: 1.2rem;
    margin: 0.35rem 0 0.75rem;
    font-weight: 700;
}

#result-description {
    white-space: normal;
    line-height: 1.52;
    font-size: 1rem;
}

#result-description h2,
#result-description h3,
#result-description h4 {
    margin: 0.6rem 0 0.35rem;
    line-height: 1.35;
}

#result-description p {
    margin: 0.2rem 0 0.55rem;
    line-height: 1.52;
}

#result-description ul,
#result-description ol {
    margin: 0.3rem 0 0.65rem 1.1rem;
    padding: 0;
}

#result-description li {
    margin: 0.15rem 0;
    line-height: 1.45;
}

.result-guide-image {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 10px;
    border: 1px solid var(--border);
    margin: 0.35rem auto 0.95rem;
}

.recent-result-guide-image {
    max-width: none;
    margin: 0.75rem 0 0.95rem;
}

.share-section {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border);
}

.share-title {
    margin: 0 0 0.65rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

.share-icons {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--answer-bg);
    color: var(--text);
    cursor: pointer;
    font-weight: 700;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.share-btn:hover {
    background: var(--answer-hover);
}

.doc-copy-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.share-btn[data-share-type="copy"] {
    background: var(--container-bg);
    color: var(--text);
}

.share-btn[data-share-type="kakao"] {
    background: #fee500;
    border-color: #fee500;
    color: #fff;
}

.share-btn[data-share-type="kakao"]:hover {
    background: #f5db00;
    border-color: #f5db00;
    color: #fff;
}

.share-btn[data-share-type="x"] {
    background: #000;
    border-color: #000;
    color: #fff;
}

.share-btn[data-share-type="x"]:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.share-btn[data-share-type="naver"] {
    background: #03c75a;
    border-color: #03c75a;
    color: #fff;
}

.share-btn[data-share-type="naver"]:hover {
    background: #02b14f;
    border-color: #02b14f;
    color: #fff;
}

.result-recommended-section {
    margin-top: 1rem;
}

.result-recommended-heading {
    margin: 0 0 0.65rem;
    font-size: 1rem;
}

.result-recommended-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
}

.result-recommended-card {
    border: 1px solid var(--border);
    background: var(--answer-bg);
    border-radius: 10px;
    padding: 0.7rem;
    cursor: pointer;
}

a.result-recommended-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.result-recommended-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 0.55rem;
}

.result-recommended-card:hover {
    background: var(--answer-hover);
}

.result-recommended-title {
    margin: 0;
    font-weight: 700;
    line-height: 1.35;
}

.result-recommended-meta {
    margin: 0.3rem 0 0;
    font-size: 0.88rem;
    opacity: 0.85;
}

.admin-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-grid {
    display: grid;
    gap: 1rem;
}

.admin-grid.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-grid label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-weight: 600;
}

.field-hint {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
}

.admin-checkbox-label {
    flex-direction: row !important;
    align-items: center;
    gap: 0.5rem !important;
    font-weight: 600;
}

.admin-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.admin-radio-group {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.6rem 0.75rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.admin-radio-group legend {
    padding: 0 0.3rem;
    font-weight: 700;
}

.admin-radio-group label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
}

.admin-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.admin-editor-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.admin-tab {
    border: 1px solid var(--border);
    background: var(--answer-bg);
    color: var(--text);
    border-radius: 999px;
    padding: 0.48rem 0.9rem;
    cursor: pointer;
}

.admin-tab.active {
    background: var(--primary);
    color: var(--container-bg);
    border-color: var(--primary);
}

.admin-tab-panel {
    margin-top: 0.95rem;
}

.inline-control {
    display: flex;
    gap: 0.5rem;
}

.inline-control input {
    width: 110px;
}

.image-upload-block img,
.image-preview-wrap img {
    width: 100%;
    max-width: 240px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.image-preview-wrap {
    border: 1px dashed var(--border);
    border-radius: 8px;
    padding: 0.7rem;
}

.admin-section-block {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.admin-section-divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 1rem 0;
}

.result-config-grid .full-width {
    grid-column: 1 / -1;
}

.mbti-weight-guide table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5rem;
}

.mbti-weight-guide th,
.mbti-weight-guide td {
    border: 1px solid var(--border);
    padding: 0.55rem;
    text-align: left;
}

.question-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-question {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.9rem;
    background: var(--answer-bg);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.answers-editor {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.answer-editor {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.65rem;
    background: var(--container-bg);
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.weight-row {
    display: flex;
    gap: 0.4rem;
}

.weight-row input {
    width: 92px;
}

.score-preview {
    margin: 0;
    font-size: 0.88rem;
    opacity: 0.85;
}

.admin-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.admin-error {
    color: var(--danger);
    font-weight: 700;
}

.admin-security-note {
    opacity: 0.85;
}

.admin-left-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.admin-inline-link {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
    opacity: 0.9;
}

.admin-list-status {
    margin: 0.2rem 0 0.8rem;
}

.admin-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 10px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.admin-table th,
.admin-table td {
    border-bottom: 1px solid var(--border);
    padding: 0.6rem 0.65rem;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
}

.admin-table th {
    background: var(--answer-bg);
    font-weight: 700;
}

.admin-table tbody tr:last-child td {
    border-bottom: 0;
}

.table-action-wrap {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.admin-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 0.9rem;
}

.admin-pagination p {
    margin: 0;
}

.site-footer {
    border-top: 1px solid var(--border);
    background: var(--bar-bg);
    padding: 1rem;
}

.site-footer-inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-footer-inner p {
    margin: 0;
    font-size: 0.92rem;
    opacity: 0.9;
}

.footer-links {
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .admin-grid.two-col,
    .answers-editor {
        grid-template-columns: 1fr;
    }

    .test-view-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .content-section {
        margin-top: 1.6rem;
    }

    .section-head-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (min-width: 640px) {
    .carousel-card {
        flex-basis: calc(45% - 0.5rem);
    }

    .result-recommended-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .carousel-card {
        flex-basis: calc(30% - 0.5rem);
    }

    .result-recommended-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 0 0.75rem;
    }

    .container {
        width: 100%;
        padding: 1.3rem;
    }

    .text-link-list {
        gap: 0.6rem 0.8rem;
    }

    .site-footer {
        padding: 0.85rem 0.75rem;
    }
}
