

/* Blog Category Section */
.gseo-blog-category-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
    position: relative;
    overflow: hidden;
}

.gseo-blog-category-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230c4a6e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.7;
    z-index: 0;
}



.gseo-blog-category-header {
    text-align: center;
    margin-bottom: 80px;
}

.gseo-blog-category-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--gseo-dark);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: gseo-fadeInUp 1s ease forwards;
}

.gseo-blog-category-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100px;
    height: 4px;
    background: var(--gseo-gradient);
    border-radius: 2px;
    animation: gseo-scaleIn 0.8s ease 0.5s forwards;
}

.gseo-blog-category-subtitle {
    font-size: 20px;
    color: var(--gseo-gray);
    max-width: 600px;
    margin: 25px auto 0;
    animation: gseo-fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

/* Category Grid Styles - Fixed to 3 columns */
.gseo-blog-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 80px;
}

.gseo-blog-category-card {
    background: white;
    border-radius: 25px;
    box-shadow: var(--gseo-shadow-lg);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: gseo-cardEntrance 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.gseo-blog-category-card:nth-child(1) {
    animation-delay: 0.2s;
}

.gseo-blog-category-card:nth-child(2) {
    animation-delay: 0.4s;
}

.gseo-blog-category-card:nth-child(3) {
    animation-delay: 0.6s;
}

.gseo-blog-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gseo-gradient);
    z-index: 1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.gseo-blog-category-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.gseo-blog-category-card:hover::before {
    transform: scaleX(1);
}

.gseo-blog-category-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.gseo-blog-category-card-inner {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.gseo-blog-category-image-container {
    width: 200px;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 35px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gseo-blog-category-card:hover .gseo-blog-category-image-container {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.gseo-blog-category-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.gseo-blog-category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gseo-blog-category-card:hover .gseo-blog-category-image {
    transform: scale(1.15) rotate(2deg);
}

.gseo-blog-category-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 74, 110, 0.1) 0%, rgba(6, 78, 59, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.gseo-blog-category-card:hover .gseo-blog-category-image-overlay {
    opacity: 1;
}

.gseo-blog-category-content {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.gseo-blog-category-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--gseo-dark);
    margin: 0 0 15px 0;
    position: relative;
    transition: all 0.3s ease;
    z-index: 2;
}

.gseo-blog-category-card:hover .gseo-blog-category-name {
    color: var(--gseo-primary);
    transform: translateY(-3px);
}

.gseo-blog-category-name::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 50px;
    height: 3px;
    background: var(--gseo-gradient);
    border-radius: 2px;
    transition: transform 0.4s ease;
}

.gseo-blog-category-card:hover .gseo-blog-category-name::after {
    transform: translateX(-50%) scaleX(1);
}

.gseo-blog-category-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gseo-accent);
    font-size: 20px;
    margin-top: 15px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(10px);
}

.gseo-blog-category-card:hover .gseo-blog-category-icon {
    opacity: 1;
    transform: translateY(0);
    background: rgba(245, 158, 11, 0.2);
}

/* View All Button */
.gseo-view-all-container {
    text-align: center;
    margin-top: 40px;
}

.gseo-view-all-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    background: var(--gseo-gradient);
    color: white;
    box-shadow: 0 10px 25px rgba(12, 74, 110, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: gseo-buttonEntrance 1s ease 0.8s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.gseo-view-all-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.gseo-view-all-button:hover::before {
    left: 100%;
}

.gseo-view-all-button:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(12, 74, 110, 0.5);
}

.gseo-button-text {
    position: relative;
    z-index: 2;
}

.gseo-button-icon {
    transition: transform 0.3s ease;
}

.gseo-view-all-button:hover .gseo-button-icon {
    transform: translateX(5px);
}

/* Animated Background Shapes */
.gseo-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gseo-gradient);
    opacity: 0.05;
    z-index: 0;
}

.gseo-bg-shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
    animation: gseo-float1 20s infinite ease-in-out;
}

.gseo-bg-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: 10%;
    animation: gseo-float2 18s infinite ease-in-out reverse;
}

.gseo-bg-shape-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 5%;
    animation: gseo-float3 22s infinite ease-in-out;
}

