   :root {
       --primary-color: #000000;
       --secondary-color: #666666;
       --bg-light: #ffffff;
       --border-color: #e0e0e0;
   }

   body {
       font-family: 'Poppins', sans-serif;
       background-color: var(--bg-light);
       color: #222;
       overflow-x: hidden;
   }

   /* Top Header Navigation */
   .social-icons i {
       font-size: 1.15rem;
       color: #000;
       margin-right: 18px;
       transition: opacity 0.3s ease;
       cursor: pointer;
   }

   .social-icons i:hover {
       opacity: 0.6;
   }

   .menu-hamburger {
       font-size: 1.4rem;
       cursor: pointer;
       transition: transform 0.3s ease;
   }

   .menu-hamburger:hover {
       transform: scale(1.1);
   }

   /* Full Screen Overlay Menu */
   .overlay-menu {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background-color: rgba(0, 0, 0, 0.95);
       z-index: 2000;
       display: flex;
       align-items: center;
       justify-content: center;
       opacity: 0;
       pointer-events: none;
       transition: opacity 0.4s ease;
   }

   .overlay-menu.open {
       opacity: 1;
       pointer-events: auto;
   }

   .close-menu-btn {
       position: absolute;
       top: 40px;
       right: 40px;
       font-size: 2rem;
       color: #fff;
       cursor: pointer;
       transition: transform 0.3s ease;
   }

   .close-menu-btn:hover {
       transform: rotate(90deg);
   }

   .overlay-links {
       list-style: none;
       padding: 0;
       text-align: center;
   }

   .overlay-links li {
       margin: 30px 0;
   }

   .overlay-links a {
       color: #fff;
       font-size: 2rem;
       font-weight: 500;
       text-decoration: none;
       letter-spacing: 2px;
       transition: opacity 0.3s ease;
   }

   .overlay-links a:hover {
       opacity: 0.7;
   }

   /* Right Column Image Container */
   .author-container-block {
       position: relative;
       display: inline-block;
       width: 100%;
       text-align: center;
   }

   .author-main-img {
       width: 100%;
       height: auto;
       max-height: 80vh;
       object-fit: contain;
       display: block;
   }

   /* About Overlay Button */
   .about-overlay-btn {
       position: absolute;
       right: 15.5%;
       bottom: 123.5%;
       background-color: #717171;
       color: #ffffff !important;
       padding: 10px 24px;
       font-size: 0.8rem;
       font-weight: 500;
       letter-spacing: 2px;
       text-transform: uppercase;
       border: none;
       cursor: pointer;
       z-index: 10;
       transform: rotate(-90deg);
       transform-origin: right bottom;
       white-space: nowrap;
       box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
       transition: all 0.3s ease;
       text-decoration: none;
       display: inline-block;
   }

   .about-overlay-btn:hover {
       background-color: #222222;
       transform: rotate(-90deg) scale(1.05);
   }

   /* Calligraphy Typography */
   .signature-title {
       font-family: 'Great Vibes', cursive;
       font-size: 4.8rem;
       font-weight: 400;
       margin-bottom: 15px;
       background: linear-gradient(135deg, #000 0%, #333 100%);
       -webkit-background-clip: text;
       background-clip: text;
       color: transparent;
   }

   /* Category Filter Navigation */
   .category-nav {
       display: flex;
       flex-wrap: wrap;
       gap: 5px;
       align-items: center;
   }

   .category-nav a {
       color: #777;
       text-decoration: none;
       font-weight: 500;
       font-size: 0.95rem;
       padding: 0 12px;
       border-right: 1px solid #e0e0e0;
       transition: color 0.25s ease;
   }

   .category-nav a:last-child {
       border-right: none;
   }

   .category-nav a.active,
   .category-nav a:hover {
       color: #000;
       font-weight: 700;
   }

   /* Section Layout */
   .carousel-header-line {
       border-bottom: 2px solid #000;
       position: relative;
       margin-top: 15px;
       margin-bottom: 35px;
   }

   .carousel-controls {
       position: absolute;
       right: 0;
       top: -18px;
       background: #fff;
       padding-left: 12px;
   }

   .control-btn {
       background: #000;
       color: #fff;
       border: none;
       border-radius: 50%;
       width: 34px;
       height: 34px;
       font-size: 0.8rem;
       margin-left: 6px;
       cursor: pointer;
       transition: all 0.3s ease;
   }

   .control-btn:hover {
       background: #444;
       transform: scale(1.05);
   }

   /* Post Card Styling */
   .post-card {
       cursor: pointer;
       transition: all 0.3s ease;
       text-decoration: none;
       display: block;
   }

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

   .img-frame {
       border: 1.5px solid #000;
       padding: 5px;
       background: #fff;
       display: block;
       overflow: hidden;
   }

   .img-frame img {
       width: 100%;
       height: 200px;
       object-fit: cover;
       transition: transform 0.5s ease;
   }

   .post-card:hover .img-frame img {
       transform: scale(1.05);
   }

   .post-title {
       font-size: 0.95rem;
       font-weight: 700;
       margin-top: 12px;
       margin-bottom: 4px;
       color: #000;
       line-height: 1.3;
   }

   .post-desc {
       font-size: 0.82rem;
       color: #666;
       display: -webkit-box;
       -webkit-line-clamp: 2;
       -webkit-box-orient: vertical;
       overflow: hidden;
       line-height: 1.4;
   }

   /* View All Divider */
   .view-all-sec {
       display: flex;
       align-items: center;
       margin-top: 35px;
   }

   .view-all-btn {
       font-weight: 700;
       color: #000;
       text-decoration: none;
       border-bottom: 2px solid #000;
       padding-bottom: 2px;
       white-space: nowrap;
       font-size: 0.9rem;
       text-transform: uppercase;
       transition: all 0.3s ease;
   }

   .view-all-btn:hover {
       letter-spacing: 1px;
       border-bottom-width: 3px;
   }

   .view-all-line {
       flex-grow: 1;
       border-bottom: 1px solid #ddd;
       margin-left: 20px;
   }

   /* Loading Spinner */
   .loading-spinner {
       display: inline-block;
       width: 20px;
       height: 20px;
       border: 2px solid #f3f3f3;
       border-top: 2px solid #000;
       border-radius: 50%;
       animation: spin 1s linear infinite;
   }

   @keyframes spin {
       0% {
           transform: rotate(0deg);
       }

       100% {
           transform: rotate(360deg);
       }
   }

   /* Responsive Design */
   @media (max-width: 991px) {
       .signature-title {
           font-size: 3.5rem;
           text-align: center;
       }

       .category-nav {
           justify-content: center;
           margin-bottom: 20px !important;
       }

       .about-overlay-btn {
           right: 14.5%;
           bottom: 24.5%;
       }
   }

   @media (max-width: 768px) {
       .img-frame img {
           height: 160px;
       }

       .overlay-links a {
           font-size: 1.5rem;
       }

       .close-menu-btn {
           top: 20px;
           right: 20px;
           font-size: 1.5rem;
       }
   }

   @media (max-width: 576px) {
       .about-overlay-btn {
           right: 12.5%;
           bottom: 25.5%;
           padding: 6px 16px;
           font-size: 0.7rem;
       }

       .signature-title {
           font-size: 2.5rem;
       }

       .category-nav a {
           font-size: 0.8rem;
           padding: 0 8px;
       }
   }

   /* Animations */
   @keyframes fadeIn {
       from {
           opacity: 0;
           transform: translateY(20px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   .carousel-item {
       animation: fadeIn 0.5s ease-out;
   }

   /* Modal Styling */
   .modal-content {
       border-radius: 20px;
       border: none;
   }

   .modal-header {
       border-bottom: 2px solid #f0f0f0;
   }

   /* Breadcrumb */
   .breadcrumb-custom {
       background: transparent;
       padding: 0;
       margin-bottom: 20px;
   }

   .breadcrumb-custom a {
       color: #666;
       text-decoration: none;
   }

   .breadcrumb-custom a:hover {
       color: #000;
   }

   /* Mobile Responsive Block Styles */
   @media (max-width: 768px) {
       .mobile-responsive-block .row {
           flex-direction: column;
       }

       .mobile-responsive-block [class*="col-"] {
           width: 100%;
           margin-bottom: 1.5rem;
       }

       .mobile-responsive-block [class*="col-"]:last-child {
           margin-bottom: 0;
       }
   }

   /* Block content styling */
   .block-container {
       margin-bottom: 2rem;
   }

   .column-content {
       word-wrap: break-word;
       overflow-wrap: break-word;
   }

   .column-content img {
       max-width: 100%;
       height: auto;
   }

   .column-content table {
       width: 100%;
       overflow-x: auto;
       display: block;
   }

   /* Responsive tables in content */
   @media (max-width: 768px) {
       .column-content table {
           font-size: 14px;
       }

       .column-content .video-container {
           position: relative;
           padding-bottom: 56.25%;
           height: 0;
           overflow: hidden;
       }

       .column-content .video-container iframe,
       .column-content .video-container video {
           position: absolute;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
       }
   }

   .archive-container {
       font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
       background-color: #ffffff;
       color: #111111;
   }

   /* Sidebar Styles */
   .sidebar-filter-section {
       border-right: 1px solid #eef2f6;
   }

   .category-links li {
       margin-bottom: 8px;
   }

   .filter-link {
       font-size: 14px;
       color: #555555;
       text-decoration: none;
       transition: color 0.2s ease;
       font-weight: 400;
   }

   .filter-link:hover,
   .filter-link.active-filter {
       color: #000000;
       font-weight: 700;
   }

   .sidebar-divider {
       border-top: 1px solid #eef2f6;
       opacity: 1;
       width: 100%;
       margin: 1.5rem 0;
   }

   /* Archive Timeline */
   .year-link {
       font-size: 14px;
       color: #222222;
       font-weight: 600;
       text-decoration: none;
       display: block;
   }

   .year-link.active-year {
       color: #000000;
       font-weight: 700;
   }

   .year-count {
       font-size: 11px;
       font-weight: normal;
       color: #888;
   }

   .months-grid {
       display: flex;
       flex-wrap: wrap;
       row-gap: 6px !important;
       column-gap: 10px !important;
   }

   .month-link {
       font-size: 12px;
       color: #555555;
       text-decoration: none;
       transition: all 0.2s ease;
       padding: 2px 0;
       display: inline-block;
   }

   .month-link:hover {
       color: #000000;
       font-weight: 500;
   }

   .month-link.active-month {
       color: #000000;
       font-weight: 700;
       border-bottom: 1px solid #000;
   }

   .month-count {
       font-size: 10px;
       color: #999;
   }

   /* Main Header */
   .archive-heading {
       font-size: 24px;
       font-weight: 700;
       color: #111111;
       letter-spacing: -0.5px;
   }

   .border-bottom {
       border-bottom: 2px solid #111111 !important;
   }

   .filter-summary .badge {
       font-size: 12px;
       padding: 5px 10px;
       font-weight: normal;
   }

   /* Polaroid Grid */
   .polaroid-grid {
       padding-top: 10px;
   }

   .polaroid-card {
       background: #ffffff;
       border: 1px solid #e0e0e0;
       padding: 12px 12px 18px 12px;
       height: 100%;
       display: flex;
       flex-direction: column;
       transition: all 0.3s ease;
       border-radius: 4px;
   }

   .polaroid-card:hover {
       transform: translateY(-5px);
       box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
       border-color: #111111;
   }

   .polaroid-image-wrapper {
       width: 100%;
       aspect-ratio: 1 / 1;
       overflow: hidden;
       border: 1px solid #e2e2e2;
       background-color: #fafafa;
       border-radius: 2px;
   }

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

   .polaroid-placeholder {
       width: 100%;
       height: 100%;
       background-color: #f0f0f0;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .polaroid-caption {
       padding-top: 14px;
       flex-grow: 1;
       display: flex;
       flex-direction: column;
       align-items: flex-start;
   }

   .polaroid-title {
       font-size: 15px;
       font-weight: 700;
       line-height: 1.4;
       color: #111111;
       margin: 0 0 8px 0;
   }

   .polaroid-excerpt {
       font-size: 12px;
       line-height: 1.5;
       color: #666666;
       margin: 0 0 10px 0;
   }

   .polaroid-meta {
       display: flex;
       flex-wrap: wrap;
       margin-top: auto;
       padding-top: 8px;
       border-top: 1px solid #f0f0f0;
       width: 100%;
   }

   .post-date,
   .post-category {
       font-size: 10px;
       color: #888888;
   }

   /* Pagination */
   .pagination {
       gap: 5px;
   }

   .pagination .page-item .page-link {
       color: #000;
       border: 1px solid #eef2f6;
       padding: 8px 14px;
       transition: all 0.3s ease;
   }

   .pagination .page-item.active .page-link {
       background: #000;
       border-color: #000;
       color: #fff;
   }

   .pagination .page-item .page-link:hover {
       background: #dc2626;
       border-color: #dc2626;
       color: #fff;
   }

   /* Responsive */
   @media (max-width: 768px) {
       .sidebar-filter-section {
           border-right: none;
           border-bottom: 1px solid #eef2f6;
           padding-bottom: 1.5rem;
           margin-bottom: 1.5rem;
       }

       .months-grid {
           max-width: 100%;
       }

       .archive-heading {
           font-size: 20px;
       }

       .row-cols-1.row-cols-sm-2.row-cols-md-2.row-cols-lg-3 {
           --bs-columns: 2;
       }
   }

   /* Lock Screen - Professional Styling */
   .lock-icon-wrapper {
       animation: pulse 2s infinite;
   }

   .lock-icon-wrapper i {
       font-size: 2.5rem;
       color: #6c757d;
   }

   @keyframes pulse {
       0% {
           transform: scale(1);
           opacity: 0.6;
       }

       50% {
           transform: scale(1.05);
           opacity: 1;
       }

       100% {
           transform: scale(1);
           opacity: 0.6;
       }
   }

   /* Card Styling */
   .rounded-3 {
       border-radius: 12px !important;
   }

   .shadow-sm {
       box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
   }

   .btn-sm {
       font-size: 13px;
       padding: 8px 20px;
   }

   .btn-dark {
       background: #000;
       border-color: #000;
       transition: all 0.3s ease;
   }

   .btn-dark:hover {
       background: #333;
       border-color: #333;
       transform: translateY(-1px);
   }

   /* Responsive */
   @media (max-width: 768px) {
       .lock-icon-wrapper i {
           font-size: 2rem;
       }

       .fw-semibold {
           font-size: 1rem;
       }

       .btn-sm {
           font-size: 12px;
           padding: 6px 16px;
       }

       .card-body {
           padding: 1.5rem !important;
       }
   }

   .fade-up {
       opacity: 0;
       transform: translateY(30px);
       animation: fadeUp 0.6s ease forwards;
   }

   @keyframes fadeUp {
       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   .back-btn {
       transition: all 0.3s ease;
       padding: 6px 16px;
       font-size: 13px;
   }

   .back-btn:hover {
       background: #000;
       color: #fff;
       transform: translateX(-3px);
   }

   .lock-icon-wrapper {
       animation: pulse 2s infinite;
   }

   @keyframes pulse {
       0% {
           transform: scale(1);
       }

       50% {
           transform: scale(1.1);
       }

       100% {
           transform: scale(1);
       }
   }

   .card-hover-effect {
       background: #fff;
       border-radius: 12px;
       padding: 20px;
       transition: all 0.3s ease;
       border: 1px solid #eef2f6;
   }

   .card-hover-effect:hover {
       transform: translateY(-5px);
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
       border-color: #000;
   }

   .category-link {
       color: #000000 !important;
       text-decoration: none;
       display: flex;
       align-items: center;
       justify-content: space-between;
       padding: 8px 0;
       transition: all 0.3s ease;
       font-weight: 500;
   }

   .category-link:hover {
       color: #dc2626 !important;
       transform: translateX(5px);
   }

   .category-link i {
       font-size: 12px;
       color: #000;
       transition: color 0.3s ease;
   }

   .category-link:hover i {
       color: #dc2626;
   }

   .category-count {
       font-size: 12px;
       color: #999;
       font-weight: normal;
   }

   .category-link:hover .category-count {
       color: #dc2626;
   }

   .category-link-hover {
       transition: color 0.3s ease;
   }

   .category-link-hover:hover {
       color: #dc2626 !important;
   }

   .recent-post-hover {
       transition: all 0.3s ease;
       padding: 8px;
       border-radius: 8px;
   }

   .recent-post-hover:hover {
       background: #f8f9fa;
       transform: translateX(5px);
   }

   .recent-post-img {
       width: 60px;
       height: 60px;
       object-fit: cover;
       border-radius: 8px;
       transition: transform 0.3s ease;
   }

   .recent-post-hover:hover .recent-post-img {
       transform: scale(1.05);
   }

   .recent-post-title {
       color: #000;
       transition: color 0.3s ease;
       font-weight: 600;
   }

   .recent-post-title:hover {
       color: #dc2626 !important;
   }

   .nav-link-hover {
       color: #000;
       transition: all 0.3s ease;
       display: inline-block;
   }

   .nav-link-hover:hover {
       color: #dc2626 !important;
       transform: translateX(-5px);
   }

   .col-6.text-end .nav-link-hover:hover {
       transform: translateX(5px);
   }

   .file-item {
       transition: all 0.3s ease;
       border: 1px solid #eef2f6;
       margin-bottom: 8px;
       border-radius: 8px;
   }

   .file-item:hover {
       background: #f8f9fa;
       transform: translateX(5px);
       border-color: #000;
   }

   .video-card-hover {
       transition: all 0.3s ease;
       border-radius: 12px;
       overflow: hidden;
   }

   .video-card-hover:hover {
       transform: translateY(-5px);
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   }

   .gallery-item-hover {
       position: relative;
       overflow: hidden;
       border-radius: 12px;
       cursor: pointer;
   }

   .gallery-thumb {
       width: 100%;
       height: 180px;
       object-fit: cover;
       transition: transform 0.5s ease;
   }

   .gallery-item-hover:hover .gallery-thumb {
       transform: scale(1.1);
   }

   .gallery-overlay {
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background: rgba(0, 0, 0, 0.6);
       display: flex;
       align-items: center;
       justify-content: center;
       opacity: 0;
       transition: opacity 0.3s ease;
   }

   .gallery-item-hover:hover .gallery-overlay {
       opacity: 1;
   }

   .gallery-overlay i {
       color: white;
       font-size: 2rem;
   }

   .sidebar-widget {
       background: #f8f9fa;
       padding: 1.5rem;
       border-radius: 12px;
       transition: all 0.3s ease;
   }

   .sidebar-widget:hover {
       transform: translateY(-3px);
       box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   }

   .blog-content img {
       max-width: 100%;
       height: auto;
       border-radius: 8px;
   }

   .columns-block-wrapper .row {
       display: flex;
       flex-wrap: wrap;
       margin: 0 -12px;
   }

   .columns-block-wrapper .row>[class*="col-"] {
       padding: 0 12px;
       box-sizing: border-box;
   }

   @media (min-width: 769px) {

       .columns-block-wrapper .col-md-4,
       .columns-block-wrapper .col-4 {
           width: 33.333333%;
           flex: 0 0 33.333333%;
           max-width: 33.333333%;
       }

       .columns-block-wrapper .col-md-3,
       .columns-block-wrapper .col-3 {
           width: 25%;
           flex: 0 0 25%;
           max-width: 25%;
       }

       .columns-block-wrapper .col-md-6,
       .columns-block-wrapper .col-6 {
           width: 50%;
           flex: 0 0 50%;
           max-width: 50%;
       }

       .columns-block-wrapper .col-md-12,
       .columns-block-wrapper .col-12 {
           width: 100%;
           flex: 0 0 100%;
           max-width: 100%;
       }
   }

   @media (max-width: 768px) {
       .columns-block-wrapper:not(.mobile-responsive-enabled) .row>[class*="col-"] {
           width: 100% !important;
           flex: 0 0 100% !important;
           max-width: 100% !important;
           margin-bottom: 1.5rem;
       }

       .columns-block-wrapper.mobile-responsive-enabled .row>[class*="col-"] {
           width: auto;
           flex: 0 0 auto;
       }

       .columns-block-wrapper.mobile-responsive-enabled .col-md-6 {
           width: 100% !important;
           flex: 0 0 100% !important;
           max-width: 100% !important;
       }

       .gallery-thumb {
           height: 120px;
       }

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

   .column-item {
       height: 100%;
   }

   .column-content p {
       margin-bottom: 1rem;
       line-height: 1.8;
   }

   .column-content h1 {
       font-size: 2rem;
       margin-top: 1.5rem;
       margin-bottom: 1rem;
       font-weight: 700;
   }

   .column-content h2 {
       font-size: 1.75rem;
       margin-top: 1.5rem;
       margin-bottom: 1rem;
       font-weight: 600;
   }

   .column-content h3 {
       font-size: 1.5rem;
       margin-top: 1.5rem;
       margin-bottom: 1rem;
       font-weight: 600;
   }

   .column-content table {
       width: 100%;
       border-collapse: collapse;
       margin-bottom: 1rem;
   }

   .column-content th,
   .column-content td {
       border: 1px solid #dee2e6 !important;
       padding: 8px 12px;
       text-align: left;
       vertical-align: top;
   }

   .column-content th {
       background-color: #f8f9fa;
       font-weight: 600;
   }

   .column-content blockquote {
       border-left: 4px solid #000;
       padding-left: 1rem;
       margin: 1rem 0;
       font-style: italic;
       color: #666;
   }

   .featured-image img {
       max-height: 500px;
       object-fit: cover;
   }

   .blog-excerpt {
       font-size: 1.1rem;
       border-left-color: #000 !important;
   }

   .ratio-16by9 {
       position: relative;
       padding-bottom: 56.25%;
   }

   .ratio-16by9 iframe {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
   }

   .column-title {
       font-size: 1.25rem;
       font-weight: 700;
       margin-bottom: 1rem;
       color: #000;
   }

   .breadcrumb a {
       color: #000;
       text-decoration: none;
       transition: color 0.3s ease;
   }

   .breadcrumb a:hover {
       color: #dc2626;
   }

   .breadcrumb-item.active {
       color: #666;
   }

   .back-btn {
       transition: all 0.3s ease;
       padding: 6px 16px;
       font-size: 13px;
   }

   .back-btn:hover {
       background: #000;
       color: #fff;
       transform: translateX(-3px);
   }

   .polaroid-image-wrapper {
       position: relative;
       overflow: hidden;
   }

   .lock-badge {
       position: absolute;
       top: 8px;
       right: 8px;
       background: #dc2626;
       color: white;
       width: 28px;
       height: 28px;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 12px;
       z-index: 2;
   }

   .private-icon {
       font-size: 10px;
       color: #dc2626;
       margin-left: 5px;
   }

   .filter-link {
       font-size: 14px;
       color: #555555;
       text-decoration: none;
       transition: color 0.2s ease;
       font-weight: 400;
   }

   .filter-link:hover,
   .filter-link.active-filter {
       color: #000000;
       font-weight: 700;
   }

   .sidebar-divider {
       border-top: 1px solid #eef2f6;
       opacity: 1;
       width: 100%;
       margin: 1.5rem 0;
   }

   .year-link {
       font-size: 14px;
       color: #222222;
       font-weight: 600;
       text-decoration: none;
       display: block;
   }

   .year-link.active-year {
       color: #000000;
       font-weight: 700;
   }

   .year-count {
       font-size: 11px;
       font-weight: normal;
       color: #888;
   }

   .months-grid {
       display: flex;
       flex-wrap: wrap;
       row-gap: 6px;
       column-gap: 10px;
   }

   .month-link {
       font-size: 12px;
       color: #555555;
       text-decoration: none;
       transition: all 0.2s ease;
       padding: 2px 0;
       display: inline-block;
   }

   .month-link:hover {
       color: #000000;
       font-weight: 500;
   }

   .month-link.active-month {
       color: #000000;
       font-weight: 700;
       border-bottom: 1px solid #000;
   }

   .month-count {
       font-size: 10px;
       color: #999;
   }

   .archive-heading {
       font-size: 24px;
       font-weight: 700;
       color: #111111;
       letter-spacing: -0.5px;
   }

   .border-bottom {
       border-bottom: 2px solid #111111 !important;
   }

   .filter-summary .badge {
       font-size: 12px;
       padding: 5px 10px;
       font-weight: normal;
   }

   .polaroid-grid {
       padding-top: 10px;
   }

   .polaroid-card {
       background: #ffffff;
       border: 1px solid #e0e0e0;
       padding: 12px 12px 18px 12px;
       height: 100%;
       display: flex;
       flex-direction: column;
       transition: all 0.3s ease;
       border-radius: 4px;
   }

   .polaroid-card:hover {
       transform: translateY(-5px);
       box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
       border-color: #111111;
   }

   .polaroid-image-wrapper {
       width: 100%;
       aspect-ratio: 1 / 1;
       overflow: hidden;
       border: 1px solid #e2e2e2;
       background-color: #fafafa;
       border-radius: 2px;
   }

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

   .polaroid-placeholder {
       width: 100%;
       height: 100%;
       background-color: #f0f0f0;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .polaroid-caption {
       padding-top: 14px;
       flex-grow: 1;
       display: flex;
       flex-direction: column;
       align-items: flex-start;
   }

   .polaroid-title {
       font-size: 15px;
       font-weight: 700;
       line-height: 1.4;
       color: #111111;
       margin: 0 0 8px 0;
   }

   .polaroid-excerpt {
       font-size: 12px;
       line-height: 1.5;
       color: #666666;
       margin: 0 0 10px 0;
   }

   .polaroid-meta {
       display: flex;
       flex-wrap: wrap;
       margin-top: auto;
       padding-top: 8px;
       border-top: 1px solid #f0f0f0;
       width: 100%;
   }

   .post-date,
   .post-category {
       font-size: 10px;
       color: #888888;
   }

   .pagination {
       gap: 5px;
   }

   .pagination .page-item .page-link {
       color: #000;
       border: 1px solid #eef2f6;
       padding: 8px 14px;
       transition: all 0.3s ease;
   }

   .pagination .page-item.active .page-link {
       background: #000;
       border-color: #000;
       color: #fff;
   }

   .pagination .page-item .page-link:hover {
       background: #dc2626;
       border-color: #dc2626;
       color: #fff;
   }

   @media (max-width: 768px) {
       .sidebar-filter-section {
           border-right: none;
           border-bottom: 1px solid #eef2f6;
           padding-bottom: 1.5rem;
           margin-bottom: 1.5rem;
       }

       .months-grid {
           max-width: 100%;
       }

       .archive-heading {
           font-size: 20px;
       }

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


.brand-logo-wrapper {
    text-align: left;
}

.signature-logo-img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .brand-logo-wrapper {
        margin-bottom: 20px !important;
    }

    .signature-logo-img {
        max-width: 180px !important; /* Mobile width adjustment */
        width: auto;
        height: auto;
    }
}

@media (max-width: 480px) {
    .signature-logo-img {
        max-width: 150px !important;
    }
}
