/*
Theme Name: NOBSAI
Template: twentytwentyfive
Version: 1.0
*/

* {
    font-family: 'DM Sans', sans-serif;
}

/* Header */
.wp-block-template-part header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Main content area */
.wp-site-blocks {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Blog title */
h1.wp-block-query-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 2rem;
}

/* Card grid */
.wp-block-post-template {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Individual card */
.wp-block-post {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s;
}

.wp-block-post:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Card thumbnail */
.wp-block-post-featured-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Card content */
.wp-block-post-title {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    padding: 1rem 1rem 0.5rem !important;
    line-height: 1.4 !important;
}

.wp-block-post-title a {
    text-decoration: none;
    color: #111;
}

.wp-block-post-title a:hover {
    color: #333;
}

.wp-block-post-excerpt {
    padding: 0 1rem 1rem !important;
    color: #666 !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
}

.wp-block-post-date {
    padding: 0 1rem 1rem !important;
    color: #999 !important;
    font-size: 0.8rem !important;
}
