@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #6FDA44;
    --dark-gray: #2A3538;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #2A3538;
    --text-light: #666666;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.newsletter-top-bar {
    background-color: var(--light-gray);
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.newsletter-link {
    color: var(--text-light);
    text-decoration: underline;
    transition: color 0.3s;
}

.newsletter-link:hover {
    color: var(--text-dark);
}

.site-header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.site-branding {
    display: flex;
    align-items: center;
    padding-left: 40px;
    flex-shrink: 0;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 20px;
    gap: 10px;
}

.logo-icon-img {
    width: 228px;
    height: 52px;
    display: inline-block;
    vertical-align: middle;
}

.logo-text {
    color: var(--text-dark);
}

.logo-badge {
    background: var(--primary-green);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.dropdown-arrow {
    font-size: 10px;
    color: var(--text-dark);
    transition: color 0.3s;
}

.menu-item-has-children:hover .dropdown-arrow {
    color: var(--primary-green);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.marketplace-btn {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #3a3a3a 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
    padding-right: 40px;
    flex-shrink: 0;
}

.marketplace-btn:hover {
    transform: translateY(-2px);
}

.arrow-icon {
    font-size: 12px;
}

.hero-section {
    background: #6FDA44;
    border-radius: 12px;
    padding: 0;
    margin: 0 auto;
    max-width: 1376px;
    height: 471px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1376px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    height: 100%;
    position: relative;
}

.hero-content {
    color: #2A3538;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 142px;
    padding-right: 0;
    height: 100%;
    position: relative;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 52px;
    line-height: 63px;
    margin-bottom: 16px;
    color: #2A3538;
    width: 669px;
}

.hero-title strong {
    font-weight: 700;
}

.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 32px;
    color: #2A3538;
    width: 599px;
}

.hero-illustration {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.hero-illustration img {
    width: 870px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    position: absolute;
    right: 0;
    bottom: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #2A3538;
    color: #FFFFFF;
    width: 170px;
    height: 49px;
    padding: 16px 36px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #2A3538;
    color: #FFFFFF;
    width: 183px;
    height: 52px;
    padding: 16px 24px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.btn-secondary:hover {
    background: #1a1a1a;
}

.btn-secondary svg {
    width: 20px;
    height: 20px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.btn-secondary svg path {
    fill: #FFFFFF;
}

.btn-outline {
    background: transparent;
    color: #2A3538;
    border: 1px solid #2A3538;
    border-radius: 8px;
    width: 227px;
    height: 52px;
    padding: 16px 24px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    flex: none;
    order: 1;
    flex-grow: 0;
    box-sizing: border-box;
}

.btn-outline:hover {
    background: #2A3538;
    color: #FFFFFF;
}

.btn-outline img {
    width: 20px;
    height: 20px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.what-is-sniser {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--white);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 150%;
    margin-bottom: 32px;
    color: #2A3538;
}

.section-description-wrapper {
    max-width: 849px;
    margin: 0 auto 40px;
}

.section-description {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: rgba(42, 53, 56, 0.8);
    margin: 0 auto 16px;
    text-align: center;
}

.section-description:last-of-type {
    margin-bottom: 0;
}

.action-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 13px;
    justify-content: center;
    flex-wrap: nowrap;
    padding: 0;
}

.features-section {
    padding: 60px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    box-sizing: border-box;
    background: #2A3538;
    color: #FFFFFF;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: left;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card-green {
    background: #6FDA44;
    color: #2A3538;
}

.feature-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px;
    gap: 10px;
    width: 68px;
    height: 68px;
    background: rgba(111, 218, 68, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    justify-content: center;
    align-self: flex-start;
}

.feature-icon img {
    width: 52px;
    height: 52px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.feature-icon-green {
    background: rgba(42, 53, 56, 0.1);
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
}

.feature-label {
    display: block;
    font-weight: 400;
}

.feature-title {
    display: block;
    font-weight: 700;
}

.latest-updates {
    padding: 80px 20px;
    background-color: var(--white);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.latest-updates .section-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    color: #2A3538;
    margin: 0;
}

.filter-wrapper {
    position: relative;
}

.filter-toggle {
    display: none;
    box-sizing: border-box;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    height: 32px;
    background: rgba(42, 53, 56, 0.05);
    border: 1px solid rgba(42, 53, 56, 0.2);
    border-radius: 8px;
    color: #2A3538;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-toggle svg {
    transition: transform 0.3s;
}

.filter-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.filter-buttons {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    min-width: 368px;
    width: auto;
    height: 32px;
    background: rgba(42, 53, 56, 0.05);
    border: 1px solid rgba(42, 53, 56, 0.2);
    border-radius: 36px;
    padding: 4px 8px;
    justify-content: center;
}

.filter-btn {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 24px;
    gap: 10px;
    height: 32px;
    border: none;
    background: transparent;
    color: #2A3538;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 32px;
    opacity: 0.8;
}

.filter-btn.active {
    background: #2A3538;
    color: #FFFFFF;
    opacity: 1;
}

.filter-btn:hover {
    opacity: 1;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.article-card {
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid rgba(42, 53, 56, 0.2);
    border-radius: 12px;
    overflow: hidden;
    width: 369px;
    max-width: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.article-image {
    width: 100%;
    height: 278px;
    overflow: hidden;
    background: var(--dark-gray);
    border-radius: 12px 12px 0px 0px;
}

.article-image img {
    border-radius: 12px 12px 0px 0px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 24px;
    box-sizing: border-box;
    background: #FFFFFF;
    border-radius: 0px 0px 12px 12px;
    min-height: 329px;
    display: flex;
    flex-direction: column;
}

.article-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 16px;
    margin-bottom: 16px;
    width: 100%;
}

.article-tag {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 12px;
    gap: 10px;
    height: 24px;
    background: rgba(42, 53, 56, 0.2);
    border-radius: 24px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #2A3538;
}

.article-date {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 4px;
    height: 21px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: rgba(42, 53, 56, 0.6);
}

.article-date svg {
    width: 20px;
    height: 20px;
    flex: none;
    color: rgba(42, 53, 56, 0.6);
}

.article-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 16px;
    color: #2A3538;
    width: 321px;
    max-width: 100%;
}

.article-title a {
    color: #2A3538;
    text-decoration: none;
    transition: color 0.3s;
}

.article-title a:hover {
    color: var(--primary-green);
}

.article-excerpt {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #2A3538;
    opacity: 0.8;
    margin-bottom: 16px;
    width: 321px;
    max-width: 100%;
    flex: 1;
}

.article-divider {
    width: 321px;
    max-width: 100%;
    height: 0px;
    opacity: 0.2;
    border: 1px solid #2A3538;
    margin-bottom: 16px;
}

.article-link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 10px;
    width: 124px;
    height: 24px;
    color: #2A3538;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    transition: color 0.3s;
}

.article-link svg {
    width: 24px;
    height: 24px;
    flex: none;
    color: #2A3538;
}

.article-link:hover {
    color: var(--primary-green);
}

.article-link:hover svg {
    color: var(--primary-green);
}

.load-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

.btn-load-more {
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    gap: 10px;
    min-width: 229px;
    width: auto;
    height: 52px;
    background: transparent;
    color: rgba(42, 53, 56, 0.6);
    border: 1px solid rgba(42, 53, 56, 0.2);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-load-more .refresh-icon {
    width: 20px;
    height: 20px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.btn-load-more:hover {
    background: rgba(42, 53, 56, 0.05);
    color: #2A3538;
    border-color: rgba(42, 53, 56, 0.4);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.btn-load-more[disabled] {
    opacity: 0.6;
    cursor: wait;
}

.newsletter-section {
    background: var(--dark-gray);
    border-radius: 40px 40px 0 0;
    padding: 80px 20px;
    margin-top: 80px;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.newsletter-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.newsletter-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.newsletter-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.2);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(255,255,255,0.15);
}

.btn-subscribe {
    background: var(--primary-green);
    color: var(--text-dark);
    font-weight: 700;
}

.btn-subscribe:hover {
    background: #5bc936;
}

.newsletter-disclaimer {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.site-footer {
    background: var(--light-gray);
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 18px;
}

.footer-logo .logo-icon-img {
    width: 228px;
    height: 52px;
    display: inline-block;
    vertical-align: middle;
}

.footer-about p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s;
}

.social-icons a img {
    width: 24px;
    height: 24px;
    display: block;
}

.social-icons a:hover {
    background: var(--primary-green);
}

.social-icons a:hover img {
    filter: brightness(0) invert(1);
}

.footer-links h3,
.footer-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary-green);
}

.footer-info p {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--text-light);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--primary-green);
}

/* Single Post Page Styles */
.single-post-main {
    background-color: var(--white);
}

.single-post-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.single-post {
    max-width: 1200px;
    margin: 0 auto;
}

.entry-header {
    margin-top: 40px;
    margin-bottom: 20px;
}

.entry-title {
    width: 100%;
    max-width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
    color: #2A3538;
    margin: 0 0 20px 0;
}

.entry-date {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    width: auto;
    height: 24px;
    opacity: 0.6;
    margin-top: 8px;
}

.entry-date svg {
    width: 24px;
    height: 24px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.entry-date span {
    width: auto;
    height: 21px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: #2A3538;
}

.post-featured-image {
    width: 100%;
    max-width: 100%;
    height: 600px;
    margin: 40px auto;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.post-featured-image .featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.entry-content {
    width: 100%;
    max-width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 200%;
    color: #2A3538;
    margin-top: 32px;
}

.entry-content p {
    margin-bottom: 24px;
}

.entry-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.entry-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.entry-content a {
    color: var(--primary-green);
    text-decoration: none;
}

.entry-content a:hover {
    text-decoration: underline;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 10px;
}

/* Post Meta Top */
.post-meta-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    margin-top: 24px;
}

.post-meta-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    flex: 1;
}

.meta-category,
.meta-tags {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.meta-label {
    width: auto;
    height: 16px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #2A3538;
}

.category-pill {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 12px;
    gap: 10px;
    width: auto;
    height: 24px;
    background: rgba(42, 53, 56, 0.1);
    border-radius: 24px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #2A3538;
}

.tags-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

.tag-pill {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 12px;
    gap: 10px;
    width: auto;
    height: 24px;
    border: 1px solid rgba(42, 53, 56, 0.2);
    border-radius: 24px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: rgba(42, 53, 56, 0.6);
}

.post-share-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: 0;
    flex-shrink: 0;
}

.share-label {
    width: 48px;
    height: 16px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #2A3538;
}

.share-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    width: 172px;
    height: 40px;
}

