/* Crypto Reviews Complete - Styles */

.crypto-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
    width: 100%;
}

.review-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.review-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.review-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.review-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 12px;
}

.review-card-category {
    background: #f0f0f0;
    color: #666;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.review-card-date {
    color: #999;
    font-size: 12px;
}

.review-card h3 {
    margin: 10px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
}

.review-card h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.review-card h3 a:hover {
    color: #F97316;
}

.review-card-excerpt {
    color: #666;
    font-size: 14px;
    margin: 10px 0;
    flex-grow: 1;
    line-height: 1.5;
}

.review-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.review-card-author {
    color: #999;
    font-size: 12px;
}

.review-card-button {
    background-color: #F97316;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.review-card-button:hover {
    background-color: #e66a0a;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .crypto-reviews-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .review-card-content {
        padding: 15px;
    }

    .review-card h3 {
        font-size: 16px;
    }

    .review-card-excerpt {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .crypto-reviews-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .review-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .review-card-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .review-card-button {
        width: 100%;
        text-align: center;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .review-card {
        background: #2a2a2a;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .review-card h3 a {
        color: #f0f0f0;
    }

    .review-card h3 a:hover {
        color: #F97316;
    }

    .review-card-excerpt {
        color: #ccc;
    }

    .review-card-category {
        background: #3a3a3a;
        color: #aaa;
    }

    .review-card-author {
        color: #999;
    }
}
