* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Nunito';
            font-weight: 400;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        
        .container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .container-fluid {
            max-width: 100%;
            margin: 0 auto;
            padding: 0;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            max-width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: 700;
            color: #e53935;
        }
        
        .logo img {
			max-width: 165px;
            width: 100%;
            height: 45px;
			object-fit: cover;
            margin-right: 10px;
        }
        
        .logo span {
            font-size: 14px;
            font-weight: 400;
            color: #666;
            display: block;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-right: 30px;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-size: 16px;
            transition: color 0.3s ease;
        }
        
        .nav-menu a:hover {
            color: #e53935;
        }
        
        .language-select, .currency-select {
            padding: 8px 16px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background-color: white;
            cursor: pointer;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .language-select:hover, .currency-select:hover {
            background-color: #f5f5f5;
        }
        
        /* Breadcrumb */
        .breadcrumb {
            padding: 30px 0;
            font-size: 16px;
            color: #666;
        }
        
        .breadcrumb span.sepp, .breadcrumb a, .breadcrumb a span {
            color: #484848;
            font-weight: 600;
            text-decoration: none;
            opacity: .6;
            
            transition: all .5s;
        }
        
        .breadcrumb a span:hover {
            opacity: 1;
        }
        
        .breadcrumb span {
            font-weight: 600;
            color: rgba(72, 72, 72, 1);
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            color: #e53935;
        }
        
        /* Hero Section */
        .hero {
            text-align: center;
            padding: 10px 0 48px 0;
        }
        
        .hero.category {
            padding: 10px 0;
        }
        
        .hero h1 {
            font-size: 55px;
            color: rgba(72, 72, 72, 1);
            margin-bottom: 20px;
        }
        
        .hero.category h1 {
            margin-bottom: 0;
            text-align: left;
            line-height: 55px;
        }
        
        .hero p {
            font-size: 18px;
            color: rgba(72, 72, 72, 1);
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Category Buttons */
        .category-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin: 0 auto 80px auto;
        }
        
        .category-btn {
            padding: 7px 16px;
            border: 1px solid rgba(102, 116, 138, 1);
            border-radius: 8px;
            background: rgba(247, 247, 247, 1);
            
            font-weight: 700;
            font-size: 14px;
            line-height: 20px;
            color: rgba(17, 24, 39, 1);
            cursor: pointer;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
			
			text-decoration: none;
        }
        
        .category-btn img {
            margin: 0 10px 0 0;    
        }
        
        .category-btn:hover {
            opacity: .5;
        }
        
        .category-btn i {
            margin-right: 8px;
            font-size: 14px;
        }
        
        /* Blog Posts */
        .blog-section {
            padding: 40px;
            margin: 40px auto;
        }
        
        .blog-section.top {
            background-color: white;
            border-radius: 12px;
            padding: 40px;
            margin: 40px auto;
            border: 1px solid rgba(234, 234, 234, 1)
        }
        
        .related-posts .section-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            
            font-size: 34px;
            line-height: 52px;
            font-weight: 600;
            color: rgba(72, 72, 72, 1);
            margin-bottom: 30px;
        }
        
        .related-posts .section-title .view-all {
            font-family: Nunito;
            font-weight: 600;
            font-size: 18px;
            line-height: 27px;
            text-align: center;
            color: rgba(72, 72, 72, 1);
        }
        
        .related-posts .section-title .view-all a {
            position: relative;
                padding: 0 30px 0 0;
            
            font-weight: 600;
            font-size: 18px;
            line-height: 27px;
            text-align: center;
            color: rgba(72, 72, 72, 1);
            text-decoration: none;
            
            transition: all .5s;
        }
        
        .related-posts .section-title .view-all a:hover {
            opacity: .5;
        }
        
         .related-posts .section-title .view-all a:before {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                background: url(../images/arrow.svg) center center;
                width: 24px;
                height: 26px;
         }
        
        .posts-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }
        
        .post-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .post-card:hover {
            transform: translateY(-5px);
			cursor: pointer;
        }
        
        .post-image {
            width: 100%;
            height: 240px;
            object-fit: cover;
            border-radius: 12px;
        }
        
        .post-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 4px 10px;
            font-size: 12px;
            border-radius: 4px;
            z-index: 9;
        }
        
        .post-content {
            padding: 15px;
        }
        
        .post-meta {
            font-size: 14px;
            color: #666;
            margin-bottom: 8px;
        }
        
        .post-title {
            position: relative;
            padding: 0 24px 0 0;
            font-size: 18px;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .post-title:before {
            content: '';
            position: absolute;
            top: -2px;
            right: 0;
            background: url("../images/arrow.svg") center center;
            width: 24px;
            height: 26px;
        }
        
        .post-title a {
            color: #333;
            text-decoration: none;
        }
        
		.post-card:hover .post-title a,
        .post-title a:hover {
            color: #e53935;
        }
        
        .post-excerpt {
            font-size: 16px;
            color: #666;
            line-height: 1.5;
        }
        
        /* Load More Button */
        .load-more {
            display: block;
            margin: 40px auto;
            padding: 16px 40px;
            background: rgba(174, 45, 50, 1);
            
            font-family: 'Nunito';
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .load-more:hover {
            background-color: #d32f2f;
        }
        
        /* Footer */
        footer {
            color: white;
            padding: 0;
            margin: 80px 0 0;
        }
        
        .footer-menu li {
            list-style: none;
            margin: 10px 0;
        }
        
        .footer-menu li a {
            transition: all .5s;    
        }
        
        footer > .container-fluid:nth-child(2n-1) {
            background-color: rgba(36, 50, 74, 1);
        }
        
        footer > .container-fluid:nth-child(2n) {
            background-color: rgba(29, 41, 62, 1);
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding: 80px 0;
        }
        
        .footer-container .footer-column {
            text-align: center;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-column p {
            color: #b0c4de;
            font-size: 14px;
            line-height: 1.6;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: #b0c4de;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column a:hover {
            color: white;
        }
        
        .footer-bottom {
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .footer-links a {
            color: #b0c4de;
            text-decoration: none;
            font-size: 14px;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .copyright {
            max-width: 440px;
            width: 100%;
            text-align: center;
            color: #b0c4de;
            font-size: 14px;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .posts-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .author_text {
                margin: 30px 0 !important;
            }
        }
        
        @media (max-width: 1000px) {
            
            .container__wrapper {
                  grid-template-columns: 1fr !important;
                  margin: 0 20px 30px 20px !important;
            }
            
        }
        
        @media (max-width: 900px) {
            .posts-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: row;
                padding: 15px;
            }
            
            .nav-menu {
                margin-top: 15px;
                flex-wrap: wrap;
            }
            
            .nav-menu li {
                margin-right: 15px;
                margin-bottom: 10px;
            }
            
            .category-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .category-btn {
                width: 100%;
                max-width: 240px;
                margin-bottom: 10px;
            }
            
            .blog-section.top {
                margin: 0 20px;
                padding: 20px;
            }
            
            .posts-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            /* Mobile Menu */
            .menu-toggle {
                display: flex !important;
            }
            
            /* Menu Toggle Animation */
            .menu-toggle.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            
            .menu-toggle.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
			
			.footer-links,
			.container-fluid .footer-bottom {
                width: 100%;
			}
			
			.copyright {
				margin: 20px 0 0;    
				max-width: 100%;
				width: 100%;
			}
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
            }
            
            .breadcrumb {
                padding: 20px 0;
            }
            
            .footer-bottom {
                flex-direction: column;
            }
            
            .category-btn {
                text-align: left;
            }
            
            .category-buttons {
                margin: 0 20px 50px 20px;
				flex-direction: row;
				flex-wrap: nowrap;
				align-items: center;
				justify-content: flex-start;
				overflow-x: scroll;
				padding: 0;
            }
			
			.category-buttons::-webkit-scrollbar {
				height: 6px;
			}
			.category-buttons::-webkit-scrollbar-track {
			}
			.category-buttons::-webkit-scrollbar-thumb {
			  background-color: rgba(102, 116, 138, 1);    /* цвет плашки */
			  border-radius: 3px;       /* закругления плашки */
			}
			
			.category-buttons a {
				min-width: fit-content;	
			}
            
            .section-title {
                margin-bottom: 20px !Important;
            }
            
            .related-posts .section-title {
                flex-direction: column;
            }
        }
    
        
        .wrapper {
            background: rgba(247, 247, 247, 1);
        }
        
        .container-fluid .footer-bottom {
            padding: 40px 20px;   
        }
        
        
        
        
        
        /* Hero Section */
        .banner {
            background-image: url('../images/bg.png');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 140px 0;
            position: relative;
            overflow: hidden;
        }
        
        .banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }
        
        .banner-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .banner-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .banner h1 {
            font-size: 55px;
            font-weight: 600;
            margin-bottom: 20px;
            line-height: 1.2;
            color: rgba(255, 255, 255, 1);
        }
        
        .banner p {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 20px;
            opacity: 0.9;
            color: rgba(255, 255, 255, 1);
        }
        
        .banner-date {
            font-size: 16px;
            font-weight: 700;
            color: rgba(255, 255, 255, 1);
        }
        
        /* Main Content */
        .main-content {
            position: relative;
            max-width: 1300px;
            display: flex;
            gap: 80px;
            margin: 60px auto;
        }
        
        aside {
            position: relative;
            width: 340px;
            flex-shrink: 0;
        }
        
        .sidebar {
            width: 100%;
        }
        
        .sidebar .social-links {
            margin: 25px 0 0;
        }
        
        .sidebar.fixed {
            position: fixed;
            top: 115px;
        }
        
        .sidebar-title {
            margin: 0 0 20px;
            
            font-weight: 600;
            font-size: 24px;
            line-height: 32px;
            color: rgba(72, 72, 72, 1);
        }
        
        .kamatoc  {
            list-style: none;
            padding: 0;
        }
        
        .kamatoc  li {
            position: relative;
            margin: 0;
            padding: 12px 0;
			transition: all .5s;
        }
        
        .kamatoc  li:before {
            content: '';
            background: rgba(228, 228, 228, 1);
            width: 4px;
            height: 100%;
            position: absolute;
            top: 0;
            left: -20px;
        }
        
        .kamatoc  li:nth-child(1):before {
            border-radius: 2px 2px 0 0;   
        }
        
        .kamatoc  li:last-child:before {
            border-radius: 0 0 2px 2px;   
        }
        
        .kamatoc  li.current:before {
            background: rgba(174, 45, 50, 1);
        }
        
        .kamatoc  a {
            font-weight: 600;
            font-size: 18px;
            line-height: 27px;
            color: rgba(72, 72, 72, 0.6);
            text-decoration: none;
            
            transition: color 0.3s ease;
        }
        
        .kamatoc  li.current a {
            color: rgba(72, 72, 72, 1);
        }
        
        .kamatoc  a:hover {
            color: rgba(72, 72, 72, 1);
        }
        
        .kamatoc li.current {
            color: #e53935;
            font-weight: 600;
        }
        
        .last-updated {
            font-size: 14px;
            color: rgba(72, 72, 72, 1);
            margin-top: 20px;
        }
        
        .content {
            max-width: 820px;
            flex-grow: 1;
        }
        
        .content.page {
            max-width: 820px;
            flex-grow: 1;
            margin: 0 auto;
        }
        
        .content img {
            max-width: 100%;
        }
        
        .content h2 {
            font-size: 34px;
            font-weight: 600;
            margin: 40px 0 20px;
            color: #333;
        }
        
        .content h3 {
            font-size: 28px;
            font-weight: 600;
            margin: 40px 0 20px;
            color: #333;
        }
        
        .content h4, .content h5, .content h6 {
            font-size: 22px;
            font-weight: 500;
            margin: 40px 0 20px;
            color: #333;
        }
        
        .content h2:nth-child(1), .content h3:nth-child(1), .content h4:nth-child(1) {
            margin: 0 0 20px;
        }
        
        .content p {
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        .content ul {
            margin: 20px 0;
            padding-left: 20px;
        }
        
        .content ol {
            margin: 20px 0;
            padding-left: 20px;
        }
        
        .content ul li {
            position: relative;
            list-style: none;
            margin-bottom: 10px;
            
            font-weight: 600;
            font-size: 16px;
            line-height: 32px;
        }
        
        .content ol li {
            position: relative;
            margin-bottom: 10px;
            
            font-weight: 600;
            font-size: 16px;
            line-height: 32px;
        }
        
        .content ul li:before {
            content: '';
            width: 8px;
            height: 8px;
            position: absolute;
            top: 11px;
            left: -19px;
            background: rgba(112, 124, 144, 1);
            border-radius: 4px;
        }
        
        .wp-caption, .image-caption {
            max-width: 100%;
        }
        
        .wp-caption img {
            margin: 0 0 5px 0;
        }
        
        .content img + .content p.wp-caption-text {
            margin-top: 0; /* сброс, если нужно */
        }
        
        .content img:has(+ p.wp-caption-text) {
            margin-bottom: 5px;
        }
        
        .content .wp-caption-text {
            max-width: 80%;
            margin: 0 auto;
            
            font-size: 14px;
            font-weight: 600;
            line-height: 18px;
        }
        
        .content img {
            max-width: 100%;
            height: auto;
            margin: 30px 0;
            border-radius: 8px;
        }
        
        .wp-caption,
        .image-caption {
            font-size: 14px;
            color: #666;
            text-align: center;
            margin-bottom: 30px;
        }
        
        blockquote {
            display: block;
            width: 100%;
            margin: 60px 0;
        }
        
        .content blockquote p {
            font-weight: 600;
            font-size: 34px;
            line-height: 52px;
            letter-spacing: 0%;
            color: rgba(36, 50, 74, 1);
            
            padding: 10px 0;
            margin: 0;
        }
        
        .content blockquote p:nth-child(1) {
            padding: 0;
        }
        
        .tip {
            position: relative;
            background: rgba(226, 234, 246, 1);

            padding: 20px 20px 20px 80px;
            margin: 30px 0;
            border-radius: 12px;
            
            font-family: Nunito;
            font-weight: 700;
            font-size: 18px;
            line-height: 28px;
            letter-spacing: 0%;
            color: rgba(72, 72, 72, 1);
        }
        
        .tip:before {
            content: '';
            width: 32px;
            height: 32px;
            background: url("../images/education.svg");
            position: absolute;
            top: 20px;
            left: 25px;
        }
        
        .warning {
            position: relative;
            background-color: #ffebee;
            padding: 20px 20px 20px 70px;
            margin: 30px 0;
            border-radius: 8px;
            
            font-family: Nunito;
            font-weight: 700;
            font-size: 18px;
            line-height: 28px;
            letter-spacing: 0%;
            color: rgba(72, 72, 72, 1);
        }
        
        .warning:before {
            content: '!';
            position: absolute;
            top: 25px;
            left: 27px;
            width: 20px;
            height: 20px;
            background-color: #c62828;
            border-radius: 50%;
            display: inline-block;
            margin-right: 10px;
            color: white;
            text-align: center;
            line-height: 20px;
            font-weight: bold;
        }
        
        /* Property Cards */
        .property-cards {
            display: flex;
            gap: 20px;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        
        .property-card {
            flex: 1;
            min-width: 300px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .property-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .property-info {
            padding: 15px;
        }
        
        .property-title {
            font-size: 16px;
            margin-bottom: 5px;
            color: #333;
        }
        
        .property-type {
            font-size: 14px;
            color: #e53935;
            margin-bottom: 5px;
        }
        
        .property-location {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
        }
        
        .property-details {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            font-size: 14px;
            color: #666;
        }
        
        .property-actions {
            display: flex;
            gap: 10px;
        }
        
        .action-btn {
            padding: 8px 16px 8px 32px;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .call-btn {
            position: relative;
            
            border: 1px solid rgba(102, 116, 138, 1);
            border-radius: 8px;
            
            font-family: Nunito;
            font-weight: 700;
            font-size: 14px;
            line-height: 20px;
            letter-spacing: 0%;
            color: rgba(17, 24, 39, 1);
            
            transition: all .5s;
			text-decoration: none;
        }
        
        .call-btn:before {
            content: '';
            position: absolute;
            top: 11px;
            left: 12px;
            width: 14px;
            height: 12px;
            background: url(../images/house.svg);
        }
        
        .call-btn:hover {
            opacity: .5;
        }
        
        .whatsapp-btn {
            background-color: #e8f5e8;
            color: #4caf50;
        }
        
        .whatsapp-btn:hover {
            background-color: #c8e6c9;
        }
        
        /* CTA Section */
        .cta-section {
            display: flex;
            align-items: center;
            background-color: #f8f9fa;
            border-radius: 12px;
            padding: 45px 30px 45px 300px;
            margin: 40px 0;
            gap: 20px;
            
            background: url("../images/cta.png");
        }
        
        .cta-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .cta-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .cta-content {
            flex: 2;
        }
        
        .cta-title {
            font-size: 24px;
            line-height: 32px;
            font-weight: 600;
            margin-bottom: 15px;
            color: rgba(72, 72, 72, 1);        
        }
        
        .cta-text {
            font-size: 16px;
            line-height: 24px;
            font-weight: 600;
            color: rgba(72, 72, 72, 1);
            margin-bottom: 40px;
        }
        
        .cta-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cta-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .cta-call-btn {
            position: relative;
            padding: 10px 20px 10px 42px;
            
            background: rgba(36, 50, 74, 1);
            border-radius: 8px;

            font-weight: 700;
            font-size: 14px;
            line-height: 20px;
            color: rgba(255, 255, 255, 1);
            
            text-decoration: none;
        }
        
        .cta-call-btn:before {
            content: '';
            position: absolute;
            top: 11px;
            left: 16px;
            width: 16px;
            height: 16px;
            background: url("../images/phone.svg");
        }
    
        .cta-whatsapp-btn {
            position: relative;
            padding: 10px 20px 10px 42px;
            
            background: rgba(36, 50, 74, 1);
            border-radius: 8px;

            font-weight: 700;
            font-size: 14px;
            line-height: 20px;
            color: rgba(255, 255, 255, 1);
            
            text-decoration: none;
        }
        
        .cta-whatsapp-btn:before {
            content: '';
            position: absolute;
            top: 11px;
            left: 16px;
            width: 16px;
            height: 16px;
            background: url(../images/ws.svg);
        }
        
        .cta-call-btn:hover {
            background-color: #1976d2;
        }
        
        .cta-whatsapp-btn:hover {
            background-color: #388e3c;
        }
        
        /* Author Section */
        .author-section {
            display: flex;
            align-items: center;
            gap: 20px;
            margin: 40px 0;
            padding-top: 40px;
            border-top: 1px solid #eee;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            margin: 0;
            object-fit: cover;
            border-radius: 12px;
        }
        
        .author-info {
            flex: 1;
        }
        
        .author-info a,
        .author-name {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 5px;
            color: #333;
        }
        
        .author-description {
            font-size: 14px;
            color: #666;
        }
        
        .social-links {
            display: flex;
            gap: 10px;
        }
        
        .social-link {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            transition: background-color 0.3s ease;
            text-decoration: none;
        }
        
        .social-link img {
            transition:  1s;
        }
        
        .social-link:hover img,
        .social-link:hover {
            opacity: .75;
        }
        
        .facebook {
            background-color: #3b5998;
        }
        
        .vkontakte {
            background-color: #4a76ff;
        }
        
        .telegram {
            background-color: #0088cc;
        }
        
        .whatsapp {
            background-color: #25d366;
        }
        
        /* Related Posts */
        .related-posts {
            background-color: white;
            border-radius: 0;
            padding: 40px;
            margin: 0;
            border-top: 1px solid rgba(234, 234, 234, 1);
            border-bottom: 1px solid rgba(234, 234, 234, 1);
        }
        
        .section-title {
            font-size: 24px;
            color: #333;
            margin-bottom: 30px;
        }
                       
        /* Responsive Design */
        @media (max-width: 1200px) {
            .main-content {
                flex-direction: column;
            }
            
            .sidebar {
                width: 100%;
                margin-bottom: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .banner {
                padding: 80px 0;
            }
            
            .banner h1 {
                font-size: 36px;
            }
            
            .main-content {
                gap: 20px;
            }
            
            .sidebar {
                width: 100%;
                padding: 0 0 0 20px;
                box-sizing: border-box;
            }
            
            .banner-content {
                padding: 0 20px;
            }
            
            .content h2 {
                font-size: 24px;
                line-height: 30px;
            }
            
            blockquote {
                font-size: 28px;
                line-height: 36px;
            }
            
            .cta-section {
                position: relative;
                padding: 30px;
            }
            
            .cta-section:before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                background: rgba(255, 255, 255, .7);
                z-index: 1;
                width: 100%;
                height: 100%;
            }
            
            .cta-content {
                position: relative;
                z-index: 2;
            }
            
            .cta-text {
                margin-bottom: 20px;
            }
            
            .property-cards {
                flex-direction: column;
            }
            
            .property-card {
                min-width: 100%;
            }
            
            .cta-section {
                flex-direction: column;
            }
            
            .cta-image {
                order: 1;
            }
            
            .cta-content {
                order: 2;
            }
            
            .author-section {
                flex-direction: column;
            }
        }
        
        @media (max-width: 480px) {
            .banner h1 {
                font-size: 28px;
            }
            
            .copyright {
                margin: 20px 0 0;   
            }
            
                .container__wrapper {
                grid-template-columns: 1fr !important;
                margin: 0 10px 30px 10px !important;
            }
            
            .container__wrapper .container__image img {
                max-width: 100%;
				margin-bottom: 0 !important;
            }
        }
        
        .category-tag {
            margin: 60px 0 0;
        }
        
        .related-posts + footer {
            margin: 0;
        }
        
        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }
        
        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: #333;
            margin: 3px 0;
            transition: 0.3s;
        }
        
        #nav-menu {
                display: block;
            }
        
        @media (max-width: 1200px) {
            
            
            /* Mobile Menu */
            .menu-toggle {
                display: flex;
            }
            
            #nav-menu {
                display: none;
            }
            
            #nav-menu.active {
                display: block;
                position: absolute;
            }
            
            .nav-menu {
                position: fixed;
                top: 60px;
                left: -100%;
                flex-direction: column;
                background-color: white;
                width: 100%;
                height: calc(100vh - 60px);
                padding: 20px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                transition: 0.3s;
                z-index: 99;
            }
            
            #nav-menu.active .nav-menu {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
                text-align: center;
            }
            
            
        }
        
        .content table {
    width: 100%;
    margin: 0 0 30px;
    border-collapse: collapse;
    font-size: 14px;
    color: #484848; /* Основной текст */
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

/* Заголовки таблицы */
.content table thead th {
    background-color: rgba(36, 50, 74, 1); /* Тёмно-синий фон */
    color: #fff; /* Белый текст */
    font-weight: 600;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 2px solid #66748A; /* Граница под шапкой */
}

/* Ячейки тела таблицы */
.content table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid #E2EAF6; /* Светлая граница между строками */
    color: #484848;
}

