.dp-blog-page {
    padding: 45px 0 80px;
}

.dp-blog-header {
    margin-bottom: 30px;
}

.dp-blog-header h1 {
    font-size: 36px;
    font-weight: 900;
    margin: 0 0 10px;
    color: var(--text);
}

.dp-blog-header p {
    font-size: 15px;
    color: var(--text-medium);
    margin: 0;
}

.dp-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dp-blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.dp-blog-thumb {
    display: block;
    height: 210px;
   background: var(--bg);
    overflow: hidden;
}

.dp-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dp-blog-card-content {
    padding: 20px;
}

.dp-blog-date {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 10px;
}

.dp-blog-card h2 {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 900;
    margin: 0 0 10px;
}

.dp-blog-card h2 a {
    color: var(--text);
    text-decoration: none;
}

.dp-blog-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0 0 16px;
}

.dp-blog-readmore {
    color: var(--theme-color);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.dp-blog-card {
    transition: .25s ease;
}

.dp-blog-card:hover {
    border-color: var(--primary);
    box-shadow: var(--primary-shadow);
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .dp-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .dp-blog-page {
        padding: 30px 0 60px;
    }

    .dp-blog-header h1 {
        font-size: 28px;
    }

    .dp-blog-grid {
        grid-template-columns: 1fr;
    }

    .dp-blog-thumb {
        height: 190px;
    }
}