/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
}

.main-title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    align-items: stretch;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.blog-card {
    background: linear-gradient(135deg, #4CAF50 0%, #9C27B0 100%);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    height: 500px;
    display: flex;
    flex-direction: column;
}

.blog-card-link:nth-child(2) .blog-card {
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
}

.blog-card-link:nth-child(3) .blog-card {
    background: linear-gradient(135deg, #FF9800 0%, #9C27B0 100%);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.brand-label {
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

.date-label {
    color: white;
    font-size: 0.9rem;
}

.image-placeholder {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.article-title {
    color: white;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 15px;
    flex-grow: 1;
}

.hashtag {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.article-description {
    color: #000;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.read-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #000;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .read-button {
    opacity: 1;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card {
        min-height: 400px;
    }
} */
