/* ============================================================
   SGG Manufacturing Blog Plugin - Frontend Styles
   Matches brand: orange #E8620A, dark navy headers, clean grid
============================================================ */

:root {
    --sgg-primary: #E8620A;
    --sgg-primary-dark: #c75208;
    --sgg-dark: #1a1a2e;
    --sgg-dark-2: #2d2d44;
    --sgg-text: #333333;
    --sgg-text-light: #666666;
    --sgg-text-muted: #999999;
    --sgg-border: #e5e5e5;
    --sgg-bg: #f8f8f8;
    --sgg-white: #ffffff;
    --sgg-shadow: 0 2px 12px rgba(0,0,0,0.08);
    --sgg-shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
    --sgg-radius: 4px;
    --sgg-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --sgg-transition: all 0.25s ease;
}

/* ============================================================
   RESET & BASE
============================================================ */
.sgg-blog-wrapper *,
.sgg-single-wrapper * {
    box-sizing: border-box;
}

.sgg-blog-wrapper,
.sgg-single-wrapper {
    font-family: var(--sgg-font);
    color: var(--sgg-text);
    line-height: 1.6;
}

/* ============================================================
   BLOG LISTING HERO BANNER
============================================================ */
.sgg-blog-hero {
    position: relative;
    width: 100%;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--sgg-dark) url('') center/cover no-repeat;
    margin-bottom: 0;
}

.sgg-blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,20,40,0.75) 0%, rgba(20,20,40,0.55) 100%);
    z-index: 1;
}

.sgg-blog-hero-overlay {
    display: none;
}

.sgg-blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--sgg-white);
    padding: 60px 20px;
}

.sgg-blog-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
    color: var(--sgg-white);
    line-height: 1.15;
}

.sgg-blog-hero-content p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.88;
    color: var(--sgg-white);
}

/* ============================================================
   MAIN CONTAINER
============================================================ */
.sgg-blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

/* ============================================================
   LAYOUT: Main + Sidebar
============================================================ */
.sgg-blog-main-area,
.sgg-single-layout {
    display: grid;
    gap: 40px;
    align-items: start;
}

.sgg-blog-main-area.has-sidebar,
.sgg-single-layout.has-sidebar {
    grid-template-columns: 1fr 300px;
}

.sgg-blog-main-area.no-sidebar,
.sgg-single-layout.no-sidebar {
    grid-template-columns: 1fr;
}

/* ============================================================
   TOOLBAR (results count + sort)
============================================================ */
.sgg-blog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--sgg-border);
}

.sgg-blog-results-count {
    font-size: 0.9rem;
    color: var(--sgg-text-light);
}

.sgg-sort-select {
    appearance: none;
    -webkit-appearance: none;
    background: var(--sgg-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center;
    border: 1px solid var(--sgg-border);
    border-radius: var(--sgg-radius);
    padding: 8px 36px 8px 12px;
    font-size: 0.875rem;
    color: var(--sgg-text);
    cursor: pointer;
    transition: var(--sgg-transition);
}

.sgg-sort-select:focus {
    outline: none;
    border-color: var(--sgg-primary);
}

/* ============================================================
   POSTS GRID
============================================================ */
.sgg-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sgg-no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--sgg-text-light);
}

/* ============================================================
   POST CARD
============================================================ */
.sgg-post-card {
    background: var(--sgg-white);
    border-radius: var(--sgg-radius);
    overflow: hidden;
    box-shadow: var(--sgg-shadow);
    transition: var(--sgg-transition);
    display: flex;
    flex-direction: column;
}

.sgg-post-card:hover {
    box-shadow: var(--sgg-shadow-hover);
    transform: translateY(-3px);
}

.sgg-card-image-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--sgg-bg);
}

.sgg-card-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sgg-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.sgg-post-card:hover .sgg-card-image img {
    transform: scale(1.04);
}

.sgg-card-no-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sgg-dark) 0%, var(--sgg-dark-2) 100%);
}

.sgg-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sgg-card-cat {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--sgg-primary);
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 8px;
    transition: var(--sgg-transition);
}

.sgg-card-cat:hover {
    color: var(--sgg-primary-dark);
}

.sgg-card-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px;
    color: var(--sgg-dark);
}

.sgg-card-title a {
    text-decoration: none;
    color: inherit;
    transition: var(--sgg-transition);
}

.sgg-card-title a:hover {
    color: var(--sgg-primary);
}

