.lastweek-wrapper {
    width: 100%;            
    font-family: 'Malgun Gothic', sans-serif;
}

.lastweek-section {
    padding: 0px;
}

.lastweek-section h2 {
    font-size: 18px;
    color: #333;
    border-left: 4px solid #ff6699;
    padding-left: 10px;
    margin-bottom: 16px;
}

.lastweek-container {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.lastweek-card {
    width: 120px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lastweek-card:hover {
    transform: translateY(-3px);
}

.lastweek-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.lastweek-info {
    padding: 6px;
    text-align: center;
}

.lastweek-title {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 4px;
    color: #222;
}

.lastweek-meta {
    font-size: 11px;
    color: #666;
}