/* Чётные строки — слегка выделены фоном */
.content table tbody tr:nth-child(even) {
    background-color: #E2EAF6; /* Светло-голубой фон */
}

/* Стиль для ссылок или активных элементов внутри ячеек (опционально) */
.content table td a {
    color: rgba(36, 50, 74, 1);
    text-decoration: none;
    font-weight: 500;
}

/* Текст второго плана (например, примечания, даты) */
.content table .secondary-text {
    color: #707C90;
    font-size: 13px;
}

/* Границы таблицы */
.content table {
    border: 1px solid #E2EAF6;
}

/* Углы заголовков */
.content table thead th:first-child {
    border-top-left-radius: 8px;
}

.content table thead th:last-child {
    border-top-right-radius: 8px;
}

/* Стили для прилипания содержания */
/* Прилипающий стиль для TOC */
#sidebar.sticky {
    position: sticky;
    top: 110px;
    z-index: 1;
}

/* Опционально: плавное появление прилипания */
#sidebar {
    transition: top 0.2s ease;
}

.blog-section__category {
    padding: 0;
    margin: 0 auto;
}

@media (max-width: 1600px) {
	.blog-section.top {
	    margin: 0 20px;
	}

    .blog-section__category {
        padding: 0 30px;
        margin: 0 auto;
    }
}

