.crypto-news-section-4936 {
    padding: 50px 20px;
    background-color: #0B1F2A; /* Default dark background */
}

.crypto-news-title-4936 {
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 700;
}

.crypto-news-grid-4936 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .crypto-news-grid-4936 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .crypto-news-grid-4936 {
        grid-template-columns: 1fr;
    }
}

.crypto-news-card-4936 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.crypto-news-card-4936:hover {
    transform: translateY(-6px);
    border-color: #00F5FF;
    box-shadow: 0 10px 20px rgba(0, 245, 255, 0.15);
}

.crypto-news-img-wrap-4936 {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.crypto-news-img-4936, .crypto-news-placeholder-4936 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crypto-news-placeholder-4936 {
    background-color: rgba(255,255,255,0.1);
}

.crypto-news-content-4936 {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.crypto-news-category-4936 {
    color: #00F5FF;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.crypto-news-post-title-4936 {
    margin: 0 0 15px 0;
    font-size: 20px;
    line-height: 1.4;
    flex-grow: 1;
}

.crypto-news-post-title-4936 a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.crypto-news-post-title-4936 a:hover {
    color: #00F5FF;
}

.crypto-news-meta-4936 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    display: flex;
    gap: 5px;
}

.crypto-news-btn-wrap-4936 {
    text-align: center;
    margin-top: 40px;
}

.crypto-news-btn-4936 {
    display: inline-block;
    background: transparent;
    border: 1px solid #00F5FF;
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.crypto-news-btn-4936:hover {
    background: #00F5FF;
    color: #0B1F2A;
}