/*
Theme Name: GDC Blog Elements Styles
Description: Base styles for GDC Blog Elements.
*/

.gbe-widget-wrapper {
    position: relative;
    width: 100%;
}

.gbe-post-hero {
    background: #f9f9f9;
    padding: 40px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.gbe-post-hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.gbe-post-hero-excerpt {
    font-size: 1.1rem;
    color: #666;
}

.gbe-sidebar-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gbe-sidebar-left {
    flex: 1 1 300px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.gbe-sidebar-right {
    flex: 2 1 600px;
}

/* Blog Grid (Outer Page) Styles */
.gbe-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.gbe-blog-card {
    background: #fdf5f6; /* Matching the light pink/beige */
    padding: 30px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease;
    min-height: 250px;
}

.gbe-blog-card:hover {
    transform: translateY(-2px);
}

.gbe-blog-card-title {
    font-size: 1.4rem;
    font-family: Georgia, serif;
    margin-bottom: 15px;
    line-height: 1.3;
}

.gbe-blog-card-title a {
    color: #2c4285; /* Matching the deep blue */
    text-decoration: none;
}

.gbe-blog-card-excerpt {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.5;
}

.gbe-blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.gbe-blog-card-meta {
    font-size: 0.85rem;
    color: #555;
}

.gbe-blog-card-arrow a {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
}