.share-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 8px;
    gap: 10px;
    width: 40px;
    height: 40px;
    background: rgba(42, 53, 56, 0.1);
    border-radius: 40px;
    color: #2A3538;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    background: rgba(42, 53, 56, 0.2);
}

.share-btn svg,
.share-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Author Box */
.author-box {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    min-height: 116px;
    border: 1px solid rgba(42, 53, 56, 0.2);
    border-radius: 12px;
    margin-top: 40px;
}

.author-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.author-avatar img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 8px;
    width: 203px;
    height: 44px;
}

.author-name {
    width: 203px;
    height: 20px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    color: #2A3538;
    margin: 0;
}

.author-role {
    width: 203px;
    height: 16px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: rgba(42, 53, 56, 0.6);
    margin: 0;
}

.author-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 4px;
    width: 151px;
    height: 20px;
}

.author-link a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    width: 127px;
    height: 16px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-align: right;
    text-decoration-line: underline;
    color: #2A3538;
}

.author-link a svg {
    width: 20px;
    height: 20px;
}

/* Related Articles */
.related-articles {
    width: 100%;
    max-width: 100%;
    min-height: 806px;
    background: #F4F5F5;
    padding: 86px 60px;
    margin: 0 auto;
}

.related-articles .container {
    max-width: 1200px;
    margin: 0 auto;
}