/* Category Page Section */
.gseo-category-page-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
    position: relative;
    overflow: hidden;
}

.gseo-category-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230c4a6e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.7;
    z-index: 0;
}

/* Category Header Styles */
.gseo-category-header {
    margin-bottom: 40px;
}

.gseo-category-header-content {
    background: white;
    border-radius: 20px;
    box-shadow: var(--gseo-shadow-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
}

.gseo-category-header-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: var(--gseo-gradient);
    z-index: 1;
}

.gseo-category-image-container {
    width: 200px;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.gseo-category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gseo-category-header-content:hover .gseo-category-image {
    transform: scale(1.05);
}

.gseo-category-info {
    padding: 30px;
    flex-grow: 1;
}

.gseo-category-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--gseo-dark);
    margin: 0 0 15px 0;
    position: relative;
}

.gseo-category-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gseo-gradient);
    border-radius: 2px;
}

.gseo-category-description {
    font-size: 18px;
    color: var(--gseo-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.gseo-category-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gseo-category-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(12, 74, 110, 0.1);
    color: var(--gseo-primary);
    font-weight: 600;
    border-radius: 50px;
    font-size: 14px;
}

/* Blog Posts Grid Styles */
.gseo-blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gseo-blog-post-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--gseo-shadow-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gseo-blog-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gseo-gradient);
    z-index: 1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.gseo-blog-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gseo-blog-post-card:hover::before {
    transform: scaleX(1);
}

.gseo-blog-post-image-container {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.gseo-blog-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gseo-blog-post-card:hover .gseo-blog-post-image {
    transform: scale(1.05);
}

.gseo-blog-post-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 74, 110, 0.1) 0%, rgba(6, 78, 59, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gseo-blog-post-card:hover .gseo-blog-post-image-overlay {
    opacity: 1;
}

.gseo-blog-post-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gseo-blog-post-excerpt {
    font-size: 16px;
    color: var(--gseo-gray);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
    max-height: 50px;
    overflow: hidden;
}

.gseo-blog-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--gseo-gray);
}

.gseo-blog-post-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.gseo-blog-post-date::before {
    content: '\f073';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--gseo-primary);
}

.gseo-blog-post-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background: var(--gseo-gradient);
    color: white;
    border: none;
    width: 100%;
    box-shadow: 0 6px 15px rgba(12, 74, 110, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.gseo-blog-post-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.6s ease;
}

.gseo-blog-post-button:hover::before {
    left: 100%;
}

.gseo-blog-post-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(12, 74, 110, 0.4);
}

.gseo-no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--gseo-shadow-lg);
}

.gseo-no-posts h3 {
    font-size: 24px;
    color: var(--gseo-gray);
    margin: 0;
}

/* Pagination Styles */
.gseo-pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.gseo-pagination {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    box-shadow: var(--gseo-shadow-lg);
    padding: 8px;
    overflow: hidden;
}

.gseo-pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: var(--gseo-primary);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.gseo-pagination-link:hover:not(.gseo-disabled):not(.gseo-active) {
    background: rgba(12, 74, 110, 0.1);
    color: var(--gseo-primary-dark);
}

.gseo-pagination-link.gseo-active {
    background: var(--gseo-gradient);
    color: white;
    box-shadow: 0 4px 10px rgba(12, 74, 110, 0.3);
}

.gseo-pagination-link.gseo-disabled {
    color: var(--gseo-gray);
    cursor: not-allowed;
    opacity: 0.5;
}

.gseo-pagination-numbers {
    display: flex;
    gap: 5px;
    margin: 0 10px;
}

.gseo-pagination-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--gseo-gray);
}

/* Article Section */
.gseo-article-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
    position: relative;
    overflow: hidden;
}

/*.gseo-article-section::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230c4a6e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");*/
/*    opacity: 0.7;*/
/*    z-index: 0;*/
/*}*/

