.blog-container {
 justify-content: center;
 display: flex;
 flex-direction: column;
 margin: 10px 25px;
}

.blog-header {
  font-weight: 600;
  font-size: 1.4875rem;
  font-family: var(--font-inter);
}

.main-blog-header {
  justify-content: left;
  padding: 20px;
  width: 100%;
}

.blogs {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  padding: 20px 0;
}

.blogs .home_item1 {
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  min-width: 280px;
}











/* ========================================== */
/* Single Blog */

/* Main Content Section */
.gg-main-content-section {
    width: 100%;
    position: relative;
    padding: 0 0 3.5rem;
}

/* Post Container */
.gg-post-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    max-width: 100%;
    margin: 20px;
}

.gg-post-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 100%;
    padding: 0 0 19.175rem;
    box-sizing: border-box;
    gap: 6.887rem;
}

/* Share Section */
.gg-share-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0.093rem 0 0;
}

.gg-share-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.831rem;
}

.gg-share-label {
    position: relative;
    line-height: 1.069rem;
}

.gg-social-links {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.531rem;
}

.gg-social-icon {
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    border-radius: 24px;
}

/* Post Content */
.gg-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 3.818rem;
    min-width: 26.375rem;
}

/* Post Header */
.gg-post-title-container {
    align-self: stretch;
    position: relative;
    line-height: 1.713rem;
}

.gg-post-title {
    margin: 0;
    font-size: 1.488rem;
    color: #333;
    font-family: 'Inter', sans-serif;
}

/* Post Body */
.gg-post-body {
    position: relative;
    line-height: 1.725rem;
    font-size: 0.988rem;
}

/* Contact Section */
.gg-contact-section {
    width: 41.375rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 4.456rem;
    max-width: 100%;
}

/* Post Navigation */
.gg-post-navigation {
    align-self: stretch;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding: 0 1rem 0 0;
    box-sizing: border-box;
    max-width: 100%;
    font-size: 1.038rem;
    color: var(--color-teal);
}

.gg-nav-previous {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 0 0 1.5rem;
    position: relative;
    gap: 1.25rem;
}

.gg-nav-label {
    position: relative;
    line-height: 1.225rem;
}

.gg-nav-title {
    position: relative;
    font-size: 0.938rem;
    line-height: 1.456rem;
    color: #333;
}

.gg-nav-next {
    width: 15.638rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.35rem;
    font-size: 1.013rem;
}

