.issue-block {
    position: relative;
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
    margin-bottom: -10px;
}

.issue-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50vw;
    width: 200vw;
    height: 100%;
    background-color: #f9f9f9;
    z-index: -1;
}

.issue-block h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
}

.issue-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.issue-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    text-align: left;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 20px;
}

.issue-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.issue-item.big {
    grid-column: span 2;
    height: 200px;
}

.issue-item.small {
    grid-column: span 1;
    height: 200px;
}

.issue-item span {
    font-size: 18px;
    font-weight: bold;
    z-index: 1;
}

.issue-item.big .image-container {
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
}

.issue-item.small .image-container {
    width: 200px;
    height: 200px;
    bottom: -10px;
    right: 35px;
}

.issue-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .issue-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .issue-item.big {
        grid-column: span 2;
    }
    .issue-block h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .issue-container {
        grid-template-columns: 1fr;
        text-shadow: 
            -1px -1px 0 white,  
            1px -1px 0 white,  
            -1px 1px 0 white,  
            1px 1px 0 white;
    }
    .issue-item {
        height: 100px;
    }
    .issue-item.big {
        grid-column: span 1;
        height: 100px;
    }
    .issue-item.small {
        grid-column: span 1;
        height: 100px;
    }
    .issue-item.big .image-container,
    .issue-item.small .image-container {
        width: 150px;
        height: 150px;
        bottom: 0;
        right: -50px;
    }
}

@media (max-width: 350px) {
    .issue-item span {
        display: block;
        max-width: 14ch;
        overflow-wrap: break-word;
        text-align: left;
    }
}