.document {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}
.document.item {
    padding-top: 40px;
    padding-bottom: 34px;
    border-bottom: 1px solid;
}


.document .icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.document .icon img {
    width: 75px;
    height: 75px;
}

.download-btn {
    margin-top: 14px;
    background: #FEC00F;
    border: none;
    padding: 10px 20px;
    color: #fff;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    line-height: 1;
}

.document .info {
    flex: 1;
}
.document .info-detail {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.document .info-detail > div {
    padding-right: 16px;
    margin-bottom: 16px;
}
.document .info h3 {
    font-size: 18px;
    color: #BF2025;
    margin-bottom: 20px;
}

.document .info span.label {
    font-weight: 600;
    color: #FEC00F;
    grid-row-start: 1;
}

@media (width >= 768px) {
    .document .icon {
        width: 30%;
    }
}
@media (width >= 1024px) {
    .document.item {
        padding-top: 87px;
    }
    .document .icon img {
        width: 100px;
        height: 100px;
    }
    .document .info h3 {
        font-size: 20px;
        margin-bottom: 109px;
    }
}