.latest-wrapper {
    background-color: #121212;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
}

.guides-section {
    max-width: 1200px;
    margin: 0 auto;
}

.guides-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #ff5722;
    margin-bottom: 30px;
}

.small-guides-column {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.small-guide-item {
    padding: 20px 10px;
    background-color: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.small-guide-item:hover {
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.7);
}

.category-tag {
    display: inline-block;
    background-color: #ff5722;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 10px;
}

.guide-thumbnail {
    margin-bottom: 20px;
}

.guide-thumbnail img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.guide-title {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.guide-title a {
    color: inherit;
    text-decoration: none;
}

.guide-title a:hover {
    text-decoration: underline;
    color: #ff5722;
}

.guide-meta {
    font-size: 14px;
    color: #ccc;
}

.small-guide-item {

    position: relative;
}

.category-tag {

    position: absolute;
    top: 30px;
    z-index: 20;
    right: 20px;
}

@media (max-width: 768px) {
    .guides-section h2 {
        font-size: 28px;
    }

    .guide-title {
        font-size: 18px;
    }

    .guide-meta {
        font-size: 12px;
    }

    .small-guide-item {
        padding: 15px;
    }
}
