/* ============================================================
   Gravity Portal Blog - 静的サイト用CSS
   Phase 3: 読みやすさ向上 + squircle角丸 + マイクロインタラクション
   ============================================================ */

/* --- カスタムプロパティ（ダークテーマ：デフォルト） --- */
:root {
    --bg-primary: #0f1017;
    --bg-secondary: #161822;
    --bg-card: #1e2030;
    --text-primary: #f0f0f8;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    --accent: #7c7ff2;
    --accent-hover: #9b9ef8;
    --accent-glow: rgba(124, 127, 242, 0.18);
    --border: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.2);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px var(--accent-glow);
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-spring: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    color-scheme: dark;
}

/* --- ライトテーマ --- */
html[data-theme="light"] {
    --bg-primary: #f5f5fa;
    --bg-secondary: #eeeef5;
    --bg-card: #ffffff;
    --text-primary: #1a1a2e;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --accent: #6366f1;
    --accent-hover: #4f46e5;
    --accent-glow: rgba(99, 102, 241, 0.12);
    --border: rgba(0, 0, 0, 0.1);
    --border-hover: rgba(0, 0, 0, 0.2);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.12);
    color-scheme: light;
}

/* --- リセット & ベース --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-hover);
}

/* ============================================================
   ブログ一覧ページ
   ============================================================ */

.blog-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

.header {
    margin-bottom: 2rem;
}

.back-link {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    transition: color var(--transition-fast);
}

.back-link:hover {
    color: var(--accent);
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.page-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- タグフィルター --- */
.tag-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.tag {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    background: rgba(99, 102, 241, 0.08);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
    border: 1px solid rgba(99, 102, 241, 0.15);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tag:hover {
    background: rgba(99, 102, 241, 0.18);
    border-color: rgba(99, 102, 241, 0.35);
}

.tag-active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* --- 記事グリッド --- */
.article-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.article-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-spring);
}

.article-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px) scale(1.01);
}

.article-card:active {
    transform: translateY(0) scale(0.98);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.date {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.tags {
    display: flex;
    gap: 0.35rem;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.card-excerpt {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================
   ブログ記事詳細ページ — 読みやすさ特化
   ============================================================ */

.article-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* --- パンくずナビ --- */
.breadcrumb {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.separator {
    color: var(--text-muted);
    opacity: 0.4;
}

.current {
    color: var(--text-primary);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 300px;
}

/* --- 記事カード --- */
.article {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 3rem;
    margin-bottom: 2rem;
}

.article-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
}

/* --- 記事本文 — 読みやすさ最優先 --- */
.content {
    line-height: 2;
    font-size: 1rem;
    color: var(--text-primary);
    letter-spacing: 0.01em;
    word-break: break-word;
}

.content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(124, 127, 242, 0.2);
    color: var(--text-primary);
}

.content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
    color: var(--accent-hover);
}

.content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
    color: var(--text-primary);
}

.content p {
    margin: 1rem 0;
}

.content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(124, 127, 242, 0.3);
    transition: text-decoration-color var(--transition-fast);
}

.content a:hover {
    text-decoration-color: var(--accent);
}

.content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.content em {
    color: var(--text-secondary);
    font-style: italic;
}

.content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2rem 0;
}

.content ul,
.content ol {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.content li {
    margin: 0.5rem 0;
    line-height: 1.8;
}

.content li::marker {
    color: var(--accent);
}

/* テーブル横スクロール用ラッパー */
.table-scroll {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: var(--radius-sm);
}

.content table,
.table-scroll table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    table-layout: auto;
    margin: 0;
}

.content thead,
.table-scroll thead {
    background: rgba(99, 102, 241, 0.08);
}

.content th,
.content td,
.table-scroll th,
.table-scroll td {
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--border);
    text-align: center;
    white-space: nowrap;
}

