.small-tile-wrapper {
    display: flex;
    gap: 24px;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.small-tile-item {
    display: flex;
    width: 248px;
    min-height: 180px;
    padding: 16px 12px;
    flex-direction: column;
    border-radius: 8px;
    background: #FFF;
    position: relative;
    overflow: hidden;
    cursor: pointer;

    /* DropShadow Card */
    box-shadow: 0 2px 16px 0 rgba(195, 195, 195, 0.25);
}

.mobile .small-tile-item {
    width: 100%;
    height: auto;
    min-height: 112px;
    box-shadow: 0 0 8px 2px #e9e9e9;
    background: #fff;
}

.small-tile-item-status {
    display: flex;
    align-items: center;
}

.organization-page-request-item-status span {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #343741;
}

.small-tile-item-status-circle {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 4px;
}


.small-tile-item-name {
    color: #343741;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    margin: 24px 0 12px;
}

.small-tile-item-sum {
    color: #69707D;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.small-tile-item-footer {
    display: flex;
    justify-content: space-between;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-align: right;
    color: #98A2B3;
    position: absolute;
    right: 12px;
    left: 12px;
    bottom: 16px;
}

.small-tile-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.small-tile-title-text {
    font-weight: 800;
    font-size: 24px;
    line-height: 1.2;
    color: #343741;
}

.mobile .small-tile-title-text {
    font-size: 18px;
}

.small-tile-title-link-mobile {
    width: 100%;
    display: flex;
    justify-content: center;
}

.small-tile-title-link {
    color: #096DD9;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    cursor: pointer;
}

.mobile .small-tile-title-link {
    font-size: 14px;
}

.small-tile-title img {
    margin-left: 16px;
}


.small-tile-item-arrow-right {
    content: '';
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 20px;
    height: 20px;
    transition: all ease .15s;
    opacity: 0;
}
.small-tile-item:hover .small-tile-item-arrow-right {
    opacity: 1;
}

.small-tile-item-circle {
    content: '';
    position: absolute;
    right: -75px;
    bottom: -78px;
    width: 115px;
    height: 109px;
    transition: all ease .25s;
}
.small-tile-item:hover .small-tile-item-circle {
    right: -58px;
    bottom: -54px;
}

.organization-page-offer-item {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 286px;
    height: 146px;
    background: radial-gradient(100% 253.1% at 100% 0%, #FFF7E6 0%, #FFFDF9 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
    border: 1px solid #F2F3F1;
    border-radius: 4px;
    padding: 15px 20px;
}

.organization-page-offer-item-text {
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #FF7A45;
}

.organization-page-offer-item-header {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #4E3A09;
}

.organization-page-offer-item-subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #332400;
}

.organization-page-card-requisites {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    text-align: right;
    color: #69707D;
    text-align: inherit;
    margin-bottom: 40px;
}

.organization-page-card-requisites span span {
    color: #343741;
    margin-left: 3px;
    margin-right: 30px;
    font-weight: 500;
}