.tcc-section {
padding: 48px 36px;
} .tcc-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 3px;
border-radius: 5px;
overflow: hidden;
} .tcc-box {
background: #0d0d0d;
padding: 22px 24px;
display: flex;
align-items: center;
justify-content: space-between;
transition: background 0.15s;
}
.tcc-box:hover {
background: #000;
} .tcc-label {
font-family: 'Bebas Neue', sans-serif;
font-size: 20px;
color: #ffffff;
letter-spacing: 1px;
text-transform: uppercase;
line-height: 1.3;
} .tcc-arrow {
font-size: 18px;
color: rgba(213, 143, 38, 1);
flex-shrink: 0;
margin-left: 12px;
transition: color 0.15s;
}
.tcc-box:hover .tcc-arrow {
color: rgba(213, 143, 38, 0.7);
} @media (max-width: 600px) {
.tcc-section {
padding: 32px 20px;
}
.tcc-grid {
grid-template-columns: 1fr;
}
}