/* Featured Image */
.post-featured-image {
    margin-bottom: 20px;
    text-align: center;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media screen and (max-width: 800px) {
    .gg-post-wrapper {
        gap: 3.438rem;
        flex-wrap: wrap;
        padding-bottom: 8.063rem;
    }
}

@media screen and (max-width: 675px) {
    .gg-post-content {
        gap: 1.938rem;
        min-width: 100%;
    }
    
    .gg-contact-item {
        flex-wrap: wrap;
    }
    
    .gg-nav-previous, .gg-nav-next  {
        flex-wrap: wrap;
        padding: 0;
    }
    
    .gg-contact-section {
        gap: 2.25rem;
    }
}

@media screen and (max-width: 450px) {
    .gg-post-title-container {
        font-size: 1.188rem;
        line-height: 1.375rem;
    }
    
    .gg-post-wrapper {
        gap: 1.75rem;
        padding-bottom: 5.25rem;
    }
    
    .gg-contact-section {
        gap: 1.125rem;
    }
}

/* Post Navigation Enhancements */
.gg-post-navigation {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 2rem;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.gg-nav-previous,
.gg-nav-next {
    max-width: 45%;
}

.gg-nav-label {
    display: block;
    color: var(--color-teal);
    margin-bottom: 0.5rem;
    font-weight: 900;
    width: -webkit-fill-available;
}

.gg-nav-title a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.gg-nav-title a:hover {
    color: var(--color-teal);
}

@media (max-width: 768px) {
    .gg-post-navigation {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .gg-nav-previous,
    .gg-nav-next {
        max-width: 100%;
    }
}

.gg-post-body {
    font-family: var(--font-inter);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Paragraphs */
.gg-post-body p {
    margin-bottom: 1.5em;
    font-weight: 400;
}

/* Headings */
.gg-post-body h2,
.gg-post-body h3,
.gg-post-body h4,
.gg-post-body h5,
.gg-post-body h6 {
    margin: 2em 0 1em;
    line-height: 1.3;
    font-weight: 700;
    color: #222;
}

.gg-post-body h2 {
    font-size: 1.8rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.gg-post-body h3 {
    font-size: 1.5rem;
}

.gg-post-body h4 {
    font-size: 1.3rem;
}

/* Links */
.gg-post-body a {
    color: var(--color-teal);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

.gg-post-body a:hover {
    color: #1a5c6c;
    text-decoration: underline;
}

/* Lists */
.gg-post-body ul,
.gg-post-body ol {
    margin: 1.5em 0;
    padding-left: 1.5em;
}

.gg-post-body li {
    margin-bottom: 0.5em;
}

/* Blockquotes */
.gg-post-body blockquote {
    border-left: 4px solid var(--color-teal);
    background-color: #f9f9f9;
    padding: 1.5em;
    margin: 2em 0;
    font-style: italic;
    color: #555;
}

/* Images and Videos in Post Body */
.gg-post-body img,
.gg-post-body iframe {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 1.5em auto;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Video Embeds */
.gg-post-body .wp-block-embed__wrapper,
.gg-post-body .wp-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin: 1.5em auto;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gg-post-body .wp-block-embed__wrapper iframe,
.gg-post-body .wp-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gg-post-body img,
    .gg-post-body iframe,
    .gg-post-body .wp-block-embed__wrapper,
    .gg-post-body .wp-video {
        margin: 1em auto;
        border-radius: 4px;
    }
}

/* Tables */
.gg-post-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
}

.gg-post-body th,
.gg-post-body td {
    padding: 0.75em;
    border: 1px solid #ddd;
    text-align: left;
}

.gg-post-body th {
    background-color: #f5f5f5;
    font-weight: 700;
}

/* Code blocks */
.gg-post-body pre {
    background-color: #f5f5f5;
    padding: 1.5em;
    border-radius: 6px;
    overflow-x: auto;
    margin: 2em 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
}

.gg-post-body code {
    font-family: 'Courier New', Courier, monospace;
    background-color: #f5f5f5;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-size: 0.9em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gg-post-body {
        font-size: 1rem;
        padding: 0;
    }
    
    .gg-post-body h2 {
        font-size: 1.5rem;
    }
    
    .gg-post-body h3 {
        font-size: 1.3rem;
    }
}

.blog-pagination {
    width: 100%;
    margin: 40px 0;
    text-align: center;
    font-size: var(--font-size-base);
}

.blog-pagination ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-pagination li {
    margin: 0 5px;
}

.blog-pagination a,
.blog-pagination span {
    display: block;
    padding: 5px 10px;
    text-decoration: none;
    color: var(--color-gray-300);
    background: #f5f5f5;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.blog-pagination a:hover {
    background: var(--color-teal);
    color: white;
}

.blog-pagination .current {
    background: var(--color-teal);
    color: white;
    font-weight: bold;
}

.blog-pagination .prev,
.blog-pagination .next {
    font-weight: bold;
}



/* Simple Coming Soon Styles */
.simple-coming-soon {
    font-family: var(--font-inter);
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
}

.coming-soon-content h2 {
    font-size: 2rem;
    color: var(--color-teal);
    margin-bottom: 1rem;
    font-weight: 700;
}

.coming-soon-content p {
    font-size: 1.1rem;
    color: var(--color-teal);
    line-height: 1.6;
    font-weight: 500;
}