/* =========================================================
   Fonts
========================================================= */

@font-face {
    font-family: 'AnnyeongSans';
    src: url('../fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AnnyeongDisplay';
    src: url('../fonts/Caveat-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}


/* =========================================================
   Variables
========================================================= */

:root {
    --bg: #ffffff;
    --soft: #fff4fb;
    --soft2: #f4edff;
    --ink: #15131b;
    --muted: #6e6878;
    --line: #eee8f4;

    --pink: #f45faf;
    --violet: #8b4de8;
    --grad: linear-gradient(135deg, #ff5faf, #8b4de8);

    --shadow: 0 18px 45px rgba(48, 33, 72, 0.12);
    --radius: 24px;
    --max: 1320px;
}


/* =========================================================
   Base
========================================================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: AnnyeongSans, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.wrap {
    width: min(var(--max), calc(100% - 48px));
    margin-inline: auto;
}


/* =========================================================
   Topbar
========================================================= */

.topbar {
    background: linear-gradient(90deg, #fff0fb, #f3edff);
    font-size: 14px;
}

.topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 38px;
}

.trend {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trend b {
    color: var(--pink);
    text-transform: uppercase;
}

.social {
    display: flex;
    gap: 14px;
    color: #2d2935;
}


/* =========================================================
   Header
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(238, 232, 244, 0.75);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 104px;
}

.logo {
    font-family: AnnyeongDisplay, cursive;
    font-size: 42px;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.logo span {
    display: block;
    color: var(--violet);
    font-weight: 700;
}


/* =========================================================
   Navigation
========================================================= */

.nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.nav a {
    position: relative;
}

.nav a:hover,
.nav .current-menu-item > a {
    color: var(--pink);
}

.nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    background: var(--pink);
    transform: scaleX(0);
    transition: 0.2s;
}

.nav a:hover::after,
.nav .current-menu-item > a::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-toggle {
    font-size: 27px;
}


/* =========================================================
   Buttons
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 20px;
    border-radius: 13px;
    background: var(--grad);
    color: #ffffff;
    font-weight: 850;
    box-shadow: 0 12px 28px rgba(244, 95, 175, 0.26);
}


/* =========================================================
   Hero / Homepage
========================================================= */

.hero {
    padding: 34px 0 42px;
}

.layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 36px;
}

.layout.no-sidebar {
    grid-template-columns: minmax(0, 1fr);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.85fr);
    align-items: stretch;
    gap: 16px;
}

.stack-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.stack-grid .feature-card {
    min-height: 0;
}


/* =========================================================
   Feature Cards
========================================================= */

.feature-card {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: 18px;
    background: #19151f;
    color: #ffffff;
    box-shadow: var(--shadow);
}

.feature-card.big {
    min-height: 680px;
}

.feature-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.74));
}

.feature-content {
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: 28px;
    z-index: 2;
}

.big .feature-content {
    right: 34px;
    bottom: 34px;
    left: 34px;
}

.feature-card h2,
.feature-card h3 {
    margin: 10px 0 8px;
    line-height: 1.2;
}

.feature-card h2 {
    font-size: clamp(28px, 2.2vw, 32px);
}

.feature-card h3 {
    font-size: 17px;
}

.feature-card:not(.big) h3 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.feature-card:not(.big) .feature-content {
    right: 18px;
    bottom: 16px;
    left: 18px;
}

.feature-card:not(.big) .badge {
    padding: 5px 8px;
    font-size: 10px;
}

.feature-card:not(.big) .meta {
    gap: 6px;
    font-size: 11px;
}

.badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 8px;
    background: var(--grad);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}


/* =========================================================
   Section Headers
========================================================= */

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 14px 0 22px;
}

.section-head h2 {
    margin: 0;
    font-size: 24px;
}

.section-head h2::before {
    content: "✦";
    margin-right: 10px;
    color: var(--pink);
}

.more {
    color: var(--pink);
    font-weight: 800;
}


/* =========================================================
   Post Cards
========================================================= */

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.post-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(27, 19, 44, 0.06);
    transition: 0.22s;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.post-card .thumb {
    position: relative;
    aspect-ratio: 1.55 / 1;
    background: var(--soft2);
}

.post-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card .badge {
    position: absolute;
    bottom: 12px;
    left: 14px;
}

.post-card .body {
    padding: 18px;
}

