.blog-container {
    background: #1b1b1e;
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.blog-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 84, 84, 0.2);
}

.blog-title {
    font-family: 'Proxima Nova';
    font-size: 24px;
    font-weight: 700;
    color: #FF5454;
    margin-bottom: 15px;
}

.blog-meta {
    color: #757575;
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-content {
    color: #ffffff;
    margin-bottom: 20px;
}

.search-container {
    margin-bottom: 30px;
}

.search-input {
    width: 100%;
    background-color: #363637;
    border: 2px solid #FF5454;
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    font-size: 16px;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255, 84, 84, 0.3);
}