﻿/* Main Section */
.guide-container {
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

.guide-detail-container {
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

.guide-detail-container h2{
    margin-top:20px;
}

    .guide-detail-container ul {
        list-style-type: disc;
        margin-top: 20px;
        padding-left: 20px;
    }

h1 {
    font-size: 2rem;
}

h3 {
    padding-top: 10px;
}

.collectors-guide {
    padding: 20px 0 20px 0;
}

.collectors-guide p {
    color: #555;
}

.guide-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px; /* Add consistent spacing between items */
}

.guide-item {
    width: 30%; /* Default width for larger screens */
    margin-bottom: 30px;
    background: #fff; /* Set a white background for the block */
    border: 1px solid #ddd; /* Add a light border */
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow for depth */
    padding: 20px; /* Add inner spacing */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add hover effect */
}

    .guide-item img {
        max-width: 100%;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .guide-item:hover {
        transform: translateY(-5px); /* Slight upward movement on hover */
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15); /* Slightly stronger shadow on hover */
    }

    .guide-item a {
        text-decoration: none;
        font-size: 1.2rem;
        color: #007BFF;
        font-weight: bold; /* Make links stand out */
    }

        .guide-item a:hover {
            color: #ff6347; /* Highlight link on hover */
        }

    .guide-item p {
        font-size: 1rem;
        color: #7f8c8d;
        margin-top: 10px; /* Add some spacing between the title and the paragraph */
    }


/* Responsive Styles for Mobile */
@media (max-width: 768px) {
    .guide-list {
        flex-direction: column; /* Stack guide items vertically */
        gap: 20px; /* Add some space between items */
    }

    .guide-item {
        width: 100%; /* Set the width of each item to full width */
        margin-bottom: 20px; /* Reduce margin for smaller screens */
    }
}

/* Detail Page */
.featured-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.news-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #34495e;
}