.wrapper {
    text-align: left;  
    margin: 0 0 12px;
}

.wrapper .back-btn {
    position: relative;
    
    font-size: 18px;
    font-weight: 600;
    color: #24324A;
    text-decoration: none;
    padding: 0 0 0 25px;
    
    transition: all .5s;
}

.wrapper .back-btn:hover {
    opacity: .5;
}

.wrapper .back-btn:before {
    content: '';
    background: url(../images/arrow-right.svg) center center;
    width: 20px;
    height: 21px;
    position: absolute;
    top: 2px;
    left: 0;
}

.author_text {
    margin: 30px 0 70px;
    
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(72, 72, 72, 1);
    text-align: left;
}

.author_text p {
    width: 100%;
    margin: 0 0 20px;
    
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(72, 72, 72, 1);
    text-align: left;
}

.container__wrapper {
    display: grid;
    gap: 40px;
    grid-template-columns: 390px 1fr;
    margin: 0 20px 0 20px;
}

.container__wrapper .container__image img {
    border-radius: 12px;
	margin-bottom: 30px;
}

.user-meta {
    position: relative;
    text-align: left;
    margin: 0 0 24px;
}

.user-meta span {
    font-family: Nunito;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: rgba(72, 72, 72, 1);
}

.user-meta span.sepp {
    position: relative;
    top: 2px;
    display: inline-block;
    margin: 0 10px;   
    width: 1px;
    height: 15px;
    background: rgba(0, 0, 0, 0.3);
}