.oriest-prices--cta {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 14px;
max-width: 1000px;
margin: 0 auto 16px;
padding: 0 20px;
}
.oriest-prices__btn {
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
min-width: 200px;
padding: 14px 22px;
background: #2f5e4e;
color: #fff;
text-decoration: none;
border-radius: 10px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.oriest-prices__btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
color: #fff;
}
.oriest-prices__btn .oriest-prices__label {
font-size: 0.95rem;
font-weight: 600;
letter-spacing: 0.02em;
}
.oriest-prices__btn .oriest-prices__price {
font-size: 1.25rem;
font-weight: 700;
} .oriest-prices--table {
width: 100%;
max-width: 720px;
margin: 0 auto 24px;
border-collapse: collapse;
}
.oriest-prices--table .oriest-prices__row td {
padding: 12px 10px;
border-bottom: 1px solid #e3ded5;
vertical-align: middle;
}
.oriest-prices--table .oriest-prices__label {
font-weight: 600;
color: #2f2f2f;
}
.oriest-prices--table .oriest-prices__min {
font-weight: 400;
color: #6b6b6b;
font-size: 0.9em;
}
.oriest-prices--table .oriest-prices__price {
text-align: right;
font-weight: 700;
color: #2f5e4e;
white-space: nowrap;
}
.oriest-prices--table .oriest-prices__link {
display: inline-block;
padding: 8px 16px;
background: #2f5e4e;
color: #fff;
border-radius: 6px;
text-decoration: none;
font-size: 0.9rem;
white-space: nowrap;
}
@media screen and (max-width: 768px) {
.oriest-prices--cta {
gap: 10px;
}
.oriest-prices__btn {
min-width: calc(50% - 10px);
padding: 12px 14px;
}
}