.sgg-card-excerpt {
    font-size: 0.875rem;
    color: var(--sgg-text-light);
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
}

.sgg-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--sgg-text-muted);
    border-top: 1px solid var(--sgg-border);
    padding-top: 14px;
    margin-top: auto;
}

.sgg-card-sep {
    color: var(--sgg-border);
}

/* ============================================================
   PAGINATION
============================================================ */
.sgg-pagination {
    margin-top: 48px;
}

.sgg-pagination-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.sgg-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    border: 1px solid var(--sgg-border);
    border-radius: var(--sgg-radius);
    background: var(--sgg-white);
    color: var(--sgg-text);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--sgg-transition);
}

.sgg-page-btn:hover,
.sgg-page-btn.active {
    background: var(--sgg-primary);
    border-color: var(--sgg-primary);
    color: var(--sgg-white);
}

.sgg-page-dots {
    padding: 0 4px;
    color: var(--sgg-text-muted);
    font-size: 0.875rem;
}

/* ============================================================
   SIDEBAR
============================================================ */
.sgg-blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sgg-sidebar-widget {
    background: var(--sgg-white);
    border-radius: var(--sgg-radius);
    box-shadow: var(--sgg-shadow);
    padding: 24px;
}

.sgg-widget-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sgg-dark);
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--sgg-border);
}

/* Search widget */
.sgg-search-input-wrap {
    display: flex;
    gap: 0;
}

.sgg-search-input {
    flex: 1;
    border: 1px solid var(--sgg-border);
    border-right: none;
    border-radius: var(--sgg-radius) 0 0 var(--sgg-radius);
    padding: 10px 14px;
    font-size: 0.875rem;
    outline: none;
    transition: var(--sgg-transition);
}

.sgg-search-input:focus {
    border-color: var(--sgg-primary);
}

.sgg-search-btn {
    background: var(--sgg-dark);
    border: 1px solid var(--sgg-dark);
    border-radius: 0 var(--sgg-radius) var(--sgg-radius) 0;
    color: var(--sgg-white);
    padding: 10px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--sgg-transition);
}

.sgg-search-btn:hover {
    background: var(--sgg-primary);
    border-color: var(--sgg-primary);
}

/* Categories */
.sgg-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sgg-cat-item {
    border-bottom: 1px solid var(--sgg-border);
}

.sgg-cat-item:last-child {
    border-bottom: none;
}

.sgg-cat-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    color: var(--sgg-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--sgg-transition);
}

.sgg-cat-item a:hover,
.sgg-cat-item.active a {
    color: var(--sgg-primary);
}

.sgg-cat-item a::after {
    content: '›';
    font-size: 1.1rem;
    color: var(--sgg-text-muted);
}

.sgg-cat-item.active a::after {
    color: var(--sgg-primary);
}

.sgg-cat-count {
    font-size: 0.8rem;
    color: var(--sgg-text-muted);
    margin-right: auto;
    margin-left: 6px;
}

/* Recent / Popular Posts */
.sgg-recent-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sgg-recent-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.sgg-recent-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 55px;
    overflow: hidden;
    border-radius: var(--sgg-radius);
    display: block;
}

.sgg-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sgg-recent-thumb:hover img {
    transform: scale(1.06);
}

.sgg-recent-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sgg-recent-title {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--sgg-dark);
    text-decoration: none;
    line-height: 1.4;
    transition: var(--sgg-transition);
}

.sgg-recent-title:hover {
    color: var(--sgg-primary);
}

.sgg-recent-date {
    font-size: 0.75rem;
    color: var(--sgg-text-muted);
}

/* CTA Widget */
.sgg-widget-cta {
    background: var(--sgg-dark) !important;
    color: var(--sgg-white);
}

.sgg-widget-cta h3 {
    color: var(--sgg-white);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px;
}

.sgg-widget-cta p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin: 0 0 20px;
}

.sgg-cta-btn {
    display: inline-block;
    background: var(--sgg-primary);
    color: var(--sgg-white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: var(--sgg-radius);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--sgg-transition);
    text-align: center;
    width: 100%;
}

.sgg-cta-btn:hover {
    background: var(--sgg-primary-dark);
    color: var(--sgg-white);
    transform: translateY(-1px);
}

/* ============================================================
   SINGLE POST HERO
============================================================ */
.sgg-single-hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    background: var(--sgg-dark) center/cover no-repeat;
    overflow: hidden;
}

.sgg-single-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,25,0.92) 0%, rgba(10,10,25,0.6) 50%, rgba(10,10,25,0.25) 100%);
    z-index: 1;
}

