:root {
    --primary-color: #fff9f0;
    --secondary-color: #b83b5e;
    --accent-color: #f08a5d;
    --text-color: #e99090;
    --hover-color: #d9597c;
    --bg-color: #1a1a2e;
    --card-bg: #16213e;
    --transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    --footer-gradient: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    --font-main: 'Poppins', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --border-radius: 16px;
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.25), 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(184, 59, 94, 0.15);
    --shadow-hover: 0 20px 40px rgba(184, 59, 94, 0.25), 0 0 0 1px rgba(184, 59, 94, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
    color: var(--text-color);
}

body {
    background-color: var(--bg-color);
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 16px;
    background-image: radial-gradient(circle at 10% 20%, rgba(240, 138, 93, 0.08) 0%, transparent 80%);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(22, 33, 62, 0.95);
    backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 2px solid rgba(184, 59, 94, 0.5);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 62px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(184, 59, 94, 0.3));
}

.header-nav {
    display: flex;
    align-items: center;
}

.header-nav-list {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-nav-list li a {
    display: inline-block;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #f0e6d8;
    border-radius: 30px;
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(240, 138, 93, 0.2);
}

.header-nav-list li a:hover {
    color: #f08a5d;
    background: rgba(240, 138, 93, 0.12);
    border-color: rgba(240, 138, 93, 0.5);
    transform: translateY(-2px);
}

.header-nav-list li a.active {
    color: #ffffff;
    background: linear-gradient(135deg, #b83b5e, #f08a5d);
    border-color: transparent;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(184, 59, 94, 0.4);
}

.header-nav-list li a.active::after {
    display: none;
}

.header-mobile-btn {
    display: none;
    background: rgba(184, 59, 94, 0.3);
    border: 1px solid rgba(240, 138, 93, 0.5);
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.header-mobile-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #f08a5d;
    margin: 5px 0;
    transition: all 0.2s ease;
    border-radius: 2px;
}

main {
    padding: 40px;
    max-width: 1400px;
    margin: 100px auto 0;
    min-height: 70vh;
}

h1 {
    font-size: 44px;
    margin-bottom: 44px;
    color: #f0e6d8;
    font-weight: 800;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid rgba(240, 138, 93, 0.4);
    position: relative;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

h1::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #b83b5e, #f08a5d, #ffd369);
    border-radius: 4px;
}

h2 {
    font-size: 32px;
    margin: 48px 0 32px;
    color: #f0e6d8;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 14px;
    letter-spacing: -0.3px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #b83b5e, #f08a5d);
    border-radius: 4px;
}

.po-online-neu-gallery-grid {
    column-count: 4;
    column-gap: 26px;
    margin: 36px 0;
}

.po-online-neu-gallery-card {
    background: transparent;
    border-radius: calc(var(--border-radius) + 4px);
    overflow: hidden;
    margin-bottom: 26px;
    break-inside: avoid;
    position: relative;
    transform: translateZ(0);
}

.po-online-neu-gallery-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: calc(var(--border-radius) + 4px);
    transition: all 0.35s ease;
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(240, 138, 93, 0.3);
}

.po-online-neu-gallery-card:hover img {
    box-shadow: var(--shadow-hover);
    transform: scale(1.02);
    border-color: #f08a5d;
}

.po-online-neu-gallery-info {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.9), rgba(11, 19, 36, 0.95));
    backdrop-filter: blur(8px);
    text-align: center;
    pointer-events: none;
    border-radius: 40px;
    border: 1px solid rgba(240, 138, 93, 0.5);
}

.po-online-neu-gallery-title {
    font-size: 13px;
    margin: 0;
    color: #f08a5d;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
}

.po-online-neu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 36px 0;
}

.po-online-neu-item {
    background: linear-gradient(135deg, var(--card-bg), #0f1425);
    border-radius: 60px;
    padding: 14px 22px;
    transition: var(--transition);
    border: 1px solid rgba(240, 138, 93, 0.25);
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.po-online-neu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 138, 93, 0.15), transparent);
    transition: left 0.5s ease;
}

.po-online-neu-item:hover::before {
    left: 100%;
}

