/*
Theme Name: Den Uperfekte Have
Description: Brugerdefineret tema til haveunivers og webshop
Version: 1.0
*//* =================================================================imperfect-garden design system & variabler === */
:root {
    --color-bg: #f9f6f0;
    --color-card: #ffffff;
    --color-primary: #2d4a3e;     /* Dyb skovgrøn */
    --color-accent: #e07a5f;      /* Terrakotta / Varm rav */
    --color-soft-green: #eef3f0;
    --color-text: #2b2d42;
    --color-muted: #6c757d;
    --color-border: rgba(45, 74, 62, 0.12);
    
    --footer-bg: #1e332b;
    --footer-card-bg: #264036;
    --footer-text: #e8edea;
    --footer-muted: #a3b8b0;
    
    --radius-lg: 20px;
    --radius-sm: 10px;
    --radius-full: 999px;
    
    --shadow-soft: 0 10px 30px rgba(45, 74, 62, 0.08);
    --shadow-hover: 0 20px 40px rgba(45, 74, 62, 0.15);
    --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Grundlæggende indstillinger --- */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
}

img {
    border: 0;
    height: auto;
    max-width: 100%;
    display: block;
    -ms-interpolation-mode: bicubic;
}

/* --- Top Bar & Header (Sticky Glassmorphism) --- */
.top-bar {
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    padding: 0.5rem 1rem;
    letter-spacing: 0.03em;
}

.top-bar span {
    opacity: 0.9;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(249, 246, 240, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.site-logo span.icon {
    font-size: 1.5rem;
    display: inline-block;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.site-logo:hover span.icon {
    transform: rotate(10deg) scale(1.1);
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.75rem;
}

.nav-menu a,
.site-navigation a,
header nav a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.2s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover,
.site-navigation a:hover,
header nav a:hover {
    color: var(--color-primary);
    opacity: 0.9;
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-action-btn {
    background: transparent;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.2s ease, transform 0.2s ease;
}

.header-action-btn:hover {
    background: rgba(45, 74, 62, 0.06);
    transform: translateY(-1px);
}

.header-action-btn svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--color-accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
}

/* --- Hero Sections --- */
.hero-v2, .bf-hero, .guide-hero, .vh-hero {
    position: relative;
    padding: 4.5rem 1.5rem 3.5rem;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(45, 74, 62, 0.08) 0%, transparent 70%);
    overflow: hidden;
}

.hero-v2 h1, .bf-hero h1, .guide-hero h1, .vh-hero h1, .page-title, .log-title, .pr-title, .om-title, .kt-title, .hb-title, .pp-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 1rem 0;
}

.hero-v2 p, .bf-hero p, .guide-hero p, .log-subtitle, .pr-subtitle, .om-subtitle, .kt-subtitle, .hb-subtitle, .pp-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--color-muted);
    max-width: 620px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* --- Interaktive Sæson- / Kategori-tags (Pills) --- */
.filter-pills, .filter-pills-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    list-style: none;
    padding: 0;
}

.pill-btn, .filter-pill-item a {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--color-border);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary);
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
}

.pill-btn:hover, 
.pill-btn.active,
.filter-pill-item.active a,
.filter-pill-item a:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 74, 62, 0.2);
}

/* --- Layout Wrappers & Containers --- */
.container-v2, .log-archive-container, .bf-container, .success-container, .archive-container, .page-container, .pr-container, .pp-container, .om-container, .guide-container, .kt-container, .hb-container, .vh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 5rem;
}

.main-content-area, .log-archive-wrapper, .bf-wrapper, .success-wrapper, .archive-wrapper, .page-wrapper, .pr-wrapper, .pp-wrapper, .om-wrapper, .guide-wrapper, .kt-wrapper, .hb-wrapper, .vh-wrapper {
    background-color: var(--color-bg);
    color: var(--color-text);
    padding-top: 3rem;
    min-height: 75vh;
}

/* --- Produkt- og Kort-grids (Unified Product Cards) --- */
.products-grid-v2, .log-products-grid, .bf-grid, .products-grid, .pr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 2rem;
}

.product-card-v2, .log-card, .bf-card, .product-card, .pr-card, .page-card, .om-card, .pp-card, .hb-card {
    position: relative;
    background: var(--color-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card-v2:hover, .log-card:hover, .product-card:hover, .pr-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-image-wrapper, .log-img-wrapper, .bf-card-img, .product-image-link, .pr-img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-soft-green);
}

