.bulten-list-container {
    max-width: 100%;
    margin: 20px 0;
}

.bulten-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.bulten-item-wrapper {
    flex: 1 1 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
}

.bulten-item {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.bulten-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.bulten-thumbnail-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #eee;
    position: relative;
    aspect-ratio: 248/350;
}

.bulten-thumbnail {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.bulten-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    flex-grow: 1;
}

.bulten-title {
    margin: 0;
    font-size: 1.2em;
    font-weight: bold;
}

.bulten-date {
    font-size: 0.9em;
    font-style: italic;
}

.no-bulten-found {
    text-align: center;
    font-style: italic;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .bulten-item-wrapper {
        flex: 1 1 calc(33.333% - 14px);
        max-width: calc(33.333% - 14px);
    }
    
    .bulten-list {
        gap: 15px;
    }
}

.bulten-latest-container {
    max-width: 248px;
    margin: 20px auto;
}

.bulten-latest-item {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.bulten-latest-item:hover {
    transform: scale(1.02);
}

.bulten-latest-image-container {
    position: relative;
    width: 248px;
    height: 350px;
    overflow: hidden;
}

.bulten-latest-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bulten-latest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.bulten-latest-title {
    text-align: center;
    font-size: 1.4em;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.bulten-latest-button {
    background: rgba(255,255,255,0.9);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.bulten-latest-item:hover .bulten-latest-button {
    opacity: 1;
    transform: translateY(0);
}

.bulten-latest-button:hover {
    background: rgba(255,255,255,1);
    text-decoration: none;
}

@media (max-width: 768px) {
    .bulten-item-wrapper {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    .bulten-list {
        gap: 15px;
    }
    
    .bulten-thumbnail-container {
        height: 280px;
    }
    
    .bulten-thumbnail {
        width: 100%;
        height: auto;
    }
    
    .bulten-content {
        padding: 15px;
    }
    
    .bulten-title {
        font-size: 1.1em;
    }
}