/* 左端の列（項目名）は左揃え・折り返し可 */
.content th:first-child,
.content td:first-child,
.table-scroll th:first-child,
.table-scroll td:first-child {
    text-align: left;
    white-space: normal;
    min-width: 80px;
}

.content th,
.table-scroll th {
    font-weight: 600;
    color: var(--accent);
}

.content td,
.table-scroll td {
    color: var(--text-secondary);
}

.content tr:nth-child(even),
.table-scroll tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

/* コードブロック */
.content code {
    background: rgba(255, 255, 255, 0.06);
    padding: 0.2rem 0.45rem;
    border-radius: 6px;
    font-size: 0.85em;
    font-family: var(--font-mono);
    color: var(--accent-hover);
}

.content pre {
    background: rgba(0, 0, 0, 0.35);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: 1.25rem 0;
    border: 1px solid var(--border);
}

.content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* 画像 */
.content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 1.25rem 0;
    border: 1px solid var(--border);
}

/* 引用 */
.content blockquote {
    border-left: 3px solid var(--accent);
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--text-secondary);
    font-style: italic;
}

.content blockquote p {
    margin: 0.5rem 0;
}

/* --- ライトモード固有の調整 --- */
html[data-theme="light"] .content thead {
    background: rgba(99, 102, 241, 0.06);
}

html[data-theme="light"] .content tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

html[data-theme="light"] .content code {
    background: rgba(0, 0, 0, 0.05);
    color: var(--accent);
}

html[data-theme="light"] .content pre {
    background: #f0f0f6;
    border-color: rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] .content blockquote {
    background: rgba(99, 102, 241, 0.04);
}

html[data-theme="light"] .content img {
    border-color: rgba(0, 0, 0, 0.08);
}

/* --- 前後記事ナビゲーション --- */
.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.post-nav-prev {
    text-align: left;
}

.post-nav-next {
    text-align: right;
}

.post-nav-link {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: all var(--transition-spring);
}

.post-nav-link:hover {
    border-color: var(--accent);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.post-nav-link:active {
    transform: translateY(0) scale(0.98);
}

.post-nav-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-nav-title {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* --- 戻るナビ --- */
.back-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
    .article {
        padding: 1.5rem 1.25rem;
        border-radius: var(--radius-md);
    }

    .title {
        font-size: 1.35rem;
    }

    .content {
        font-size: 0.95rem;
        line-height: 1.9;
    }

    .content h2 {
        font-size: 1.2rem;
        margin: 2rem 0 0.75rem;
    }

    .content h3 {
        font-size: 1.05rem;
    }

    /* テーブル: スマホ用調整 */
    .content table,
    .table-scroll table {
        font-size: 0.8rem;
    }

    .content th,
    .content td,
    .table-scroll th,
    .table-scroll td {
        padding: 0.4rem 0.5rem;
    }

    .blog-page {
        padding: 1.5rem 1rem;
    }

    .article-page {
        padding: 1.5rem 0.75rem;
    }

    .post-nav {
        grid-template-columns: 1fr;
    }
}

/* --- ページネーション --- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.6rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.page-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow);
}

.page-active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.page-active:hover {
    background: var(--accent-hover);
}

/* タグフィルタのbuttonリセット */
.tag-filter button.tag {
    font-family: var(--font-sans);
}

/* --- テーマ切替ボタン（フローティング） --- */
.blog-theme-toggle {
    position: fixed;
    top: 1rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

.blog-theme-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow);
    box-shadow: var(--shadow-glow);
    transform: scale(1.1);
}

/* ============================================================
   Amazon アフィリエイト広告セクション
   ============================================================ */

.amazon-ads-section {
    margin-top: 2.5rem;
    padding: 1.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.amazon-ads-heading {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.amazon-ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.amazon-ad-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-spring);
}

.amazon-ad-card:hover {
    border-color: #f59e0b;
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.15);
    transform: translateY(-2px) scale(1.02);
    color: var(--text-primary);
}

.amazon-ad-card:active {
    transform: translateY(0) scale(0.98);
}

