body {
    margin: 0;
    padding: 0 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.banner {
    background-color: #4c8eb7; /* Harappa yellow */
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.logo-text {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 50px;
}

.logo {
    margin-right: 10px;
    font-family: monospace;
}

.harappa-text {
    color: white;
}

.blogs-title {
    font-size: 100px;
    font-weight: 800;
    color: white;
    margin: 20px 0;
    margin-bottom: 50px;
    font-family: monospace;
}

.subtitle {
    font-size: 24px;
    color: #333;
}

.blog-list {
    padding: 40px 20px;
    background-color: #fff;
}

.blog-card {
    width: 70%;
    /* height: 220px; */
    display: flex;
    /* align-items: flex-start; */
    margin-bottom: 40px;
    margin: 0 auto 40px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    cursor: pointer;
    min-height: 216px;
}

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

.blog-image {
    width: 300px;
    object-fit: cover;
}

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

.blog-content {
    padding: 20px;
    flex: 1;
}

.blog-title {
    font-size: 24px;
    margin: 0 0 10px;
    color: #4c8eb7;
    font-weight: 600;
}

.blog-description {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}
.posted-at {
    font-size: 14px;
    color: #888;
    position: absolute;
    bottom: 10px;
    right: 20px;
}
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4c8eb7;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.7s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