.card-image-wrapper img, .log-img-wrapper img, .bf-card-img img, .product-image, .pr-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card-v2:hover .card-image-wrapper img,
.log-card:hover .log-img-wrapper img,
.bf-card:hover .bf-card-img img,
.product-card:hover .product-image,
.pr-card:hover .pr-img-wrap img {
    transform: scale(1.07);
}

/* Badges ovenpå billeder */
.badge-category, .log-badge-cat, .pr-badge-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--color-primary);
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    pointer-events: none;
}

/* Kort indhold & Typografi */
.product-info-v2, .log-details, .bf-card-content, .product-info, .pr-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name-v2, .log-item-title, .bf-plant-name, .product-name, .pr-title-link {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.product-name-v2 a, .log-item-title a, .product-name a, .pr-title-link a {
    color: inherit;
    text-decoration: none;
}

/* Fuld-kort klikbart overlay uden JS-hacks */
.product-name-v2 a::after, .log-item-title a::after, .pr-title-link a::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.product-footer, .log-card-footer, .product-bottom, .pr-bottom {
    margin-top: auto;
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price-v2, .log-price, .product-price, .pr-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-primary);
}

/* CTA Knapper */
.add-to-cart-v2, .log-btn-add, .add-to-cart, .btn-pr-add {
    position: relative;
    z-index: 2;
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    padding: 0.65rem 1.15rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.add-to-cart-v2:hover, .log-btn-add:hover, .add-to-cart:hover, .btn-pr-add:hover {
    background: var(--color-accent);
    transform: scale(1.03);
}

/* --- Standard Indhold / Artikler / Gutenberg stilarter --- */
.entry-content, .page-content {
    color: var(--color-text);
    font-size: 1.05rem;
    line-height: 1.75;
}

.entry-content h2, .entry-content h3, .page-content h2, .page-content h3 {
    color: var(--color-primary);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content blockquote, .page-content blockquote {
    border-left: 4px solid var(--color-accent);
    margin: 1.5rem 0;
    padding: 0.75rem 1.5rem;
    background: #f4ece1;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--color-primary);
}

/* --- Footer Styling --- */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0 0 1.25rem 0;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a, .footer-col p {
    color: var(--footer-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--footer-muted);
}

/* --- Tilgængelighed (Reduced Motion) --- */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
    .product-card-v2:hover,
    .log-card:hover,
    .product-card:hover,
    .pr-card:hover {
        transform: none !important;
    }
/* --- Komplet nulstilling og opbygning af kontaktformular --- */
.kt-form-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.kt-form-card h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #2b2d42;
}

/* Skjul ikke noget, tving elementerne til at stå under hinanden */
.kt-form-card form {
    display: block !important;
    width: 100% !important;
}

.kt-form-group {
    display: block !important;
    margin-bottom: 1.25rem !important;
}

.kt-form-group label {
    display: block !important;
    margin-bottom: 0.5rem !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    color: #2b2d42 !important;
}

/* Sørg for at input og textarea tager hele bredden og ikke flyder sammen med tekst */
.kt-form-card input.kt-form-control,
.kt-form-card textarea.kt-form-control {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    padding: 0.8rem 1rem !important;
    background-color: #f9fbf9 !important;
    border: 1px solid #d1dcd5 !important;
    border-radius: 8px !important;
    font-family: inherit !important;
    font-size: 1rem !important;
    color: #2b2d42 !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
}

.kt-form-card input.kt-form-control:focus,
.kt-form-card textarea.kt-form-control:focus {
    outline: none !important;
    border-color: #2d4a3e !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(45, 74, 62, 0.12) !important;
}

.kt-form-card textarea.kt-form-control {
    min-height: 150px !important;
    resize: vertical !important;
}

.kt-form-card .kt-btn-submit {
    display: inline-block !important;
    width: auto !important;
    background: #2d4a3e !important;
    color: #ffffff !important;
    border: none !important;
    padding: 0.8rem 2rem !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
}

.kt-form-card .kt-btn-submit:hover {
    background: #e07a5f !important;
    transform: translateY(-2px) !important;
}
:root {
    --color-deep-forest: #2C4A3B;
    --color-clay: #A67B5B;
    --color-cream: #FBF9F3; /* Opdateret til den varme cremenuance fra designet */
    --color-leaf: #899E6B;
    --color-hero-btn: #9BB088;
    --max-width: 1200px;
}
/* Nulstil globale links så de arver farven fra deres parent container */
a {
    color: inherit;
    text-decoration: none;
}

/* Hvis links har en hover-tilstand */
a:hover {
    color: inherit;
}


/* Typografi */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('assets/fonts/inter-v20-latin-regular.woff2') format('woff2');
}

