/* Section 03 — see resources/design/homepage/sections/03-brand-ups/brief.md */
.brand-ups { padding: 60px 0; }
.brand-ups-card {
    position: relative;
    min-height: 230px;
    background: var(--skin-grey-5);
    border-radius: 12px;
    padding: 48px 60px 48px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    gap: 24px;
    flex-wrap: wrap;
}
.brand-ups-deco {
    position: absolute;
    left: -93px;
    top: 0;
    width: 774px;
    height: 230px;
    z-index: 0;
    pointer-events: none;
}
.brand-ups-heading { position: relative; z-index: 1; color: var(--skin-red); margin: 0; }
.brand-ups-pills { position: relative; z-index: 1; display: flex; gap: 16px; flex-wrap: wrap; }
.brand-ups-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--skin-white);
    border-radius: 100px;
    padding: 16px 24px;
    color: var(--skin-red);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    white-space: nowrap;
}
.brand-ups-pill i { font-size: 24px; }

.brand-ups .brand-ups-card {
	padding-right: 40px;
}

@media (max-width: 1630px) {
	.brand-ups-card {
		margin: 0 40px;
	}
}	
@media (max-width: 767.98px) {
    .brand-ups-card { flex-direction: column; align-items: flex-start; padding: 32px; margin: 0 20px;}
    .brand-ups-deco { display: none; }
    .brand-ups-pills { width: 100%; }
    .brand-ups-pill { flex: 1; justify-content: center; }
}
