/* Rubedo Spa Blog Design */
@font-face {
    font-family: "Rubedo Bodoni";
    src: url("../fonts/bodoni/subset-BodoniSvtyTwoITCTT-Book.woff") format("woff");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Rubedo Montserrat";
    src: url("../fonts/montserrat-v26-latin/montserrat-v26-latin-regular.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Rubedo Montserrat";
    src: url("../fonts/montserrat-v26-latin/montserrat-v26-latin-600.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: "Rubedo Montserrat";
    src: url("../fonts/montserrat-v26-latin/montserrat-v26-latin-700.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 700;
}

/* Variablen basierend auf dem Screenshot */
:root {
    --rubedo-gold: #8f6732;
    --rubedo-dark: #333333;
    --rubedo-light-bg: #f9f7f4; /* Vermuteter heller Hintergrund */
    --rubedo-font-serif: "Rubedo Bodoni", "Times New Roman", serif;
    --rubedo-font-sans: "Rubedo Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Allgemeines Layout Single Post */
.single-post #content {
    background-color: #fff;
}

.single-post .entry-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

/* Titel Styling */
.single-post h1.entry-title,
.single-post h1 {
    font-family: var(--rubedo-font-serif);
    color: var(--rubedo-gold);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Meta Daten */
.single-post .entry-meta {
    font-family: var(--rubedo-font-sans);
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 2rem;
}

.single-post .entry-meta a {
    color: #6f4b24;
    text-decoration: underline;
    font-weight: bold;
}

/* Kategorie Badge Style Anpassung */
.single-post .category-badge a.badge {
    background-color: var(--rubedo-gold) !important;
    color: #fff !important;
    border-radius: 50px;
    padding: 0.5em 1em;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.7rem;
    margin-bottom: 1rem;
}

/* Bogen-Bild (Arch) Effekt für das Hauptbild */
.rubedo-single-featured-image {
    position: relative;
    margin-bottom: 4rem;
    text-align: center;
}

.rubedo-single-featured-image img {
    border-radius: 300px 300px 0 0; /* Arch Form */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 100%;
    height: auto;
    object-fit: cover;
    /* Optional: Aspect Ratio erzwingen, falls Bilder unterschiedlich sind */
    /* aspect-ratio: 4 / 3; */ 
}

/* Content Styling */
.entry-content {
    font-family: var(--rubedo-font-sans);
    line-height: 1.8;
    color: var(--rubedo-dark);
    font-size: 1.1rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content a,
.card-text a,
.category-badge a.badge {
    text-decoration: underline;
    text-underline-offset: 0.15em;
    text-decoration-thickness: 0.08em;
}

.entry-content h2, 
.entry-content h3, 
.entry-content h4 {
    font-family: var(--rubedo-font-serif);
    color: var(--rubedo-gold);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

/* Dropcap (Optional - Erstes Zeichen groß) */
.entry-content > p:first-of-type::first-letter {
    float: left;
    font-family: var(--rubedo-font-serif);
    font-size: 4rem;
    line-height: 0.8;
    padding-right: 10px;
    color: #8f6732;
}

/* Footer Bereich des Posts */
.entry-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

/* Tags */
.tags-links a {
    color: #383838;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 5px 15px;
    margin-right: 5px;
    text-decoration: underline;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.tags-links a:hover {
    background-color: var(--rubedo-gold);
    color: #fff;
    border-color: var(--rubedo-gold);
}

/* Pagination Buttons */
.page-item a {
    color: var(--rubedo-dark);
    border: none;
    background: transparent;
    font-family: var(--rubedo-font-serif);
    font-style: italic;
}

.page-item a:hover {
    color: var(--rubedo-gold);
    background: transparent;
}