h1, h2, h3,h4 .hero-title { 
    font-family: 'Playfair Display', Georgia, serif; 
}  
@layer components {
  .prose h4,
  .prose .wp-block-heading {
    @apply text-1xl font-bold text-[#2D2B26] mt-8 mb-4;
  }

    @layer components {
  .prose h3,
  .prose .wp-block-heading {
    @apply text-2xl font-bold text-[#2D2B26] mt-8 mb-4;
  }
 @layer components {
  .prose h2,
  .prose .wp-block-heading {
    @apply text-3xl font-bold text-[#2D2B26] mt-8 mb-4;
  }
@layer components {
  .prose h1,
  .prose .wp-block-heading {
    @apply text-4xl font-bold text-[#2D2B26] mt-8 mb-4;
  }

}

body { 
    font-family: 'Inter', -apple-system, sans-serif; 
    background-color: var(--color-cream);
    color: var(--color-deep-forest);
    margin: 0;
    padding: 0;
}

.front-page-main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 20px 4rem 20px;
    box-sizing: border-box;
}

/* --- 1. SØGEBAR --- */
.front-search-section {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.front-search-form {
    width: 100%;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 18px;
    color: #8C8A85;
    pointer-events: none;
}

.front-search-field {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: 1px solid #E2DFC9;
    border-radius: 6px;
    background-color: #FFFFFF;
    font-size: 0.95rem;
    color: var(--color-deep-forest);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.front-search-field:focus {
    border-color: var(--color-deep-forest);
    box-shadow: 0 0 0 3px rgba(44, 74, 59, 0.1);
}

/* --- 2. HERO SEKTION --- */
.hero-pathfinder {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fallback-hero-img {
    background: linear-gradient(135deg, #3A5340 0%, #203529 100%);
}

.hero-pathfinder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.hero-content-overlay {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #FFFFFF;
    max-width: 720px;
    padding: 0 20px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 400;
    margin: 0 0 1rem 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #F3F1EA;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-hero-action {
    display: inline-block;
    background-color: var(--color-hero-btn);
    color: #1F3025;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-hero-action:hover {
    background-color: #B2C79E;
    transform: translateY(-1px);
}

/* --- 3. SEKTION OG ARTIKKORT --- */
.section-heading {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-deep-forest);
    margin-bottom: 1.5rem;
}

.pathfinder-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pathfinder-card {
    background: transparent;
    border-top: 1px solid #E2DFC9;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-size: 1.35rem;
    margin: 0 0 0.75rem 0;
    font-weight: 400;
}

.card-title a {
    color: var(--color-deep-forest);
    text-decoration: none;
}

.card-title a:hover {
    color: var(--color-clay);
}

.card-excerpt p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #55544E;
    margin: 0 0 1rem 0;
}

.card-link-more {
    color: var(--color-deep-forest);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
}

.card-link-more:hover {
    text-decoration: underline;
}

/* --- RESPONSIVITET --- */
@media (max-width: 900px) {
    .pathfinder-posts-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
    
    .hero-pathfinder {
        height: 380px;
    }
  /* Grid Setup: 70% / 30% med responsivt skift til 100% på mobil */
.art-layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 992px) {
    .art-layout-grid {
        grid-template-columns: 70% 30%;
    }
}

/* Artskort CSS */
.art-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.art-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a2b;
    margin: 0 0 0.25rem 0;
}

.art-latin {
    font-style: italic;
    color: #555555;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.art-meta-grid {
    background-color: #f7f9f6;
    border-radius: 8px;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.art-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #2d5a27;
    margin-bottom: 0.2rem;
}

.art-value {
    font-size: 0.85rem;
    color: #333333;
    line-height: 1.35;
}

.art-description {
    font-size: 0.85rem;
    color: #444444;
    line-height: 1.4;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px dashed #e2e8f0;
}
  .post-brand {
  margin-bottom: 1.5rem;
}

.post-logo {
  height: 40px; /* Tilpas højden */
  width: 40px;
  display: block;
}
}