/* Breadcrumb */
.gseo-breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.gseo-breadcrumb-link {
    color: var(--gseo-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.gseo-breadcrumb-link:hover {
    color: var(--gseo-primary-dark);
}

.gseo-breadcrumb-separator {
    margin: 0 10px;
    color: var(--gseo-gray);
}

.gseo-breadcrumb-current {
    color: var(--gseo-dark);
    font-weight: 500;
}

/* Article Header */
.gseo-article-header {
    margin-bottom: 40px;
}

.gseo-article-category-tag {
    margin-bottom: 15px;
}

.gseo-category-tag-link {
    display: inline-block;
    padding: 6px 12px;
    background: var(--gseo-primary);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gseo-category-tag-link:hover {
    background: var(--gseo-primary-dark);
    transform: translateY(-2px);
}

.gseo-article-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--gseo-dark);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gseo-article-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--gseo-gradient);
    border-radius: 2px;
    animation: gseo-scaleIn 0.8s ease 0.5s forwards;
}

.gseo-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.gseo-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gseo-gray);
    font-size: 14px;
}

.gseo-meta-item i {
    color: var(--gseo-primary);
}

/* Social Sharing */
.gseo-social-sharing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.gseo-share-label {
    font-weight: 600;
    color: var(--gseo-gray);
    font-size: 14px;
}

.gseo-share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gseo-light);
    color: var(--gseo-primary);
    border: 1px solid var(--gseo-border);
    text-decoration: none;
    transition: all 0.3s ease;
}

.gseo-share-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gseo-share-facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.gseo-share-twitter:hover {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.gseo-share-linkedin:hover {
    background: #0077b5;
    color: white;
    border-color: #0077b5;
}

.gseo-share-whatsapp:hover {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.gseo-share-print:hover {
    background: var(--gseo-gray);
    color: white;
    border-color: var(--gseo-gray);
}

/* Article Image */
.gseo-article-image-container {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--gseo-shadow-lg);
    position: relative;
}

.gseo-article-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gseo-article-image-container:hover .gseo-article-image {
    transform: scale(1.02);
}

.gseo-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 20px;
    font-size: 14px;
    text-align: center;
}

/* Table of Contents */
.gseo-toc-container {
    background: white;
    border-radius: 15px;
    box-shadow: var(--gseo-shadow);
    padding: 25px;
    margin-bottom: 40px;
}

.gseo-toc-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gseo-dark);
    margin-bottom: 20px;
    position: relative;
}

.gseo-toc-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gseo-gradient);
    border-radius: 2px;
}

.gseo-toc-list {
    list-style: none;
    padding: 0;
}

.gseo-toc-list li {
    margin-bottom: 12px;
}

.gseo-toc-link {
    color: var(--gseo-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.gseo-toc-link::before {
    content: '#';
    margin-right: 8px;
    color: var(--gseo-gray);
}

.gseo-toc-link:hover {
    color: var(--gseo-primary-dark);
}

/* Article Content */
.gseo-article-content-container {
    background: white;
    border-radius: 20px;
    box-shadow: var(--gseo-shadow-lg);
    overflow: hidden;
    margin-bottom: 40px;
}

.gseo-article-content {
    padding: 40px;
}

.gseo-article-body {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gseo-dark);
    word-break: break-word;
}

.gseo-article-body p {
    margin-bottom: 20px;
}

.gseo-article-body p:last-child {
    margin-bottom: 0;
}

.gseo-article-body h2,
.gseo-article-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--gseo-dark);
}

.gseo-article-body h2 {
    font-size: 28px;
}

.gseo-article-body h3 {
    font-size: 22px;
}

/* Article Tags */
.gseo-article-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gseo-border);
}

.gseo-tags-label {
    font-weight: 600;
    color: var(--gseo-gray);
    margin-bottom: 10px;
    font-size: 14px;
}

.gseo-tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--gseo-light);
    color: var(--gseo-primary);
    border: 1px solid var(--gseo-border);
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.gseo-tag:hover {
    background: var(--gseo-primary);
    color: white;
    border-color: var(--gseo-primary);
}

/* Author Box */
.gseo-author-box {
    display: flex;
    align-items: center;
    background: var(--gseo-light);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
}

.gseo-author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
    border: 3px solid white;
    box-shadow: var(--gseo-shadow);
}

.gseo-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gseo-author-info {
    flex-grow: 1;
}

.gseo-author-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--gseo-dark);
    margin-bottom: 8px;
}

.gseo-author-bio {
    font-size: 14px;
    color: var(--gseo-gray);
    line-height: 1.5;
    margin-bottom: 12px;
}

