.current-wrapper {
    margin-top: 90px;
    margin-left: 96px !important;
    margin-right: 96px !important;

    h2 {
        color: #000;
        font-size: 40px;
        font-weight: normal;
    }

    .current-items {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;

        .item {
            border: 1px solid rgba(0, 0, 0, 0.3);
            width: calc((100% - 32px) / 2);
            padding: 32px;

            .item-title {
                font-size: 24px;
                margin-bottom: 16px;
            }

            .item-description {
                size: 20px;
                margin-bottom: 16px;
            }
        }

        .item-link {
            a {
                text-decoration: none !important;
                color: #000 !important;
    
                &:after {
                    content: "";
                    display: inline-block; 
                    width: 16px;
                    height: 12px; 
                    background-image: url(../icons/link-arrow.svg);
                    background-size: cover;
                    background-repeat: no-repeat;
                    margin-left: 10px; 
                    transition: transform 0.3s ease;
                }
    
                &:hover:after {
                    transform: translateX(5px);
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .current-wrapper {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 600px) {
    .current-wrapper {
        margin-left: 0 !important;
        margin-right: 0 !important;

        .current-items {
            display: block;
    
            .item {
                width: calc((100%) / 1);
            }

            .item:first-child {
                margin-bottom: 16px;
            }
        }
    }
}
