/* Mining News Grid Styles */
.mining-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.mining-news-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #B0B8C1;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    height: 100%;
}

.mining-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.news-image-link {
    display: block;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-image:hover {
    transform: scale(1.05);
}

.news-no-image {
    height: 160px;
    background-color: #F4F5F7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #B0B8C1;
}

.news-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.4;
}

.news-title a {
    color: #333333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-title a:hover {
    color: #0A2F5C;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #6B7280;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.news-description {
    font-size: 0.9rem;
    color: #333333;
    margin-bottom: 15px;
    flex-grow: 1;
}

.read-more-news {
    text-align: center;
    margin: 20px 0 40px;
}

.read-more-news-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0A2F5C;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.read-more-news-btn:hover {
    background-color: #051E3E;
    transform: translateY(-2px);
}

.read-more-news-btn i {
    margin-left: 5px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .mining-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mining-news-grid {
        grid-template-columns: 1fr;
    }
} 