63 lines
1018 B
CSS
63 lines
1018 B
CSS
.uct-section {
|
|
padding: 100px 20px;
|
|
}
|
|
|
|
.uct-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
|
|
gap: 20px;
|
|
margin-top: 48px;
|
|
}
|
|
|
|
.uct-card {
|
|
padding: 28px;
|
|
border-radius: 18px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
transition: border-color 0.25s, transform 0.25s;
|
|
}
|
|
|
|
.uct-card:hover {
|
|
border-color: rgba(0, 255, 0, 0.25);
|
|
transform: translateY(-3px);
|
|
}
|
|
|
|
.uct-icon {
|
|
font-size: 1.8rem;
|
|
line-height: 1;
|
|
}
|
|
|
|
.uct-title {
|
|
font-size: 1.15rem;
|
|
color: #fff;
|
|
margin: 0;
|
|
}
|
|
|
|
.uct-summary {
|
|
color: var(--text-secondary);
|
|
font-size: 0.88rem;
|
|
line-height: 1.6;
|
|
margin: 0;
|
|
flex: 1;
|
|
}
|
|
|
|
.uct-status {
|
|
display: inline-block;
|
|
align-self: flex-start;
|
|
background: rgba(0,255,0,0.08);
|
|
border: 1px solid rgba(0,255,0,0.2);
|
|
color: var(--accent-color);
|
|
font-size: 0.73rem;
|
|
font-weight: 700;
|
|
padding: 3px 10px;
|
|
border-radius: 50px;
|
|
letter-spacing: 0.06em;
|
|
}
|
|
|
|
.uct-cta {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 48px;
|
|
}
|