.posbrowse-section {
    padding: 0 40px 40px;
}
.posbrowse-section .container {
    width: 1360px;
    padding: 0;
}
.posbrowse-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 24px;
}
.posbrowse-kicker {
    display: block;
    font-size: 11px;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: .55px;
    text-transform: uppercase;
    color: #028fb0;
}
.posbrowse-title {
    margin: 0;
    color: #1a1b22;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.01em;
    font-weight: 700;
}
.posbrowse-description {
    margin: 0;
    color: #47464b;
    text-align: right;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
}
.posbrowse-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}
.posbrowse-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.posbrowse-card:hover {
    background: #f4f2fd;
}
.posbrowse-card--nolink {
    cursor: default;
}
.posbrowse-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 8px;
    background: #eeedf7;
}
.posbrowse-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}
.posbrowse-icon--a {
    color: #b42436;
}
.posbrowse-icon--b {
    color: #028fb0;
}
.posbrowse-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #1a1b22;
    margin: 0;
    text-align: center;
}
.posbrowse-card-desc {
    color: #47464b;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    margin: 2px 0 0;
    text-align: center;
}
.posbrowse-card:hover .posbrowse-icon--a {
    background: #b42436;
    color: #fff;
}
.posbrowse-card:hover .posbrowse-icon--a + .posbrowse-card-title {
    color: #b42436;
}
.posbrowse-card:hover .posbrowse-icon--b {
    background: #028fb0;
    color: #fff;
}
.posbrowse-card:hover .posbrowse-icon--b + .posbrowse-card-title {
    color: #028fb0;
}
.posbrowse-header-text .top {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}
.posbrowse-header-text .top path, .posbrowse-header-text .top circle {
    stroke: #028fb0;
}





@media (max-width: 1199px) {
    .posbrowse-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .posbrowse-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .posbrowse-description {
        text-align: left;
        max-width: none;
    }
	.posbrowse-section {
		padding: 0 20px 40px;
	}
	.posbrowse-title {
		font-size: 25px;
	}



}

@media (max-width: 479px) {
    .posbrowse-grid {
        grid-template-columns: 1fr;
    }
}
