.credibility.icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 96px;
    text-align: center;
    font-weight: 500;
}

@media screen and (max-width: 478px) {
.credibility.icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 0 0 calc(33.333% - 8px);
    max-width: calc(33.333% - 8px);
    text-align: center;
    font-weight: 500;
}

.credibility.icon-wrapper:nth-child(n+4) {
    flex: 0 0 calc(50% - 6px);
    max-width: calc(50% - 6px);
}
}

.credibility.icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-background);
    color: var(--primary-accent);
    border: 1px solid var(--primary-accent);
    border-radius: 100%;
    padding: 12px;
}

@media screen and (max-width: 767px) {
.credibility.icon {
    width: 34px;
    height: 34px;
    border: 1px solid var(--primary-accent);
    padding: 10px;
}
}

@media screen and (max-width: 478px) {
.credibility.icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--primary-accent);
    padding: 6px;
}
}

.section.default.credibility {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    gap: clamp(8px, 3vw, 48px);
    background-color: var(--secondary-background);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 478px) {
.section.default.credibility {
    flex-wrap: wrap;
    gap: 12px;
}
}

.credibility.text {
    font-size: 14px;
}

@media screen and (max-width: 767px) {
.credibility.text {
    font-size: 12px;
}
}