/* Blog & Resource Section Styling (Content King Package) */
.content-king-section {
    padding: 80px 0;
    background: #000;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(56, 239, 125, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.8);
    transition: all 0.4s ease;
}

.blog-card:hover .blog-image {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-tag {
    background: rgba(56, 239, 125, 0.1);
    color: #38ef7d;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.blog-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.blog-date {
    color: #64748b;
    font-size: 0.8rem;
}

.read-more {
    color: #38ef7d;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.blog-card:hover .read-more {
    gap: 10px;
}

/* Resource Tools Grid */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.resource-item {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.resource-item:hover {
    background: rgba(56, 239, 125, 0.05);
    border-color: #38ef7d;
}

.resource-icon {
    font-size: 2rem;
    color: #38ef7d;
    margin-bottom: 15px;
}

.resource-item h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.resource-item p {
    color: #64748b;
    font-size: 0.85rem;
}