.site-url {
    text-align: center;
    color: #9ca3af;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.page-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.blog-card {
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.3);
    margin-bottom: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.25rem;
}

.blog-category {
    display: inline-block;
    background: rgba(6, 182, 212, 0.2);
    color: var(--cyan-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.blog-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.blog-excerpt {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

.blog-meta i {
    color: var(--cyan-primary);
}


@media (min-width: 768px) {
    .main-content {
        padding-bottom: 2rem;
        margin-top: 4rem;
    }

    .bottom-nav {
        display: none;
    }

    .blog-card {
        display: flex;
        height: 300px;
    }
    .blog-card img {
        width: 330px;
    }
}
@media(max-width: 768px){
    .main-content {
        margin-top: 3rem;
    }
    .blog-card img {
        width: 100%;
        object-fit: cover;
    }
}

/* Cosmic Pagination Styles */
.cosmic-pagination-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.cosmic-pagination-info {
    text-align: center;
}

.cosmic-pagination-text {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
}

.cosmic-pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cosmic-page-item {
    margin: 0;
}

.cosmic-page-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 8px;
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.cosmic-page-link:hover {
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.2), rgba(168, 85, 247, 0.2));
    border-color: rgba(6, 182, 212, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.cosmic-page-item.active .cosmic-page-link {
    background: linear-gradient(to bottom right, #06b6d4, #a855f7);
    border-color: #06b6d4;
    color: white;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.cosmic-page-item.disabled .cosmic-page-link {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(156, 163, 175, 0.1);
    border-color: rgba(156, 163, 175, 0.3);
}

.cosmic-page-item.disabled .cosmic-page-link:hover {
    transform: none;
    box-shadow: none;
    background: rgba(156, 163, 175, 0.1);
    border-color: rgba(156, 163, 175, 0.3);
}