.review-block {
    height: 100%;
	position: relative;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: max(1rem, calc(1 * var(--su)));
	/* justify-content: space-between; */
	padding: max(1.5rem, calc(2 * var(--su)));
	outline: 1px solid var(--cbw-deep-pine-10);
	outline-offset: -1px;
	background-color: var(--cbw-white-100);
	border-radius: 1.5rem;
	text-decoration: none;
    overflow: hidden;
	transition: .2s ease-in-out background-color, .2s ease-in-out transform, .2s ease-in-out outline-color;
}

/* .review-block:hover, .review-block:active {
	background-color: var(--cbw-pumpkin-5);
	outline: 1px solid var(--cbw-pumpkin-40);
} */

.review-block .content {
    display: flex;
    flex-direction: column;
    gap: max(1rem, calc(1 * var(--su)));
    /* max-width: 90%; */
}

.review-block hr {
    margin-block: 0 max(1rem, calc(1 * var(--su)));
    border: none;
    background-color: var(--cbw-deep-pine-10) !important;
    height: 1px;
}

.review-block .icon {
    border-radius: 50%;
    width: max(1.5rem, calc(2 * var(--su)));
    height: auto;
    aspect-ratio: 1;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.15883 7.53833L2.72433 4.814C2.68589 4.83533 2.641 4.85028 2.58967 4.85883C2.53833 4.86739 2.48706 4.87167 2.43583 4.87167C1.75806 4.87167 1.18261 4.63317 0.7095 4.15617C0.2365 3.67917 0 3.10572 0 2.43583C0 1.75806 0.2365 1.18261 0.7095 0.7095C1.18261 0.2365 1.75806 0 2.43583 0C3.10572 0 3.67917 0.2365 4.15617 0.7095C4.63317 1.18261 4.87167 1.75733 4.87167 2.43367C4.87167 2.66933 4.84328 2.888 4.7865 3.08967C4.72961 3.29133 4.64644 3.48367 4.537 3.66667L2.3075 7.53833H1.15883ZM7.082 7.53833L8.64733 4.814C8.60889 4.83533 8.564 4.85028 8.51267 4.85883C8.46144 4.86739 8.41017 4.87167 8.35883 4.87167C7.68106 4.87167 7.10567 4.63317 6.63267 4.15617C6.15956 3.67917 5.923 3.10572 5.923 2.43583C5.923 1.75383 6.15956 1.17733 6.63267 0.706333C7.10567 0.235445 7.68106 0 8.35883 0C9.02872 0 9.60217 0.2365 10.0792 0.7095C10.5562 1.18261 10.7947 1.75733 10.7947 2.43367C10.7947 2.66933 10.7663 2.888 10.7095 3.08967C10.6526 3.29133 10.5695 3.48367 10.4602 3.66667L8.23067 7.53833H7.082ZM3.30767 3.30767C3.547 3.06833 3.66667 2.77772 3.66667 2.43583C3.66667 2.09395 3.547 1.80333 3.30767 1.564C3.06833 1.32467 2.77772 1.205 2.43583 1.205C2.09394 1.205 1.80333 1.32467 1.564 1.564C1.32467 1.80333 1.205 2.09395 1.205 2.43583C1.205 2.77772 1.32467 3.06833 1.564 3.30767C1.80333 3.547 2.09394 3.66667 2.43583 3.66667C2.77772 3.66667 3.06833 3.547 3.30767 3.30767ZM9.23067 3.30767C9.47 3.06833 9.58967 2.77772 9.58967 2.43583C9.58967 2.09395 9.47 1.80333 9.23067 1.564C8.99133 1.32467 8.70072 1.205 8.35883 1.205C8.01694 1.205 7.72633 1.32467 7.487 1.564C7.24767 1.80333 7.128 2.09395 7.128 2.43583C7.128 2.77772 7.24767 3.06833 7.487 3.30767C7.72633 3.547 8.01694 3.66667 8.35883 3.66667C8.70072 3.66667 8.99133 3.547 9.23067 3.30767Z' fill='%2301261E'/%3E%3C/svg%3E%0A");
    background-size: 35%;
    background-repeat: no-repeat;
    background-position: center;
    outline: 1px solid var(--cbw-deep-pine-10);
	outline-offset: -1px;
}

.review-block .author {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: max(.25rem, calc(.25 * var(--su)));
	font-size: var(--scaling-body-xs-medium);
}

.review-block .author .name {
    font-weight: 500;
}

.review-block .author .function {
    color: var(--cbw-deep-pine-60);
}

@media screen and (max-width: 992px) {

	

}

@media screen and (max-width: 767px) {

	.review-block {
        border-radius: 1rem;
    }

}