.sgg-single-hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 60px 48px;
    max-width: 680px;
    color: var(--sgg-white);
}

/* Breadcrumb */
.sgg-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.sgg-breadcrumb a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: var(--sgg-transition);
}

.sgg-breadcrumb a:hover {
    color: var(--sgg-white);
}

.sgg-breadcrumb span:not(.sgg-breadcrumb-sep) {
    color: rgba(255,255,255,0.6);
}

.sgg-breadcrumb-sep {
    color: rgba(255,255,255,0.4);
}

/* Single post category label */
.sgg-single-cat-label {
    margin-bottom: 14px;
}

.sgg-single-cat-label a {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--sgg-primary);
    text-decoration: none;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--sgg-primary);
    transition: var(--sgg-transition);
}

.sgg-single-cat-label a:hover {
    color: #ff8040;
    border-color: #ff8040;
}

/* Single post title */
.sgg-single-title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--sgg-white);
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

/* Excerpt */
.sgg-single-excerpt {
    font-size: 1rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    margin: 0 0 24px;
}

/* Single post meta */
.sgg-single-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
}

.sgg-meta-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sgg-author-avatar {
    border-radius: 50%;
    width: 36px !important;
    height: 36px !important;
    border: 2px solid rgba(255,255,255,0.3);
}

.sgg-meta-sep {
    color: rgba(255,255,255,0.3);
}

.sgg-meta-read-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ============================================================
   SINGLE POST ARTICLE BODY
============================================================ */
.sgg-single-article {
    min-width: 0;
}

.sgg-single-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--sgg-text);
}

.sgg-single-body h2 {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--sgg-dark);
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--sgg-primary);
    display: inline-block;
}

.sgg-single-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sgg-dark);
    margin: 32px 0 12px;
}

.sgg-single-body p {
    margin: 0 0 20px;
}

.sgg-single-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--sgg-radius);
    margin: 24px 0;
}

.sgg-single-body ul,
.sgg-single-body ol {
    margin: 0 0 20px;
    padding-left: 24px;
}

.sgg-single-body li {
    margin-bottom: 8px;
}

.sgg-single-body a {
    color: var(--sgg-primary);
    text-decoration: underline;
}

.sgg-single-body blockquote {
    border-left: 4px solid var(--sgg-primary);
    margin: 28px 0;
    padding: 16px 24px;
    background: var(--sgg-bg);
    border-radius: 0 var(--sgg-radius) var(--sgg-radius) 0;
    font-style: italic;
    color: var(--sgg-text-light);
}

/* Tags */
.sgg-single-tags {
    margin: 32px 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.sgg-single-tags strong {
    color: var(--sgg-dark);
    font-size: 0.875rem;
}

.sgg-tag {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid var(--sgg-border);
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--sgg-text-light);
    text-decoration: none;
    transition: var(--sgg-transition);
}

.sgg-tag:hover {
    border-color: var(--sgg-primary);
    color: var(--sgg-primary);
}

/* Author box */
.sgg-author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--sgg-bg);
    border-radius: var(--sgg-radius);
    padding: 24px;
    margin: 40px 0;
    border: 1px solid var(--sgg-border);
}

.sgg-author-box-avatar {
    border-radius: 50%;
    width: 70px !important;
    height: 70px !important;
    flex-shrink: 0;
}

.sgg-author-box-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sgg-dark);
    margin: 0 0 8px;
}

.sgg-author-box-info p {
    font-size: 0.875rem;
    color: var(--sgg-text-light);
    margin: 0;
}

/* Related Posts */
.sgg-related-posts {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 2px solid var(--sgg-border);
}

.sgg-related-posts h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--sgg-dark);
    margin: 0 0 28px;
}

.sgg-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ============================================================
   LOADING STATE
============================================================ */
.sgg-posts-grid.is-loading {
    opacity: 0.5;
    pointer-events: none;
    position: relative;
}

.sgg-loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    grid-column: 1 / -1;
}

.sgg-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--sgg-border);
    border-top-color: var(--sgg-primary);
    border-radius: 50%;
    animation: sgg-spin 0.8s linear infinite;
}

@keyframes sgg-spin {
    to { transform: rotate(360deg); }
}

/* ============================================================
   LIVE SEARCH DROPDOWN
============================================================ */
.sgg-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--sgg-white);
    border: 1px solid var(--sgg-border);
    border-top: none;
    border-radius: 0 0 var(--sgg-radius) var(--sgg-radius);
    box-shadow: var(--sgg-shadow);
    z-index: 999;
    max-height: 320px;
    overflow-y: auto;
}

