.rdftr,
.rdftr * {
box-sizing: border-box;
}
.rdftr__container {
margin: 0 auto;
padding: 0 clamp(1.5rem, 5vw, 4rem);
}
.rdftr__inner {
display: grid;
grid-template-columns: auto 1fr auto;
align-items: center;
gap: 2rem;
margin-bottom: 2.5rem;
}
.rdftr__logo {
display: inline-flex;
text-decoration: none;
}
.rdftr__logo img {
width: auto;
display: block;
}
.rdftr__nav {
display: flex;
flex-wrap: wrap;
row-gap: 0.5rem;
justify-content: center;
}
.rdftr__nav a {
text-decoration: none;
transition: color 0.3s ease;
}
.rdftr__cta-group {
display: flex;
align-items: center;
}
.rdftr__cta {
display: inline-flex;
align-items: center;
text-decoration: none;
border: none;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.2s ease;
}
.rdftr__cta:hover {
transform: translateY(-2px);
}
.rdftr__divider {
height: 1px;
margin-bottom: 1.8rem;
}
.rdftr__bottom {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 1rem;
}
.rdftr__copy {
margin: 0;
}
.rdftr__legal {
display: flex;
gap: 1.5rem;
}
.rdftr__legal a {
text-decoration: none;
transition: color 0.3s ease;
}
@media (max-width: 800px) {
.rdftr__inner {
grid-template-columns: 1fr;
text-align: center;
}
.rdftr__logo {
margin: 0 auto;
}
.rdftr__nav,
.rdftr__cta-group {
justify-content: center;
}
}
@media (max-width: 600px) {
.rdftr__bottom {
flex-direction: column;
align-items: center;
text-align: center;
}
}