.related-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    gap: 24px;
    width: 100%;
    height: 36px;
    margin-bottom: 40px;
}

.related-title {
    width: 200px;
    height: 36px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    color: #2A3538;
    margin: 0;
}

.related-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 24px;
    width: 187px;
    height: 24px;
}

.related-nav-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 4px;
    width: auto;
    height: 24px;
    background: transparent;
    border: none;
    color: #2A3538;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    transition: opacity 0.3s;
}

.related-nav-btn.prev-btn {
    opacity: 0.4;
}

.related-nav-btn.next-btn {
    opacity: 1;
}

.related-nav-btn:hover {
    opacity: 1;
}

.related-nav-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.related-nav-btn svg {
    width: 24px;
    height: 24px;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

.related-article-card {
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid rgba(42, 53, 56, 0.2);
    border-radius: 0px 0px 12px 12px;
    overflow: hidden;
    width: 438px;
}

.related-article-image {
    width: 438px;
    height: 278px;
    overflow: hidden;
    border-radius: 12px 12px 0px 0px;
}

.related-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-article-content {
    box-sizing: border-box;
    width: 438px;
    height: 300px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.related-article-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 16px;
    width: 202px;
    height: 24px;
    margin-bottom: 12px;
}

.related-category {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 12px;
    gap: 10px;
    width: auto;
    height: 24px;
    background: rgba(42, 53, 56, 0.2);
    border-radius: 24px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #2A3538;
}

.related-date {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 4px;
    width: auto;
    height: 21px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: rgba(42, 53, 56, 0.6);
}

.related-date svg {
    width: 20px;
    height: 20px;
}

.related-article-title {
    width: 390px;
    height: auto;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    color: #2A3538;
    margin: 0 0 12px 0;
}

.related-article-title a {
    color: #2A3538;
    text-decoration: none;
}

.related-article-excerpt {
    width: 390px;
    height: auto;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #2A3538;
    opacity: 0.8;
    margin: 0 0 16px 0;
}

.related-article-divider {
    width: 390px;
    height: 0px;
    opacity: 0.2;
    border: 1px solid #2A3538;
    margin: 24px 0;
}

.related-read-more {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 10px;
    width: 124px;
    height: 24px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: #2A3538;
    text-decoration: none;
}

.related-read-more svg {
    width: 24px;
    height: 24px;
}

/* Newsletter Section in Single Post */
.single-newsletter {
    margin-top: 0;
    border-radius: 0;
}

@media (max-width: 1024px) {
    .hero-section {
        max-width: calc(100% - 40px);
        margin: 0 20px;
    }

    .hero-content {
        padding-left: 40px;
        padding-right: 20px;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.2;
        width: 100%;
        max-width: 600px;
    }

    .hero-description {
        width: 100%;
        max-width: 550px;
    }

    .hero-illustration img {
        width: 100%;
        max-width: 600px;
        height: auto;
        right: 0;
        bottom: 0;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .feature-card {
        min-height: 200px;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        position: relative;
        padding: 0 20px;
    }

    .site-branding {
        padding-left: 0;
        flex: 0;
    }

    .main-navigation {
        flex: 1;
        justify-content: flex-end;
        position: relative;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: auto;
        width: 100%;
        max-width: 300px;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        gap: 15px;
        z-index: 1000;
        margin-top: 10px;
        border-radius: 8px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        list-style: none;
    }

    .nav-menu a {
        padding: 12px 0;
        width: 100%;
        display: block;
    }

    .marketplace-btn {
        display: none;
    }

    .hero-section {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        padding: 40px 20px;
        margin: 0 20px;
    }

    .hero-container {
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 30px;
        height: auto;
        padding: 0;
    }

    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
        text-align: left;
        height: auto;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
        width: 100%;
        margin-bottom: 16px;
        text-align: left;
    }

    .hero-description {
        font-size: 16px;
        line-height: 150%;
        width: 100%;
        margin-bottom: 24px;
        text-align: left;
    }

    .hero-illustration {
        display: none;
    }

    .btn-primary {
        width: 170px;
        height: 49px;
        padding: 16px 36px;
        font-size: 14px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .feature-card {
        width: 100%;
        max-width: 369px;
        margin: 0 auto;
        min-height: 200px;
        padding: 30px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

    .feature-icon img {
        width: 44px;
        height: 44px;
    }

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

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

    .article-card {
        width: 100%;
        max-width: 369px;
        margin: 0 auto;
    }

    .article-image {
        height: 200px;
    }

    .article-content {
        min-height: auto;
        padding: 20px;
    }

    .article-title,
    .article-excerpt,
    .article-divider {
        width: 100%;
    }

    .section-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }

    .filter-wrapper {
        position: relative;
    }

    .filter-toggle {
        display: flex;
    }

    .filter-buttons {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 8px;
        flex-direction: column;
        align-items: stretch;
        width: auto;
        min-width: 150px;
        max-width: 335px;
        flex-wrap: nowrap;
        height: auto;
        padding: 8px;
        gap: 8px;
        background: #FFFFFF;
        border: 1px solid rgba(42, 53, 56, 0.2);
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 10;
    }

    .filter-buttons.active {
        display: flex;
    }

    .filter-btn {
        font-size: 12px;
        padding: 8px 16px;
        width: 100%;
        justify-content: flex-start;
        border-radius: 6px;
    }

    .what-is-sniser {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .section-description-wrapper {
        max-width: 100%;
        margin-bottom: 32px;
    }

    .section-description {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .action-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
        gap: 13px;
        justify-content: center;
    }

    .action-buttons .btn {
        width: auto;
        min-width: 150px;
        flex: 1;
        max-width: 227px;
        justify-content: center;
    }

    .btn-secondary {
        width: auto;
        min-width: 150px;
        max-width: 183px;
    }

    .btn-outline {
        width: auto;
        min-width: 150px;
        max-width: 227px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
    }

    .newsletter-form .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-about p {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links ul {
        text-align: center;
    }

    .footer-links ul li {
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    .footer-info p {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }


    .newsletter-section {
        padding: 60px 20px;
        border-radius: 20px 20px 0 0;
    }

    .latest-updates {
        padding: 60px 20px;
    }

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

    .article-card {
        width: 100%;
        max-width: 369px;
        margin: 0 auto;
    }

    .article-image {
        height: 200px;
    }

    .article-content {
        min-height: auto;
        padding: 20px;
    }

    .article-title,
    .article-excerpt,
    .article-divider {
        width: 100%;
    }

    .filter-buttons {
        width: 100%;
        max-width: 335px;
        flex-wrap: wrap;
        height: auto;
        padding: 8px;
        gap: 12px;
    }

    .filter-btn {
        font-size: 12px;
        padding: 4px 16px;
    }

    /* Single Post Mobile Styles */
    .breadcrumbs-container {
        padding: 15px 0;
    }

    .breadcrumbs {
        font-size: 12px;
        flex-wrap: wrap;
    }

    .single-post-header {
        padding: 30px 0 40px;
    }

    .entry-title {
        font-size: 32px;
    }

    .post-featured-image {
        margin: 30px 0;
        border-radius: 12px;
    }

    .entry-content {
        font-size: 16px;
        margin-top: 30px;
    }

    .entry-content h2 {
        font-size: 28px;
    }

    .entry-content h3 {
        font-size: 22px;
    }

    .post-meta-footer {
        flex-direction: column;
        gap: 20px;
    }

    .post-share {
        align-items: flex-start;
        width: 100%;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .author-info {
        text-align: center;
    }

    .related-articles {
        padding: 40px 0;
    }

    .related-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .related-title {
        font-size: 28px;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .related-article-image {
        height: 200px;
    }

    /* Single Post Mobile Styles */
    .single-post-container {
        padding: 0 20px;
    }

    .entry-title {
        width: 100%;
        max-width: 100%;
        font-size: 28px;
    }

    .entry-date {
        width: 100%;
        max-width: 212px;
    }

    .post-featured-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 20px 0;
    }

    .post-featured-image .featured-img {
        height: auto;
    }

    .entry-content {
        width: 100%;
        max-width: 100%;
        font-size: 16px;
        line-height: 200%;
    }

    .post-meta-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .post-meta-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
    }

    .post-share-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
    }

    .author-box {
        width: 100%;
        max-width: 100%;
        padding: 24px;
        min-height: auto;
    }

    .author-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        height: auto;
    }

    .author-left {
        width: 100%;
    }

    .author-link {
        width: 100%;
    }

    .author-link a {
        width: auto;
    }

    .related-articles {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 40px 20px;
    }

    .related-articles .container {
        max-width: 100%;
    }

    .related-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        height: auto;
    }

    .related-article-card {
        width: 100%;
        max-width: 100%;
    }

    .related-article-image {
        width: 100%;
        height: auto;
    }

    .related-article-content {
        width: 100%;
        height: auto;
    }

    .related-article-title,
    .related-article-excerpt,
    .related-article-divider {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 30px 15px;
        margin: 0 10px;
    }

    .hero-container {
        gap: 20px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 150%;
        margin-bottom: 20px;
    }

    .hero-content {
        padding-left: 15px;
        padding-right: 15px;
        text-align: left;
    }

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

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

    .hero-illustration {
        display: none;
    }

    .btn-primary {
        width: 170px;
        height: 49px;
        padding: 16px 36px;
        font-size: 14px;
    }

    .what-is-sniser {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .section-description-wrapper {
        margin-bottom: 24px;
    }

    .section-description {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .action-buttons .btn {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }

    .btn-secondary,
    .btn-outline {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }

    .newsletter-title {
        font-size: 28px;
    }

    .features-section {
        padding: 40px 15px;
    }

    .features-grid {
        gap: 15px;
    }

    .feature-card {
        min-height: 180px;
        padding: 24px 16px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 12px;
    }

    .feature-icon img {
        width: 40px;
        height: 40px;
    }

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

    .latest-updates {
        padding: 40px 15px;
    }

    .articles-grid {
        gap: 15px;
    }

    .article-image {
        height: 180px;
    }

    .article-content {
        padding: 16px;
    }

    .article-title {
        font-size: 18px;
    }

    .article-excerpt {
        font-size: 14px;
    }

    .filter-buttons {
        min-width: 140px;
        max-width: 280px;
        gap: 6px;
        padding: 6px;
    }

    .filter-btn {
        font-size: 11px;
        padding: 6px 12px;
    }

    .btn-load-more {
        width: 100%;
        max-width: 229px;
    }

    /* Single Post 480px Styles */
    .single-post-container {
        padding: 0 15px;
    }

    .entry-title {
        width: 100%;
        font-size: 24px;
        line-height: 1.3;
    }

    .entry-date {
        width: 100%;
        max-width: 180px;
    }

    .post-featured-image {
        width: 100%;
        height: auto;
        margin: 15px 0;
    }

    .entry-content {
        width: 100%;
        font-size: 14px;
        line-height: 180%;
    }

    .author-box {
        padding: 20px;
    }

    .related-articles {
        padding: 30px 15px;
    }

    .related-title {
        font-size: 22px;
    }

    .breadcrumbs {
        font-size: 11px;
    }

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

    .entry-content h2 {
        font-size: 24px;
    }

    .entry-content h3 {
        font-size: 20px;
    }

    .author-box {
        padding: 20px;
    }

    .author-avatar img {
        width: 60px;
        height: 60px;
    }

    .related-title {
        font-size: 24px;
    }

    .related-article-title {
        font-size: 18px;
    }
}