.post-card h3 {
    margin: 0 0 16px;
    font-size: 18px;
    line-height: 1.28;
}

.post-card .date {
    color: var(--muted);
    font-size: 13px;
}


/* =========================================================
   Sidebar
========================================================= */

.sidebar-card {
    margin-bottom: 22px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(145deg, #fff7fc, #f7f1ff);
    box-shadow: 0 18px 40px rgba(80, 47, 110, 0.08);
}

.sidebar-card h3 {
    margin: 0 0 18px;
    font-size: 22px;
}

.mini-post {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 14px;
    margin: 0 0 17px;
}

.mini-post img,
.mini-post-placeholder {
    width: 62px;
    height: 62px;
    border-radius: 11px;
    object-fit: cover;
}

.mini-post-placeholder {
    display: block;
    background: linear-gradient(135deg, #ffe0f2, #eee4ff);
}

.mini-post h4 {
    margin: 0 0 5px;
    font-size: 14px;
    line-height: 1.35;
}


/* =========================================================
   Tags
========================================================= */

.tag-cloud,
.tagcloud,
.wp-block-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.tag-cloud a,
.tagcloud a,
.wp-block-tag-cloud a {
    padding: 7px 11px;
    border-radius: 8px;
    background: #f9d9ed;
    color: #a32675;
    font-size: 13px !important;
    font-weight: 800;
}


/* =========================================================
   Archive Pages
========================================================= */

.archive-hero {
    padding: 54px 0;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(135deg, #fff4fb, #f2edff);
}

.archive-hero h1 {
    margin: 0 0 12px;
    font-size: 46px;
    line-height: 1.05;
}

.archive-hero p {
    max-width: 720px;
    color: var(--muted);
    font-size: 18px;
}

.content-area {
    padding: 42px 0;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* =========================================================
   Single Posts
========================================================= */

.single-wrap {
    width: min(920px, calc(100% - 48px));
    margin: 0 auto;
}

.single-hero {
    padding: 50px 0 25px;
    text-align: center;
}

.single-hero .badge {
    margin-bottom: 18px;
}

.single-hero h1 {
    margin: 0 0 16px;
    font-size: 54px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.single-hero .post-meta {
    color: var(--muted);
}



/* =========================================================
   Entry Content / Gutenberg
========================================================= */

.entry-content {
    font-size: 19px;
}

.entry-content p {
    margin: 0 0 1.25em;
}

.entry-content h2 {
    margin: 1.6em 0 0.55em;
    font-size: 34px;
    line-height: 1.18;
}

.entry-content h3 {
    margin: 1.4em 0 0.5em;
    font-size: 26px;
}

.entry-content blockquote,
.wp-block-quote,
.wp-block-pullquote {
    position: relative;
    margin: 34px 0;
    padding: 32px 34px;
    border: 0;
    border-radius: 22px;
    background: linear-gradient(145deg, #fff4fb, #f3edff);
    font-family: AnnyeongDisplay, cursive;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.25;
    box-shadow: 0 18px 40px rgba(80, 47, 110, 0.08);
}

.entry-content blockquote::before,
.wp-block-quote::before {
    content: "“";
    position: absolute;
    top: -18px;
    left: 22px;
    color: rgba(244, 95, 175, 0.32);
    font-size: 82px;
}

.entry-content blockquote cite {
    display: block;
    margin-top: 14px;
    color: var(--muted);
    font-family: AnnyeongSans, sans-serif;
    font-size: 14px;
    font-style: normal;
}


/* =========================================================
   Pages
========================================================= */

.page-card {
    padding: 46px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow);
}


/* =========================================================
   Forms
========================================================= */

.search-form input {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.search-form button {
    padding: 13px 16px;
    border: 0;
    border-radius: 12px;
    background: var(--grad);
    color: #ffffff;
    font-weight: 900;
}


/* =========================================================
   Pagination
========================================================= */

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
}

.pagination .page-numbers {
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 10px;
}

.pagination .current {
    background: var(--grad);
    color: #ffffff;
}


/* =========================================================
   Comments
========================================================= */

.comments-area {
    margin-top: 44px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
}


/* =========================================================
   Footer
========================================================= */

.site-footer {
    margin-top: 56px;
    background: #111019;
    color: #ffffff;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.5fr;
    gap: 36px;
    padding: 44px 0;
}

.footer-inner.footer-columns-2 {
    grid-template-columns: 1.3fr 1fr;
}

.footer-inner.footer-columns-1 {
    grid-template-columns: 1fr;
}

.footer-column,
.footer-widget {
    min-width: 0;
}

.footer-widget + .footer-widget {
    margin-top: 24px;
}

.footer-widget:first-child > :first-child {
    margin-top: 0;
}

.footer-widget:last-child > :last-child {
    margin-bottom: 0;
}

.footer-widget ul,
.footer-widget ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-widget li + li {
    margin-top: 8px;
}

.footer-widget a:hover {
    color: var(--pink);
}

.footer-brand {
    font-size: 28px;
    font-weight: 900;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1100px) {
    .layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .cards,
    .archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .feature-card.big {
        min-height: 420px;
    }

    .nav {
        display: none;
    }
}

@media (max-width: 700px) {
    .wrap,
    .single-wrap {
        width: min(100% - 28px, var(--max));
    }

    .topbar {
        display: none;
    }

    .header-inner {
        height: 82px;
    }

    .logo {
        font-size: 32px;
    }

    .btn {
        display: none;
    }

    .stack-grid,
    .cards,
    .archive-grid,
    .footer-inner,
    .sidebar {
        grid-template-columns: 1fr;
    }

    .feature-card.big {
        min-height: 390px;
    }

    .feature-card h2,
    .single-hero h1 {
        font-size: 34px;
    }

    .single-hero {
        text-align: left;
    }

    .entry-content {
        font-size: 17px;
    }

    .page-card {
        padding: 26px;
    }
}

.nav ul,
.nav li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav > ul {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav li {
    position: relative;
}

.nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99;
    min-width: 220px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.2s ease;
}

.nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav .sub-menu li + li {
    margin-top: 6px;
}

.nav .sub-menu a {
    display: block;
    padding: 9px 12px;
    border-radius: 10px;
    color: var(--ink);
    font-size: 13px;
    text-transform: none;
}

.nav .sub-menu a:hover {
    background: var(--soft2);
    color: var(--pink);
}

.nav .sub-menu a::after {
    display: none;
}

.custom-logo{
    max-height:70px;
    width:auto;
}

.header-inner{
    height:90px;
}

.logo{
    display:flex;
    align-items:center;
}

/* YouTube-Embeds immer über die gesamte Contentbreite */
.entry-content iframe,
.entry-content .wp-block-embed,
.entry-content .wp-block-embed__wrapper {
    width: 100%;
    max-width: 100%;
}

.entry-content iframe {
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
}

.entry-content .wp-block-embed {
    width: 100%;
    margin: 2rem 0;
}

.entry-content .wp-block-embed iframe {
    width: 100% !important;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
}

/* Gesamter Bildbereich inklusive Beschriftung */
.single-thumb {
    display: block;
    margin: 22px 0 34px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

/* Nur das eigentliche Bild erhält Rundung und Schatten */
.single-thumb-image-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: var(--soft2);
    box-shadow: var(--shadow);
}

/* Bild füllt den Bereich vollständig */
.single-thumb-image-wrap img,
.single-thumb-image {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    border: 0;
    object-fit: cover;
}

/* Beschriftung frei unterhalb des Bildes */
.single-thumb-caption {
    display: block;
    width: 100%;
    margin: 7px 0 0;
    padding: 0 6px;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
    text-align: right;
    box-shadow: none;
}

.single-thumb-caption p {
    margin: 0;
}

.single-thumb-caption a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}


.latest-more-wrap {
    display: flex;
    grid-column: 1 / -1;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.latest-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 12px 34px;
    border: 2px solid rgba(244, 95, 175, 0.35);
    border-radius: 999px;
    background: #ffffff;
    color: var(--pink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: 0.2s ease;
	white-space: nowrap;
}

.latest-more-button:hover {
    background: var(--soft);
    border-color: var(--pink);
    transform: translateY(-2px);
}

/* =========================================================
   Kategorie-Kacheln auf der Startseite
========================================================= */

.home-category-links {
    padding: 4px 0 64px;
}

.home-category-links .section-head {
    margin-top: 0;
}

.category-link-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.category-link-card {
    position: relative;
    display: block;
    min-height: 190px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffe0f2, #eee4ff);
    color: #ffffff;
    box-shadow: 0 14px 35px rgba(27, 19, 44, 0.12);
    isolation: isolate;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.category-link-card:hover {
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 20px 44px rgba(27, 19, 44, 0.2);
}

.category-link-image,
.category-link-placeholder,
.category-link-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.category-link-image img {
    object-fit: cover;
    transition: transform 0.35s ease;
}

.category-link-placeholder {
    background: linear-gradient(135deg, #f45faf, #8b4de8);
}

.category-link-card:hover .category-link-image img {
    transform: scale(1.05);
}

.category-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(17, 16, 25, 0.04) 25%,
        rgba(17, 16, 25, 0.84) 100%
    );
}

.category-link-content {
    position: absolute;
    right: 18px;
    bottom: 17px;
    left: 18px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.category-link-content strong {
    font-size: 18px;
    font-weight: 850;
    line-height: 1.25;
}

.category-link-content > span {
    flex: 0 0 auto;
    color: #ffcae1;
    font-size: 22px;
    font-weight: 900;
}

@media (max-width: 1100px) {
    .category-link-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .category-link-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .category-link-card {
        min-height: 170px;
    }
}

@media (max-width: 440px) {
    .category-link-grid {
        grid-template-columns: 1fr;
    }

    .category-link-card {
        aspect-ratio: 16 / 9;
    }
}

@media (min-width: 1101px) {
    .sidebar {
        position: sticky;
        top: 130px;
        align-self: start;
    }
}

.singular-layout {
    display: grid;
    grid-template-columns: minmax(0, 920px) 300px;
    align-items: start;
    gap: 36px;
}

.singular-layout.no-sidebar {
    grid-template-columns: minmax(0, 920px);
    justify-content: center;
}

.singular-main {
    min-width: 0;
}

.singular-layout-post > .sidebar {
    margin-top: 50px;
}

.page-hero {
    padding-top: 0;
}

@media (min-width: 1101px) {
    .singular-layout > .sidebar {
        position: sticky;
        top: 130px;
        align-self: start;
    }
}

@media (max-width: 1100px) {
    .singular-layout {
        grid-template-columns: 1fr;
    }

    .singular-layout-post > .sidebar,
    .singular-layout > .sidebar {
        margin-top: 28px;
    }
}

.annyeong-topics__flower {
    display: none !important;
}

/* Kategorienmenü im Footer */

.site-footer .widget_nav_menu h3 {
    margin: 0 0 18px;
    color: #f2a4ca;
    font-family: AnnyeongDisplay, "Caveat", cursive;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.1;
}

.site-footer .widget_nav_menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer .widget_nav_menu li {
    margin: 0;
    padding: 0;
}

.site-footer .widget_nav_menu li + li {
    margin-top: 10px;
}

.site-footer .widget_nav_menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #f5f1f8;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer .widget_nav_menu a::after {
    content: "→";
    flex: 0 0 auto;
    color: #f2a4ca;
    font-size: 19px;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.site-footer .widget_nav_menu a:hover {
    color: #f2a4ca;
}

.site-footer .widget_nav_menu a:hover::after {
    transform: translateX(4px);
}

/* Hübsche Text-Widgets im Footer */

.site-footer .widget_text,
.site-footer .widget_custom_html {
    position: relative;
    padding-left: 38px;
}

.site-footer .widget_text::before,
.site-footer .widget_custom_html::before {
    content: "✧";
    position: absolute;
    top: -5px;
    left: 2px;
    color: #f2a4ca;
    font-size: 24px;
    line-height: 1;
    transform: rotate(-8deg);
}

.site-footer .widget_text::after,
.site-footer .widget_custom_html::after {
    content: "✦";
    position: absolute;
    top: 20px;
    left: -4px;
    color: #f2a4ca;
    font-size: 13px;
    line-height: 1;
}

.site-footer .widget_text h3,
.site-footer .widget_custom_html h3 {
    margin: 0 0 17px;
    color: #f2a4ca;
    font-family: AnnyeongDisplay, "Caveat", cursive;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
}

.site-footer .widget_text p,
.site-footer .widget_custom_html p {
    margin: 0;
    color: #eee9f2;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.75;
}

.site-footer .widget_text a,
.site-footer .widget_custom_html a {
    color: #f2a4ca;
}

.site-footer .footer-heart {
    color: #f2a4ca;
    font-size: 19px;
}