.gseo-author-social {
    display: flex;
    gap: 10px;
}

.gseo-author-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gseo-primary);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gseo-author-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Related Articles */
.gseo-related-articles {
    margin-bottom: 40px;
}

.gseo-related-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--gseo-dark);
    margin-bottom: 25px;
    position: relative;
}

.gseo-related-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gseo-gradient);
    border-radius: 2px;
}

.gseo-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gseo-related-card {
    background: white;
    border-radius: 15px;
    box-shadow: var(--gseo-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.gseo-related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gseo-shadow-lg);
}

.gseo-related-image {
    height: 140px;
    overflow: hidden;
}

.gseo-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gseo-related-card:hover .gseo-related-image img {
    transform: scale(1.05);
}

.gseo-related-content {
    padding: 15px;
}

.gseo-related-title-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--gseo-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.gseo-related-title-text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gseo-related-title-text a:hover {
    color: var(--gseo-primary);
}

.gseo-related-meta {
    font-size: 12px;
    color: var(--gseo-gray);
}

/* Comment Section */
.gseo-comment-section {
    background: white;
    border-radius: 20px;
    box-shadow: var(--gseo-shadow-lg);
    overflow: hidden;
    padding: 40px;
}

.gseo-comment-section-title,
.gseo-comments-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gseo-dark);
    margin-bottom: 25px;
    position: relative;
}

.gseo-comment-section-title::after,
.gseo-comments-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gseo-gradient);
    border-radius: 2px;
}

/* Comment Form */
.gseo-comment-form {
    margin-bottom: 40px;
}

.gseo-form-group {
    margin-bottom: 20px;
}

.gseo-comment-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gseo-border);
    border-radius: 15px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: var(--gseo-dark);
    background: var(--gseo-light);
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 120px;
}

.gseo-comment-textarea:focus {
    outline: none;
    border-color: var(--gseo-primary);
    box-shadow: 0 0 0 3px rgba(12, 74, 110, 0.1);
}

.gseo-form-actions {
    display: flex;
    justify-content: flex-end;
}

.gseo-comment-submit {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background: var(--gseo-gradient);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(12, 74, 110, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.gseo-comment-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.6s ease;
}

.gseo-comment-submit:hover::before {
    left: 100%;
}

.gseo-comment-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(12, 74, 110, 0.4);
}

/* Comments List */
.gseo-comments-list {
    margin-top: 40px;
}

.gseo-comment-card {
    background: var(--gseo-light);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.gseo-comment-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.gseo-comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.gseo-comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
    border: 2px solid white;
    box-shadow: var(--gseo-shadow);
}

.gseo-comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gseo-comment-author {
    font-size: 16px;
    font-weight: 700;
    color: var(--gseo-dark);
    margin-bottom: 2px;
}

.gseo-comment-date {
    font-size: 12px;
    color: var(--gseo-gray);
}

.gseo-comment-body {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gseo-gray);
}

.gseo-no-comments {
    text-align: center;
    padding: 30px;
    font-size: 16px;
    color: var(--gseo-gray);
    background: var(--gseo-light);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Back to Top Button */
.gseo-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gseo-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--gseo-shadow-lg);
}

.gseo-back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.gseo-back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Error Message */
.gseo-error-message {
    text-align: center;
    padding: 60px 20px;
    font-size: 24px;
    color: #e53e3e;
    background: white;
    border-radius: 20px;
    box-shadow: var(--gseo-shadow-lg);
    max-width: 600px;
    margin: 60px auto;
}

/* Pure CSS Animations */
@keyframes gseo-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gseo-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes gseo-scaleIn {
    from {
        transform: translateX(-50%) scaleX(0);
    }
    to {
        transform: translateX(-50%) scaleX(1);
    }
}

@keyframes gseo-cardEntrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gseo-buttonEntrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gseo-float1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes gseo-float2 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(-5deg);
    }
}

@keyframes gseo-float3 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