.po-online-neu-item:hover {
    border-color: #b83b5e;
    background: linear-gradient(135deg, #1e2a4a, #16213e);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.po-online-neu-link {
    text-decoration: none;
    color: #f08a5d;
    font-weight: 700;
    display: block;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.po-online-neu-link:hover {
    color: #ffb38b;
}

.po-online-neu-gallery-grid-cat {
    column-count: 3;
    column-gap: 26px;
    margin: 36px 0;
}

.po-online-neu-gallery-card-cat {
    background: transparent;
    border-radius: calc(var(--border-radius) + 4px);
    overflow: hidden;
    margin-bottom: 26px;
    break-inside: avoid;
    position: relative;
}

.po-online-neu-gallery-card-cat img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: calc(var(--border-radius) + 4px);
    transition: all 0.35s ease;
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(240, 138, 93, 0.3);
}

.po-online-neu-gallery-card-cat:hover img {
    box-shadow: var(--shadow-hover);
    border-color: #b83b5e;
}

.po-online-neu-gallery-info-cat {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 12px 20px;
    background: rgba(22, 33, 62, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    border: 1px solid rgba(240, 138, 93, 0.5);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.po-online-neu-gallery-title-cat {
    font-size: 16px;
    margin: 0;
    color: #f08a5d;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
}

.po-online-neu-info-section {
    background: linear-gradient(135deg, var(--card-bg), #0f1425);
    padding: 36px 42px;
    border-radius: 32px;
    margin: 48px 0;
    border: 1px solid rgba(240, 138, 93, 0.25);
    box-shadow: var(--shadow-sm);
}

.po-online-neu-info-section h3 {
    color: #f08a5d;
    margin-bottom: 18px;
    font-size: 26px;
    font-weight: 700;
}

.po-online-neu-info-section p {
    color: #c0c8e0;
}

.po-online-neu-map-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
    margin: 36px 0;
}

.po-online-neu-map-link {
    color: #f0e6d8;
    text-decoration: none;
    display: block;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--card-bg), #0f1425);
    border-radius: 50px;
    transition: var(--transition);
    border: 1px solid rgba(240, 138, 93, 0.3);
    text-align: center;
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.po-online-neu-map-link:hover {
    background: linear-gradient(135deg, #b83b5e, #d94a6e);
    border-color: #f08a5d;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(184, 59, 94, 0.35);
}

.po-online-neu-map-link:hover,
.po-online-neu-map-link:hover h4 {
    color: #ffffff;
}

.pagination-container {
    margin: 48px 0;
    padding: 32px 0;
    border-top: 1px solid rgba(240, 138, 93, 0.25);
    border-bottom: 1px solid rgba(240, 138, 93, 0.25);
    text-align: center;
}

.pagination-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.pagination-link {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--card-bg), #0f1425);
    border: 1px solid rgba(240, 138, 93, 0.4);
    border-radius: 40px;
    color: #f08a5d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
    letter-spacing: 0.4px;
}

.pagination-link:hover,
.pagination-link.active {
    background: linear-gradient(135deg, #b83b5e, #f08a5d);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(184, 59, 94, 0.4);
}

footer {
    background: var(--footer-gradient);
    padding: 60px 40px 40px;
    margin-top: 80px;
    border-top: 3px solid #f08a5d;
    color: #d0c8e0;
}

.footer-container-po-online-neu {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.po-online-neu-footer-links-col {
    flex: 1 1 220px;
    min-width: 180px;
}

.po-online-neu-footer-links-col h3 {
    color: #f08a5d;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(240, 138, 93, 0.4);
    font-weight: 700;
}

.po-online-neu-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.po-online-neu-footer-link {
    color: #b0a8d0;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    padding: 4px 0;
    display: inline-block;
    width: fit-content;
}

.po-online-neu-footer-link:hover {
    color: #f08a5d;
    transform: translateX(8px);
}

.copyright {
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid rgba(240, 138, 93, 0.3);
    font-size: 13px;
    color: #9a92b0;
    text-align: left;
}

.po-online-neu-banner {
    display: block;
    width: 100%;
    max-width: 728px;
    height: 90px;
    margin: 0 auto 20px;
    background: linear-gradient(115deg, #1e2a4a, #16213e);
    border-radius: 40px;
    border: 2px solid rgba(240, 138, 93, 0.4);
    text-align: center;
    line-height: 90px;
    color: #f08a5d;
    font-weight: 700;
}

.po-online-neu-gallery-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 36, 0.98);
    backdrop-filter: blur(24px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.po-online-neu-slider-img {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 28px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(240, 138, 93, 0.5);
}

.po-online-neu-slider-close,
.po-online-neu-slider-prev,
.po-online-neu-slider-next {
    position: fixed;
    background: rgba(22, 33, 62, 0.9);
    backdrop-filter: blur(12px);
    color: #f08a5d;
    border: 2px solid #b83b5e;
    width: 56px;
    height: 56px;
    border-radius: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 22px;
    font-weight: bold;
}

.po-online-neu-slider-close:hover,
.po-online-neu-slider-prev:hover,
.po-online-neu-slider-next:hover {
    background: linear-gradient(135deg, #b83b5e, #f08a5d);
    color: #ffffff;
    transform: scale(1.08);
    border-color: transparent;
}

.po-online-neu-slider-close {
    top: 25px;
    right: 25px;
}

.po-online-neu-slider-prev {
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.po-online-neu-slider-next {
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.po-online-neu-slider-counter {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: #f0e6d8;
    background: rgba(22, 33, 62, 0.9);
    backdrop-filter: blur(8px);
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid #f08a5d;
    font-size: 14px;
    font-weight: 600;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f1425;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #b83b5e, #f08a5d);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #d94a6e, #ff9a6d);
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    
    .header-mobile-btn {
        display: block;
    }
    
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, #0f0c29, #1a1a2e);
        padding: 80px 20px 30px;
        transition: right 0.3s ease-out;
        z-index: 1002;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 2px solid #f08a5d;
    }
    
    .header-nav.active {
        right: 0;
    }
    
    .header-nav-list {
        flex-direction: column;
        gap: 12px;
    }
    
    .header-nav-list li a {
        display: block;
        padding: 12px 20px;
        color: #f0e6d8;
        font-size: 16px;
        background: rgba(240, 138, 93, 0.1);
        border-radius: 40px;
        text-align: center;
        border: 1px solid rgba(240, 138, 93, 0.3);
    }
    
    .header-nav-list li a:hover,
    .header-nav-list li a.active {
        color: #ffffff;
        background: linear-gradient(135deg, #b83b5e, #f08a5d);
        border-color: transparent;
    }
    
    .header-mobile-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .header-mobile-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .header-mobile-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .po-online-neu-gallery-grid,
    .po-online-neu-gallery-grid-cat {
        column-count: 2;
        gap: 20px;
    }
    
    main {
        margin-top: 85px;
        padding: 24px;
    }
    
    h1 {
        font-size: 34px;
    }
    
    h2 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .po-online-neu-gallery-grid,
    .po-online-neu-gallery-grid-cat {
        column-count: 1;
    }
    
    .po-online-neu-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 30px;
    }
    
    h2 {
        font-size: 26px;
    }
    
    main {
        padding: 18px;
    }
    
    .footer-container-po-online-neu {
        flex-direction: column;
        gap: 28px;
    }
    
    .po-online-neu-map-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .header-logo img {
        height: 42px;
    }
}

@media (max-width: 480px) {
    .po-online-neu-map-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.copyright {
    background-color: transparent;
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
    padding: 20px 15px;
}

.copyright,
.copyright p,
.copyright a,
.copyright span {
    color: #9a92b0;
}

.copyright p {
    margin: 0 0 8px 0;
    opacity: 0.85;
}

.copyright p:last-child {
    margin-bottom: 0;
    opacity: 1;
    font-weight: 600;
    color: #f08a5d;
}

.po-online-neu-featured-block {
    margin: 48px 0;
    background: linear-gradient(135deg, var(--card-bg), #0f1425);
    border-radius: 32px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(240, 138, 93, 0.25);
}

.po-online-neu-featured-block h2 {
    margin: 0 0 20px 0;
    font-size: 32px;
    text-align: center;
    color: #f0e6d8;
}

.po-online-neu-featured-block h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #b83b5e, #f08a5d);
    border-radius: 4px;
}

.po-online-neu-featured-intro {
    text-align: center;
    font-size: 16px;
    color: #c0c8e0;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(240, 138, 93, 0.25);
}

.po-online-neu-sponsored-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0 40px;
    padding: 20px;
    background: rgba(240, 138, 93, 0.08);
    border-radius: 60px;
    border: 1px dashed rgba(240, 138, 93, 0.5);
}

.po-online-neu-sponsored-link {
    display: inline-block;
    transition: var(--transition);
}

.po-online-neu-sponsored-link:hover {
    transform: scale(1.04);
    opacity: 0.9;
}

.po-online-neu-featured-models {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.po-online-neu-featured-item {
    background: rgba(22, 33, 62, 0.7);
    border-radius: 32px;
    padding: 28px;
    transition: var(--transition);
    border: 1px solid rgba(240, 138, 93, 0.2);
    backdrop-filter: blur(4px);
}

.po-online-neu-featured-item:hover {
    border-color: #b83b5e;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    background: rgba(22, 33, 62, 0.9);
}

.po-online-neu-featured-item h3 {
    font-size: 28px;
    color: #f08a5d;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.po-online-neu-featured-image {
    text-align: center;
    margin-bottom: 24px;
}

.po-online-neu-featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid rgba(240, 138, 93, 0.3);
}

.po-online-neu-featured-item:hover .po-online-neu-featured-image img {
    box-shadow: var(--shadow-hover);
    border-color: #f08a5d;
}

.po-online-neu-featured-text p {
    margin-bottom: 14px;
    line-height: 1.7;
    color: #c0c8e0;
}

.po-online-neu-featured-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .po-online-neu-featured-block {
        padding: 24px;
    }
    
    .po-online-neu-featured-block h2 {
        font-size: 28px;
    }
    
    .po-online-neu-featured-item {
        padding: 20px;
    }
    
    .po-online-neu-featured-item h3 {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .po-online-neu-featured-block {
        padding: 20px;
    }
    
    .po-online-neu-sponsored-banner {
        padding: 12px;
    }
    
    .po-online-neu-sponsored-link img {
        max-width: 170px;
        height: auto;
    }
}

.po-online-neu-featured-posts {
    margin: 60px 0;
}

.po-online-neu-featured-posts h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    position: relative;
    padding-bottom: 16px;
}

.po-online-neu-featured-posts h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #b83b5e, #f08a5d);
    border-radius: 4px;
}

.po-online-neu-featured-post {
    display: flex;
    gap: 40px;
    background: linear-gradient(135deg, var(--card-bg), #0f1425);
    border-radius: 32px;
    margin-bottom: 48px;
    padding: 32px;
    transition: var(--transition);
    border: 1px solid rgba(240, 138, 93, 0.25);
    box-shadow: var(--shadow-sm);
}

.po-online-neu-featured-post:hover {
    border-color: #b83b5e;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.featured-post-image {
    flex: 0 0 260px;
}

.featured-post-image a {
    display: block;
    overflow: hidden;
    border-radius: 24px;
}

.featured-post-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    transition: transform 0.35s ease-out;
    border: 2px solid rgba(240, 138, 93, 0.3);
}

.featured-post-image a:hover img {
    transform: scale(1.03);
    border-color: #f08a5d;
}

.featured-post-content {
    flex: 1;
}

.featured-post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.featured-post-category {
    background: linear-gradient(135deg, #b83b5e, #f08a5d);
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.featured-post-name {
    color: #a0a8c0;
    font-size: 13px;
    font-weight: 500;
}

.featured-post-content h3 {
    font-size: 26px;
    color: #f0e6d8;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.featured-post-content p {
    margin-bottom: 18px;
    line-height: 1.7;
    color: #b0b8d0;
}

.featured-post-link {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 30px;
    background: transparent;
    border: 2px solid #f08a5d;
    color: #f08a5d;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.featured-post-link:hover {
    background: linear-gradient(135deg, #b83b5e, #f08a5d);
    color: #ffffff;
    transform: translateY(-2px);
    border-color: transparent;
}

@media (max-width: 992px) {
    .po-online-neu-featured-post {
        flex-direction: column;
        gap: 24px;
    }
    
    .featured-post-image {
        flex: 0 0 auto;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .featured-post-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .po-online-neu-featured-posts {
        margin: 40px 0;
    }
    
    .po-online-neu-featured-posts h2 {
        font-size: 30px;
        margin-bottom: 32px;
    }
    
    .po-online-neu-featured-post {
        padding: 24px;
        margin-bottom: 32px;
    }
    
    .featured-post-image {
        max-width: 100%;
    }
    
    .featured-post-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 600px) {
    .po-online-neu-featured-posts h2 {
        font-size: 28px;
    }
    
    .featured-post-content h3 {
        font-size: 20px;
    }
    
    .featured-post-link {
        padding: 8px 24px;
        font-size: 13px;
    }
}

.po-online-neu-blog-section {
    margin: 64px 0;
}

.po-online-neu-blog-section h2 {
    font-size: 36px;
    margin-bottom: 44px;
    text-align: center;
}

.po-online-neu-blog-post {
    background: linear-gradient(135deg, var(--card-bg), #0f1425);
    border-radius: 32px;
    margin-bottom: 52px;
    padding: 36px;
    transition: var(--transition);
    border: 1px solid rgba(240, 138, 93, 0.25);
    box-shadow: var(--shadow-sm);
}

.po-online-neu-blog-post:hover {
    border-color: #b83b5e;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.po-online-neu-blog-header {
    border-bottom: 2px solid rgba(240, 138, 93, 0.3);
    padding-bottom: 18px;
    margin-bottom: 26px;
}

.po-online-neu-blog-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.po-online-neu-blog-title a {
    color: #f0e