:root {
    /* デフォルトの色設定 */
    --background: #181b22;
    --primary:    #709c87;
    --secondary:  #2a322d;
    --tertiary:   #36413b;
    --accent:     #3b5e48;
    --text-color: #e0e0e0;
    --link-color: #c89ba9;

    /* 共通の色設定 */
    --black:      #000000;
    --white:      #ffffff;
}

    /* ライトモードの色設定 */
[data-theme="light"] {
    --background: #f4fbf6;
    --primary:    #4caf50;
    --secondary:  #e1f0e6;
    --tertiary:   #cde7d5;
    --accent:     #ddeedb;
    --text-color: #3e5444;
    --link-color: #b84569;
}

body {
    background-color: var(--background);
    color: var(--text-color);
    font-size: 0.95em;
}

a {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

hr {
    border: none;
    border-top: 1px dotted var(--link-color);
    margin: 1.5em 0;
}

.posts.h-feed img {
    border-radius: 0 !important;
}

.latest-posts h4 {
    display: none;
}

.latest-posts .view-all {
  display: none;
}

.archive.h-feed > div > p {
  display: none;
}