.rdapt-grid {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
}
.rdapt-grid--reverse {
direction: rtl;
}
.rdapt-grid--reverse > * {
direction: ltr;
}
.rdapt-visual {
position: relative;
}
.rdapt-illus-wrap {
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
position: relative;
}
.rdapt-illus-wrap--clickable {
cursor: pointer;
}
.rdapt-illus-wrap img {
mix-blend-mode: multiply;
transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rdapt-badge {
position: absolute;
top: 1.5rem;
left: 1.5rem;
display: inline-block;
}
.rdapt-latin {
margin: 0 0 0.3rem;
}
.rdapt-name {
margin: 0 0 1.5rem;
line-height: 1;
}
.rdapt-desc {
margin-bottom: 1.8rem;
}
.rdapt-desc p:last-child {
margin-bottom: 0;
}
.rdapt-specs {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
margin-bottom: 2rem;
}
.rdapt-spec {
padding: 1rem 1.2rem;
border-left: 2px solid transparent;
}
.rdapt-spec__label {
margin-bottom: 0.3rem;
}
.rdapt-tags {
display: flex;
flex-wrap: wrap;
gap: 0.4rem;
margin-bottom: 2rem;
}
.rdapt-tag {
display: inline-block;
padding: 0.25rem 0.7rem;
font-size: 0.68rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
border: 1px solid transparent;
}
.rdapt-actions {
display: flex;
gap: 0.75rem;
flex-wrap: wrap;
margin-bottom: 1.5rem;
}
.rdapt-btn {
display: inline-flex;
align-items: center;
gap: 0.5em;
padding: 0.75rem 1.4rem;
background: transparent;
border: 1.5px solid transparent;
text-transform: uppercase;
cursor: pointer;
transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}
.rdapt-btn i {
display: inline-block;
font-size: 1em;
line-height: 1;
flex-shrink: 0;
}
.rdapt-btn svg {
display: inline-block;
width: 1em;
height: 1em;
flex-shrink: 0;
}
.rdapt-notice {
padding: 1.2rem 1.5rem;
border-left: 3px solid transparent;
line-height: 1.7;
margin-bottom: 1.5rem;
}
.rdapt-notice strong {
margin-right: 0.3em;
}
.rdapt-price {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 1rem;
padding: 1.5rem 2rem;
}
.rdapt-price__label {
margin-bottom: 0.3rem;
}
.rdapt-price__cta {
display: inline-flex;
align-items: center;
padding: 0.9rem 2.2rem;
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.16em;
text-transform: uppercase;
text-decoration: none;
transition: background-color 0.3s ease;
}
@media (max-width: 800px) {
.rdapt-grid {
grid-template-columns: 1fr;
}
.rdapt-grid--reverse {
direction: ltr;
}
.rdapt-specs {
grid-template-columns: 1fr;
}
}