Try ODOO Free — 4 Weeks
@@ -2671,11 +2805,20 @@We’ve received your request. A specialist will be in touch within one business day.
diff --git a/index.html b/index.html index 8c82b5c..8a5b9e3 100644 --- a/index.html +++ b/index.html @@ -2083,10 +2083,131 @@ color: var(--gold); } + /* ── Article actions row (schedule + trial) ──────────────────── */ + #article-actions { + display: flex; + align-items: stretch; + gap: 12px; + margin: 2.5rem 0 0 auto; + width: fit-content; + } + + .article-schedule-btn { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + gap: 6px; + width: 150px; + background: #fdf6ee; + border: 1px solid rgba(93, 64, 55, 0.22); + border-top: 3px solid #8d6e63; + border-radius: 6px; + box-shadow: + 0 8px 32px rgba(62, 39, 35, 0.18), + 0 2px 8px rgba(0, 0, 0, 0.08); + padding: 18px 14px; + cursor: pointer; + transition: border-top-color 0.2s, box-shadow 0.2s; + text-align: center; + } + + .article-schedule-btn:hover { + border-top-color: var(--gold); + box-shadow: + 0 12px 40px rgba(62, 39, 35, 0.22), + 0 2px 8px rgba(0, 0, 0, 0.1); + } + + .article-schedule-icon { + font-size: 1.6rem; + line-height: 1; + } + + .article-schedule-label { + font-family: Georgia, "Times New Roman", serif; + font-size: 0.83rem; + font-weight: 700; + color: #3e2723; + line-height: 1.3; + } + + .article-schedule-sub { + font-family: "Segoe UI", system-ui, sans-serif; + font-size: 0.68rem; + color: #8d6e63; + font-style: italic; + line-height: 1.4; + } + + /* ── Calendar modal ──────────────────────────────────────────────── */ + #cal-overlay { + position: fixed; + inset: 0; + z-index: 9600; + display: none; + align-items: center; + justify-content: center; + padding: 20px; + background: rgba(62, 39, 35, 0.88); + backdrop-filter: blur(18px); + -webkit-backdrop-filter: blur(18px); + } + + #cal-overlay.is-open { + display: flex; + animation: articleOverlayIn 0.3s ease-out; + } + + #cal-box { + position: relative; + width: 100%; + max-width: 820px; + height: 80vh; + background: #fdf6ee; + border-radius: 6px; + border: 1px solid rgba(93, 64, 55, 0.22); + box-shadow: + 0 40px 100px rgba(0, 0, 0, 0.35), + 0 0 0 1px rgba(255, 243, 224, 0.15); + overflow: hidden; + animation: articleFlyIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards; + } + + #cal-box iframe { + width: 100%; + height: 100%; + border: none; + display: block; + } + + #cal-close { + position: absolute; + top: 10px; + right: 10px; + width: 36px; + height: 36px; + border-radius: 50%; + border: none; + background: rgba(93, 64, 55, 0.12); + color: #8d6e63; + font-size: 1.2rem; + cursor: pointer; + display: flex; + align-items: center; + justify-content: center; + transition: background 0.2s, color 0.2s; + z-index: 2; + } + + #cal-close:hover { + background: rgba(230, 81, 0, 0.12); + color: var(--gold); + } + /* ── Article CTA panel ─────────────────────────────────────────── */ #article-cta-panel { width: 260px; - margin: 2.5rem 0 0 auto; background: #fdf6ee; border: 1px solid rgba(93, 64, 55, 0.22); border-top: 3px solid var(--gold); @@ -2258,7 +2379,13 @@ font-size: 0.95rem; column-width: 280px; } - #article-cta-panel { width: 100%; margin-top: 2rem; } + #article-actions { + flex-direction: column; + width: 100%; + margin-top: 2rem; + } + #article-schedule-btn, + #article-cta-panel { width: 100%; } } #modal-confirm .confirm-title { @@ -2626,6 +2753,13 @@
Try ODOO Free — 4 Weeks
@@ -2671,11 +2805,20 @@We’ve received your request. A specialist will be in touch within one business day.