.site-header {
    height: 115px;
}
.h1-yashchique {
    margin-top: 2em;
    text-align: center;
    font-size: 2em;
    font-family: var(--system-ui);
}
.yashchique-description {
    display: block; 
    margin: 0 auto;
    max-width: 700px;
    font-size: 0.85em;
    color: var(--supporting-text);
}
.post-stamps {
    margin-top: 1.5em;
    font-size: 0.9em;
    color: #333; 
    text-align: center;
    display: flex; 
    justify-content: center;
    gap: 1.5em 0.75em;
    flex-wrap: wrap;
}
.post-stamps a {
    background-color: rgba(186, 85, 211, 0.12); 
    color: #BA55D3;
    border: 1px solid rgba(186, 85, 211, 0.4);
    padding: 0.5em 0.9em;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.post-stamps a:hover,
.post-stamps a:focus {
    background-color: rgba(186, 85, 211, 0.25);
    border-color: #BA55D3;
    color: #DDA0DD; 
    outline: none; 
}
.post-stamps a:active {
    box-shadow: 2px 2px 4px -1px rgba(0,0,0,0.6) inset;
    background-color: rgba(186, 85, 211, 0.35);
    border-color: #BA55D3;
    color: #E6C5EB;
}
.stamp-page-header {
    margin-bottom: 1.8em;
    text-align: center;
}
.highlighted-stamp {
    color: var(--supporting-text);
    margin-right: 0.1em;
}
.all-stamps-container { 
    display: flex; 
    flex-wrap: wrap;
    gap: 1.5em 35px; 
    justify-content: center;
    padding-top: 1.5em;
    padding-bottom: 2.5em;
}
a.rss-link {
    display: inline-flex;
    align-items: baseline;
    gap: 1px; 
    color: var(--supporting-text);
    text-decoration: none;
    transition: none;
}  
a.rss-link::before {
    content: "";
    display: inline-block;
    position: relative;
    top: 2px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23A9A39F' viewBox='0 0 32 32'%3E%3Ccircle cx='6.566' cy='25.434' r='3.566'/%3E%3Cpath d='M20.234,29h-5.051c0-6.728-5.454-12.183-12.183-12.183h0v-5.051c9.518,0,17.234,7.716,17.234,17.234Z'/%3E%3Cpath d='M23.8,29c0-11.488-9.312-20.8-20.8-20.8V3c14.359,0,26,11.641,26,26h-5.2Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}  
a.rss-link:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FF6600' viewBox='0 0 32 32'%3E%3Ccircle cx='6.566' cy='25.434' r='3.566'/%3E%3Cpath d='M20.234,29h-5.051c0-6.728-5.454-12.183-12.183-12.183h0v-5.051c9.518,0,17.234,7.716,17.234,17.234Z'/%3E%3Cpath d='M23.8,29c0-11.488-9.312-20.8-20.8-20.8V3c14.359,0,26,11.641,26,26h-5.2Z'/%3E%3C/svg%3E");
}
a.rss-link:hover {
    color: #FF6600; 
}