/* Responsive Styles */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .gseo-blog-category-grid {
        gap: 60px;
    }
    
    .gseo-blog-category-card-inner {
        padding: 45px 35px;
    }
    
    .gseo-blog-category-image-container {
        width: 220px;
        height: 240px;
        margin-bottom: 40px;
    }
    
    .gseo-blog-category-name {
        font-size: 28px;
    }
    
    .gseo-view-all-button {
        padding: 20px 50px;
        font-size: 20px;
    }
    
    .gseo-category-header-content {
        padding: 0;
    }
    
    .gseo-category-image-container {
        width: 250px;
        height: 250px;
    }
    
    .gseo-category-info {
        padding: 40px;
    }
    
    .gseo-category-title {
        font-size: 42px;
    }
    
    .gseo-category-description {
        font-size: 20px;
    }
    
    .gseo-blog-posts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .gseo-blog-post-content {
        padding: 30px;
    }
    
    .gseo-blog-post-excerpt {
        font-size: 18px;
    }
    
    .gseo-blog-post-button {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .gseo-article-section {
        padding: 100px 0;
    }
    
    .gseo-article-title {
        font-size: 48px;
    }
    
    .gseo-article-content {
        padding: 50px;
    }
    
    .gseo-article-body {
        font-size: 20px;
    }
    
    .gseo-comment-section {
        padding: 50px;
    }
    
    .gseo-comment-section-title,
    .gseo-comments-title {
        font-size: 28px;
    }
    
    .gseo-related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .gseo-blog-category-grid {
        gap: 50px;
    }
    
    .gseo-blog-category-card-inner {
        padding: 40px 30px;
    }
    
    .gseo-blog-category-image-container {
        width: 200px;
        height: 220px;
        margin-bottom: 35px;
    }
    
    .gseo-blog-category-name {
        font-size: 26px;
    }
    
    .gseo-view-all-button {
        padding: 18px 45px;
        font-size: 18px;
    }
    
    .gseo-category-header-content {
        padding: 0;
    }
    
    .gseo-category-image-container {
        width: 220px;
        height: 220px;
    }
    
    .gseo-category-info {
        padding: 35px;
    }
    
    .gseo-category-title {
        font-size: 38px;
    }
    
    .gseo-category-description {
        font-size: 18px;
    }
    
    .gseo-blog-posts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .gseo-blog-post-content {
        padding: 25px;
    }
    
    .gseo-blog-post-excerpt {
        font-size: 16px;
    }
    
    .gseo-blog-post-button {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .gseo-article-section {
        padding: 90px 0;
    }
    
    .gseo-article-title {
        font-size: 44px;
    }
    
    .gseo-article-content {
        padding: 45px;
    }
    
    .gseo-article-body {
        font-size: 18px;
    }
    
    .gseo-comment-section {
        padding: 45px;
    }
    
    .gseo-comment-section-title,
    .gseo-comments-title {
        font-size: 26px;
    }
    
    .gseo-related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .gseo-blog-category-section {
        padding: 100px 0;
    }
    
    .gseo-blog-category-title {
        font-size: 42px;
    }
    
    .gseo-blog-category-subtitle {
        font-size: 18px;
    }
    
    .gseo-blog-category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .gseo-blog-category-card-inner {
        padding: 35px 25px;
    }
    
    .gseo-blog-category-image-container {
        width: 180px;
        height: 200px;
        margin-bottom: 30px;
    }
    
    .gseo-blog-category-name {
        font-size: 24px;
    }
    
    .gseo-view-all-button {
        padding: 16px 40px;
        font-size: 17px;
    }
    
    .gseo-category-page-section {
        padding: 50px 0;
    }
    
    .gseo-category-header {
        margin-bottom: 30px;
    }
    
    .gseo-category-header-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .gseo-category-image-container {
        width: 180px;
        height: 180px;
        margin: 0 auto 20px;
        border-radius: 50%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .gseo-category-info {
        padding: 0;
    }
    
    .gseo-category-title {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .gseo-category-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .gseo-category-description {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .gseo-category-meta {
        justify-content: center;
    }
    
    .gseo-blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .gseo-blog-post-content {
        padding: 20px;
    }
    
    .gseo-blog-post-excerpt {
        font-size: 15px;
    }
    
    .gseo-blog-post-button {
        padding: 11px 22px;
        font-size: 14px;
    }
    
    .gseo-article-section {
        padding: 80px 0;
    }
    
    .gseo-article-title {
        font-size: 38px;
    }
    
    .gseo-article-content {
        padding: 35px;
    }
    
    .gseo-article-body {
        font-size: 17px;
    }
    
    .gseo-comment-section {
        padding: 35px;
    }
    
    .gseo-comment-section-title,
    .gseo-comments-title {
        font-size: 24px;
    }
    
    .gseo-comment-textarea {
        min-height: 100px;
    }
    
    .gseo-author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .gseo-author-image {
        margin: 0 auto 15px;
    }
    
    .gseo-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .gseo-blog-category-section {
        padding: 90px 0;
    }
    
    .gseo-blog-category-title {
        font-size: 38px;
    }
    
    .gseo-blog-category-subtitle {
        font-size: 17px;
    }
    
    .gseo-blog-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .gseo-blog-category-card-inner {
        padding: 30px 20px;
    }
    
    .gseo-blog-category-image-container {
        width: 160px;
        height: 180px;
        margin-bottom: 25px;
    }
    
    .gseo-blog-category-name {
        font-size: 22px;
    }
    
    .gseo-view-all-button {
        padding: 16px 35px;
        font-size: 16px;
    }
    
    .gseo-category-page-section {
        padding: 40px 0;
    }
    
    .gseo-category-header {
        margin-bottom: 25px;
        position: sticky;
        top: 0;
        z-index: 10;
        background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
        padding: 15px 0;
    }
    
    .gseo-category-header-content {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .gseo-category-image-container {
        width: 120px;
        height: 120px;
        margin: 0 auto 15px;
        border-radius: 50%;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        border: 4px solid white;
    }
    
    .gseo-category-info {
        padding: 0;
    }
    
    .gseo-category-title {
        font-size: 28px;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .gseo-category-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
    }
    
    .gseo-category-description {
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .gseo-category-meta {
        justify-content: center;
    }
    
    .gseo-category-count {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .gseo-blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gseo-blog-post-content {
        padding: 20px;
    }
    
    .gseo-blog-post-excerpt {
        font-size: 15px;
    }
    
    .gseo-blog-post-button {
        padding: 11px 22px;
        font-size: 14px;
    }
    
    .gseo-pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .gseo-pagination-numbers {
        order: 1;
        margin: 10px;
    }
    
    .gseo-pagination-prev,
    .gseo-pagination-next {
        order: 2;
    }
    
    .gseo-article-section {
        padding: 70px 0;
    }
    
    .gseo-article-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .gseo-article-content {
        padding: 25px;
    }
    
    .gseo-article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .gseo-article-body {
        font-size: 16px;
    }
    
    .gseo-comment-section {
        padding: 25px;
    }
    
    .gseo-comment-section-title,
    .gseo-comments-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .gseo-comment-textarea {
        min-height: 90px;
        font-size: 15px;
    }
    
    .gseo-comment-submit {
        width: 100%;
    }
    
    .gseo-author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .gseo-author-image {
        margin: 0 auto 15px;
    }
    
    .gseo-related-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile (575px and below) */
@media (max-width: 575px) {
    .gseo-blog-category-section {
        padding: 80px 0;
    }
    
    .gseo-blog-category-title {
        font-size: 32px;
    }
    
    .gseo-blog-category-subtitle {
        font-size: 16px;
    }
    
    .gseo-blog-category-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gseo-blog-category-card-inner {
        padding: 35px 25px;
    }
    
    .gseo-blog-category-image-container {
        width: 180px;
        height: 200px;
        margin-bottom: 30px;
    }
    
    .gseo-blog-category-name {
        font-size: 24px;
    }
    
    .gseo-view-all-button {
        padding: 16px 35px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }
    
    .gseo-category-page-section {
        padding: 30px 0;
    }
    
    .gseo-category-header {
        margin-bottom: 20px;
        position: sticky;
        top: 0;
        z-index: 10;
        background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
        padding: 15px 0;
    }
    
    .gseo-category-header-content {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .gseo-category-image-container {
        width: 100px;
        height: 100px;
        margin: 0 auto 12px;
        border-radius: 50%;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        border: 4px solid white;
    }
    
    .gseo-category-info {
        padding: 0;
    }
    
    .gseo-category-title {
        font-size: 24px;
        margin-bottom: 6px;
        line-height: 1.2;
    }
    
    .gseo-category-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
    }
    
    .gseo-category-description {
        font-size: 13px;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .gseo-category-meta {
        justify-content: center;
    }
    
    .gseo-category-count {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .gseo-blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gseo-blog-post-content {
        padding: 18px 15px;
    }
    
    .gseo-blog-post-excerpt {
        font-size: 14px;
    }
    
    .gseo-blog-post-button {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .gseo-pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .gseo-pagination-numbers {
        order: 1;
        margin: 8px;
    }
    
    .gseo-pagination-prev,
    .gseo-pagination-next {
        order: 2;
    }
    
    .gseo-pagination-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .gseo-article-section {
        padding: 60px 0;
    }
    
    .gseo-article-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .gseo-article-content {
        padding: 20px;
    }
    
    .gseo-article-meta {
        flex-direction: column;
        gap: 8px;
        font-size: 13px;
    }
    
    .gseo-article-body {
        font-size: 15px;
    }
    
    .gseo-comment-section {
        padding: 20px;
    }
    
    .gseo-comment-section-title,
    .gseo-comments-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .gseo-comment-textarea {
        min-height: 80px;
        font-size: 14px;
        padding: 12px 15px;
    }
    
    .gseo-comment-submit {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .gseo-comment-card {
        padding: 15px;
    }
    
    .gseo-comment-header {
        flex-direction: column;
        text-align: center;
    }
    
    .gseo-comment-avatar {
        margin: 0 auto 10px;
    }
    
    .gseo-comment-author {
        font-size: 16px;
    }
    
    .gseo-comment-body {
        font-size: 14px;
    }
    
    .gseo-author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .gseo-author-image {
        margin: 0 auto 15px;
    }
    
    .gseo-back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
    
    .gseo-back-to-top i {
        font-size: 16px;
    }
}

/* Extra Small Mobile (375px and below) */
@media (max-width: 375px) {
    .gseo-blog-category-section {
        padding: 70px 0;
    }
    
    .gseo-blog-category-title {
        font-size: 28px;
    }
    
    .gseo-blog-category-card-inner {
        padding: 30px 20px;
    }
    
    .gseo-blog-category-image-container {
        width: 160px;
        height: 180px;
        margin-bottom: 25px;
    }
    
    .gseo-blog-category-name {
        font-size: 22px;
    }
    
    .gseo-view-all-button {
        padding: 14px 30px;
        font-size: 15px;
        max-width: 280px;
    }
    
    .gseo-category-page-section {
        padding: 20px 0;
    }
    
    .gseo-category-header {
        margin-bottom: 15px;
        padding: 10px 0;
    }
    
    .gseo-category-header-content {
        padding: 12px;
    }
    
    .gseo-category-image-container {
        width: 80px;
        height: 80px;
        margin: 0 auto 10px;
    }
    
    .gseo-category-title {
        font-size: 20px;
    }
    
    .gseo-category-title::after {
        width: 40px;
    }
    
    .gseo-category-description {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .gseo-category-count {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .gseo-blog-posts-grid {
        gap: 12px;
    }
    
    .gseo-blog-post-content {
        padding: 15px 12px;
    }
    
    .gseo-blog-post-excerpt {
        font-size: 13px;
    }
    
    .gseo-blog-post-button {
        padding: 9px 18px;
        font-size: 12px;
    }
    
    .gseo-pagination-link {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .gseo-article-section {
        padding: 50px 0;
    }
    
    .gseo-article-title {
        font-size: 24px;
    }
    
    .gseo-article-content {
        padding: 18px 15px;
    }
    
    .gseo-article-body {
        font-size: 14px;
    }
    
    .gseo-comment-section {
        padding: 18px 15px;
    }
    
    .gseo-comment-section-title,
    .gseo-comments-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .gseo-comment-textarea {
        min-height: 70px;
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .gseo-comment-submit {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .gseo-comment-card {
        padding: 12px;
    }
    
    .gseo-comment-body {
        font-size: 13px;
    }
    
    .gseo-back-to-top {
        width: 36px;
        height: 36px;
        bottom: 15px;
        right: 15px;
    }
    
    .gseo-back-to-top i {
        font-size: 14px;
    }
}