.amazon-ad-emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.amazon-ad-title {
    flex: 1;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}

.amazon-ad-badge {
    font-size: 0.65rem;
    font-weight: 600;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    padding: 0.2rem 0.5rem;
    border-radius: 9999px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* --- Amazon 検索ボックス --- */
.amazon-search-box {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.amazon-search-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.amazon-logo-text {
    display: inline-block;
    position: relative;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

/* TODO: Amazonアソシエイト承認後に復元する（商標ロゴ模倣防止のため一時無効化）
.amazon-logo-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 15%;
    width: 70%;
    height: 4px;
    background: #f59e0b;
    border-radius: 0 0 4px 4px;
    clip-path: ellipse(50% 100% at 50% 0%);
}
*/

.amazon-search-form {
    display: flex;
    gap: 0.5rem;
}

.amazon-search-input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-family: var(--font-sans);
    outline: none;
    transition: border-color var(--transition-fast);
}

.amazon-search-input::placeholder {
    color: var(--text-muted);
}

.amazon-search-input:focus {
    border-color: var(--accent);
}

.amazon-search-btn {
    padding: 0.5rem 1.25rem;
    background: #f59e0b;
    color: #000;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.amazon-search-btn:hover {
    background: #d97706;
    transform: scale(1.05);
}

.amazon-ads-note {
    margin-top: 0.75rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: right;
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
    .amazon-ads-grid {
        grid-template-columns: 1fr;
    }

    .amazon-ads-section {
        padding: 1.25rem;
    }
}

/* ============================================================
   忍者AdMax 広告スロット（ブログ記事内）
   ============================================================ */

/* --- 記事内インライン広告（中間・末尾） --- */
/* 初期状態: 広告未読込時はスペースを取らない */
.ninja-ad-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    text-align: center;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, margin 0.3s ease, padding 0.3s ease;
}

/* 広告が読み込まれたらスペースを展開 */
.ninja-ad-slot.ad-loaded {
    gap: 0.25rem;
    margin: 2rem 0;
    padding: 1rem;
    max-height: 500px;
}

.ninja-ad-label {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    opacity: 0.6;
}

/* --- スライドイン広告（左から出現） --- */
.ninja-slide-ad {
    position: fixed;
    left: 0;
    bottom: 80px;
    z-index: 998;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1rem 1rem 0.75rem;
    box-shadow: var(--shadow-md);
    animation: slideInFromLeft 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    max-width: 340px;
    overflow: hidden;
}

.ninja-slide-close {
    position: absolute;
    top: 4px;
    right: 8px;
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.ninja-slide-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

html[data-theme="light"] .ninja-slide-close:hover {
    background: rgba(0, 0, 0, 0.06);
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* --- レスポンシブ: スライドイン広告 --- */
@media (max-width: 768px) {
    .ninja-slide-ad {
        bottom: 60px;
        max-width: 280px;
        padding: 0.75rem 0.75rem 0.5rem;
    }
}

/* ============================================================
   Note有料記事 導線バナー
   ============================================================ */

.note-banner {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin: 2.5rem 0;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(168, 85, 247, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.note-banner:hover {
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.12);
}

.note-banner-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}

.note-banner-body {
    flex: 1;
}

.note-banner-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
    line-height: 1.4;
}

.note-banner-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0 0 1rem;
    line-height: 1.6;
}

.note-banner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--accent), #a855f7);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none !important;
    transition: all var(--transition-spring);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.note-banner-link:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
    color: #fff !important;
}

.note-banner-link:active {
    transform: translateY(0) scale(0.98);
}

/* ライトモード調整 */
html[data-theme="light"] .note-banner {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(168, 85, 247, 0.05));
}

/* レスポンシブ */
@media (max-width: 768px) {
    .note-banner {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem;
    }

    .note-banner-icon {
        font-size: 1.5rem;
    }

    .note-banner-link {
        width: 100%;
        justify-content: center;
    }
}