134 lines
2.1 KiB
CSS
134 lines
2.1 KiB
CSS
.section {
|
|
padding: 150px 0;
|
|
background-color: #050505;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1400px;
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
padding: 0 var(--container-padding);
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1.5fr;
|
|
gap: 6rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.title {
|
|
font-size: clamp(2.5rem, 6vw, 4.5rem);
|
|
font-weight: 900;
|
|
line-height: 0.85;
|
|
letter-spacing: -0.05em;
|
|
margin-bottom: 5rem;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.outline {
|
|
color: transparent;
|
|
-webkit-text-stroke: 1px var(--primary);
|
|
font-style: italic;
|
|
}
|
|
|
|
.featureList {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 3rem;
|
|
}
|
|
|
|
.feature {
|
|
display: flex;
|
|
gap: 2rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.iconBox {
|
|
background-color: #0c0c0c;
|
|
border: 1px solid #1a1a1a;
|
|
padding: 1.5rem;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.red {
|
|
color: var(--primary);
|
|
}
|
|
|
|
.content h3 {
|
|
font-size: 1.1rem;
|
|
font-weight: 900;
|
|
margin-bottom: 0.8rem;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
.content p {
|
|
font-size: 0.85rem;
|
|
color: #777;
|
|
line-height: 1.6;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.right {
|
|
position: relative;
|
|
}
|
|
|
|
.imageWrapper {
|
|
position: relative;
|
|
background: radial-gradient(circle at center, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
|
|
}
|
|
|
|
.detailImg {
|
|
width: 100%;
|
|
height: auto;
|
|
object-fit: cover;
|
|
border-radius: 12px;
|
|
filter: saturate(0) brightness(0.8);
|
|
}
|
|
|
|
.buildQuality {
|
|
position: absolute;
|
|
bottom: -40px;
|
|
right: 40px;
|
|
max-width: 300px;
|
|
background-color: #0d0d0d;
|
|
border: 1px solid #1a1a1a;
|
|
padding: 2.5rem;
|
|
border-bottom: 3px solid var(--primary);
|
|
}
|
|
|
|
.buildQuality strong {
|
|
font-size: 0.7rem;
|
|
font-weight: 900;
|
|
color: var(--primary);
|
|
letter-spacing: 0.1em;
|
|
display: block;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.buildQuality p {
|
|
font-size: 0.75rem;
|
|
color: #555;
|
|
line-height: 1.5;
|
|
font-family: monospace;
|
|
}
|
|
|
|
@media (max-width: 1024px) {
|
|
.grid {
|
|
grid-template-columns: 1fr;
|
|
text-align: center;
|
|
}
|
|
.feature {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
.buildQuality {
|
|
position: relative;
|
|
bottom: auto;
|
|
right: auto;
|
|
margin: 2rem auto 0;
|
|
}
|
|
}
|