.download-app {
    margin-top: 20px;
}

.download-app__title { 
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25;
    color: #262B2F;
    margin-bottom: 10px;   
}

.download-app__buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.download-app__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #DDE1E3;
    border-radius: 12px;
    background-color: #fff;
    text-decoration: none;
    padding-top: 12px;
    padding-bottom: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.download-app__button:hover {
    border-color: #f17800;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.download-app__icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-app__icon svg {
    display: block;
}

.download-app__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-app__small { 
    font-weight: 400;
    font-size: 8px;
    line-height: 1.76;
    color: #262B2F;  
}

.download-app__name {
    font-weight: 600;
    font-size: 12px;
    line-height: 1.25;
    color: #262B2F;  
}

@media only screen and (max-width: 991px) {
    .download-app {
        max-width: 30%;
        margin-left: auto;
    }    
}

@media only screen and (max-width: 767px) {
    .download-app {
        max-width: 252px;
        margin-left: 0;
    }   
}