.sgg-search-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--sgg-text);
    border-bottom: 1px solid var(--sgg-border);
    transition: var(--sgg-transition);
}

.sgg-search-dropdown-item:last-child {
    border-bottom: none;
}

.sgg-search-dropdown-item:hover {
    background: var(--sgg-bg);
    color: var(--sgg-primary);
}

.sgg-search-dropdown-item img {
    width: 50px;
    height: 40px;
    object-fit: cover;
    border-radius: var(--sgg-radius);
    flex-shrink: 0;
}

.sgg-search-dropdown-info strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
}

.sgg-search-dropdown-info span {
    font-size: 0.75rem;
    color: var(--sgg-text-muted);
}

.sgg-search-dropdown-empty {
    padding: 16px;
    text-align: center;
    color: var(--sgg-text-light);
    font-size: 0.875rem;
}

.sgg-search-input-wrap {
    position: relative;
}

/* ============================================================
   STANDALONE SEARCH BAR WIDGET
============================================================ */
.sgg-search-bar-widget .sgg-search-form {
    display: flex;
}

.sgg-search-bar-widget .sgg-search-input {
    border-right: none;
    border-radius: var(--sgg-radius) 0 0 var(--sgg-radius);
}

.sgg-search-bar-widget .sgg-search-btn {
    border-radius: 0 var(--sgg-radius) var(--sgg-radius) 0;
}

/* ============================================================
   ADMIN GUIDE STYLES (inline settings page)
============================================================ */
.sgg-settings-wrap .sgg-logo-text {
    color: var(--sgg-primary);
}

.sgg-shortcode-guide .sgg-guide-section {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 24px;
    margin-bottom: 24px;
}

.sgg-shortcode-guide code {
    display: inline-block;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.9em;
    color: #c0392b;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    .sgg-blog-main-area.has-sidebar,
    .sgg-single-layout.has-sidebar {
        grid-template-columns: 1fr 260px;
    }

    .sgg-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sgg-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sgg-blog-hero-content h1 {
        font-size: 2rem;
    }

    .sgg-blog-main-area.has-sidebar,
    .sgg-single-layout.has-sidebar {
        grid-template-columns: 1fr;
    }

    .sgg-blog-sidebar {
        order: -1;
    }

    .sgg-posts-grid {
        grid-template-columns: 1fr;
    }

    .sgg-related-grid {
        grid-template-columns: 1fr;
    }

    .sgg-single-hero {
        min-height: 320px;
    }

    .sgg-single-hero-content {
        padding: 24px 24px 32px;
    }

    .sgg-single-title {
        font-size: 1.75rem;
    }

    .sgg-blog-container,
    .sgg-single-container {
        padding: 24px 16px;
    }

    .sgg-blog-toolbar {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .sgg-single-meta {
        gap: 8px;
        font-size: 0.78rem;
    }

    .sgg-author-box {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .sgg-blog-hero-content h1 {
        font-size: 1.6rem;
    }

    .sgg-blog-hero {
        min-height: 200px;
    }

    .sgg-blog-hero-content {
        padding: 32px 16px;
    }

    .sgg-pagination-nav {
        gap: 4px;
    }

    .sgg-page-btn {
        min-width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
}

/* ============================================================
   ANIMATIONS
============================================================ */
.sgg-post-card {
    animation: sgg-fade-in 0.4s ease both;
}

@keyframes sgg-fade-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sgg-posts-grid .sgg-post-card:nth-child(1) { animation-delay: 0.05s; }
.sgg-posts-grid .sgg-post-card:nth-child(2) { animation-delay: 0.10s; }
.sgg-posts-grid .sgg-post-card:nth-child(3) { animation-delay: 0.15s; }
.sgg-posts-grid .sgg-post-card:nth-child(4) { animation-delay: 0.20s; }
.sgg-posts-grid .sgg-post-card:nth-child(5) { animation-delay: 0.25s; }
.sgg-posts-grid .sgg-post-card:nth-child(6) { animation-delay: 0.30s; }
.sgg-posts-grid .sgg-post-card:nth-child(7) { animation-delay: 0.35s; }
.sgg-posts-grid .sgg-post-card:nth-child(8) { animation-delay: 0.40s; }
.sgg-posts-grid .sgg-post-card:nth-child(9) { animation-delay: 0.45s; }
