@charset "UTF-8";
/*
Theme Name: Google Workspace TOWA
Theme URI: 
Author: SHIN Inc.
Description: 
Version: 2.0
*/
:root {
  --white: #ffffff;
  --bg: #fafafa;
  --surface: #f2f2f4;
  --border: #e4e4e8;
  --border-light: #efefef;
  --text: #1a1a2e;
  --text-sub: #6b6b80;
  --text-dim: #9e9eb0;
  --post-text: rgb(71, 85, 105);
  --blue: oklch(54.6% 0.245 262.881);
  --blue-dark: oklch(45.6% 0.245 262.881);
  --grey: #808080;
  --orange: oklch(70.5% 0.213 47.604);
  /* Google Brand Colors */
  --g-blue: #4285f4;
  --g-red: #ea4335;
  --g-yellow: #fbbc04;
  --g-green: #34a853;
  /* Gemini Gradients & Accents */
  --gemini-1: #4285f4;
  --gemini-2: #9b72cb;
  --gemini-3: #d96570;
  --gemini-4: #fbbc04;
  --font: "Google Sans", "Zen Kaku Gothic New", sans-serif;
  --site-padding: 1rem;
  --admin-bar-height: 0px;
  box-sizing: border-box;
  line-height: 1.5;
  font-family: var(--font);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(4rem + var(--admin-bar-height, 0px));
}
@media screen and (min-width: 601px) {
  :root:has(.admin-bar) {
    --admin-bar-height: 46px;
  }
}
@media screen and (min-width: 783px) {
  :root:has(.admin-bar) {
    --admin-bar-height: 32px;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --site-padding: 1.75rem;
    font-size: min(16px, 1.2944983819vw);
  }
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--text);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
p:first-child {
  margin-top: 0;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  padding-inline-start: 2.5em;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

button {
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  text-shadow: none;
  cursor: pointer;
}

::selection {
  background: rgba(66, 133, 244, 0.15);
}

/* Common */
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  width: 100%;
  max-width: 25em;
  margin: 0 auto;
  padding: 1em 1.25em;
  border-radius: 1em;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-property: background-color;
}
.button:hover, .button:focus {
  background: var(--blue-dark);
}
@media screen and (min-width: 768px) {
  .button {
    width: fit-content;
    max-width: none;
  }
}

/* Animation Utils */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}
.reveal:where(.vis) {
  opacity: 1;
  transform: translateY(0);
}

/* スキップリンク */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999999;
  list-style: none;
  margin: 0;
  padding: 0;
}
.skip-link a {
  display: block;
  height: 0;
  line-height: 1.5;
  overflow: hidden;
  border-radius: 0 0 0.5em 0;
  background: #fff;
  transition: none;
  color: rgb(0, 81, 255);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.skip-link a:focus {
  height: auto;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  padding: 16px 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: var(--admin-bar-height);
  left: 0;
  width: 100%;
  z-index: 200;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

.site-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--site-padding);
  height: 4rem;
}

.site-title {
  margin: 0;
  font-size: 1rem;
}

.logo {
  --color1: #494949;
  --color2: #579fe6;
  display: grid;
  grid-template-areas: "mark title" "mark subtitle";
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: start;
  gap: 0.4em 1.5em;
  width: fit-content;
  line-height: 1;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  font-size: min(10px, 2.0834vw);
  font-optical-sizing: auto;
  text-decoration: none;
  -webkit-font-smoothing: auto;
}
.logo:hover, .logo:focus {
  --color1: #4f46e5;
  --color2: #4f46e5;
}
.logo > span {
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .logo {
    font-size: 1r 0.625emem;
  }
}

.logo-mark {
  grid-area: mark;
  width: 5em;
}

.logo-title {
  grid-area: title;
  line-height: 0.8;
  color: #494949;
  color: var(--color1);
  font-weight: 700;
  font-size: 2.4375em;
  letter-spacing: -0.021em;
}

.logo-subtitle {
  grid-area: subtitle;
  color: #579fe6;
  color: var(--color2);
  font-size: 1.375em;
  letter-spacing: 0.013em;
  text-align: right;
}

.nav-logo {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-badge {
  font-size: 0.6rem;
  font-weight: 700;
  background: var(--text);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}

.nav {
  display: grid;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  z-index: 100;
  grid-template-rows: 0fr;
  overflow: hidden;
  margin: 0;
  padding: 0 1.5rem;
  background: rgba(255, 255, 255, 0.98);
  transition: 0.3s;
  transition-property: grid-template-rows, padding;
  box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.05);
}
.site-header:has(#progress-container) .nav {
  top: calc(100% + 4px);
}
.nav.open {
  grid-template-rows: 1fr;
  padding-bottom: 1em;
  border-bottom: 1px solid var(--border);
}
@media screen and (min-width: 768px) {
  .nav {
    display: block;
    position: static;
    height: auto;
    overflow: visible;
    background: transparent;
    transition: none;
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}

.nav-list {
  list-style: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.nav-list a {
  display: block;
  padding: 1em 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  font-size: 0.9375em;
  transition: 0.2s;
  color: inherit;
  font-weight: 600;
}
.nav-list a:hover, .nav-list a:focus {
  color: var(--text);
  background: var(--surface);
}
@media screen and (min-width: 768px) {
  .nav-list {
    display: flex;
    gap: 0.5em;
    align-items: center;
    overflow: visible;
  }
  .nav-list a {
    border-radius: 0.57143em;
    border: 0;
    padding: 0.57143em 1.14286em;
    color: var(--text-sub);
    font-size: 0.875em;
  }
}

@media screen and (min-width: 768px) {
  a.nav-cta-link {
    background: var(--text);
    color: #fff;
    font-weight: 700;
    padding: 0.64286em 1.4286em;
    margin-left: 0.57143em;
  }
  a.nav-cta-link:hover, a.nav-cta-link:focus {
    opacity: 0.9;
    background: var(--text);
    transform: translateY(-1px);
    color: #fff;
  }
}

.mobile-toggle {
  background: none;
  border: none;
  margin-left: auto;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-toggle svg {
  display: block;
  width: 1em;
}
.mobile-toggle path {
  fill: currentColor;
  transform-origin: 50% 50%;
  transition: transform 0.3s;
}
.mobile-toggle[aria-expanded=true] path {
  transform: rotate(45deg);
}
.mobile-toggle[aria-expanded=true] path:first-child {
  transform: rotate(-45deg) translateY(8px);
}
.mobile-toggle[aria-expanded=true] path:last-child {
  transform: rotate(45deg) translateY(-8px);
}
@media screen and (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  z-index: 199;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  border-bottom: 1px solid var(--border-light);
}

#progress-container {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 4px;
  background: oklch(96.8% 0.007 247.896);
}

#progress-bar {
  width: 0;
  height: 100%;
  background: var(--blue);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: calc(100vh - 4rem);
  min-height: calc(100dvh - 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6em 1em;
  background: oklch(12.9% 0.042 264.695);
  color: #fff;
  font-size: min(16px, 2.73vw);
}
.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, oklch(0.129 0.042 264.695) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
  content: "";
  z-index: 1;
}
.hero h1 {
  font-weight: 800;
  font-size: 4.2em;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0.41667em;
}
.hero h1 .gemini-word {
  background: linear-gradient(135deg, var(--gemini-1), var(--gemini-2), var(--gemini-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shimmer 5s ease-in-out infinite;
}
.hero h1 .ws-word {
  background: linear-gradient(135deg, var(--g-blue), #1a73e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .hero {
    padding-inline: var(--site-padding);
    font-size: 1rem;
  }
}

@keyframes shimmer {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}
#heroCanvas {
  z-index: 0;
  filter: blur(40px) contrast(1.5) brightness(1.2);
  opacity: 0;
  mix-blend-mode: screen;
  width: 100%;
  height: 100%;
  transition: opacity 1s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}
#heroCanvas.loaded {
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 880px;
  animation: fadeIn 1.2s ease-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8334em;
  font-size: 0.75em;
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2.667em;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.667em 1.333em;
  border-radius: 1.667em;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.g-dots {
  display: inline-flex;
  gap: 0.41667em;
}

.g-dot {
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
}

.hero-sub {
  font-size: 1.15em;
  line-height: 1.8;
  margin-bottom: 2.61em;
  max-width: 32em;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub strong {
  font-weight: 700;
  background: linear-gradient(120deg, rgba(66, 133, 244, 0.1) 0%, rgba(155, 114, 203, 0.1) 100%);
  padding: 0 4px;
}

.hero-actions {
  display: flex;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6667em;
  padding: 1.0667em 2.4em;
  border-radius: 0.8em;
  font-size: 0.9375em;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-dark {
  background: var(--text);
  color: #fff;
  box-shadow: 0 0.2667em 0.9334em rgba(0, 0, 0, 0.1);
}

.btn-dark:hover {
  background: #2d2d44;
  transform: translateY(-3px);
  box-shadow: 0 0.8em 2em rgba(0, 0, 0, 0.15);
}

.btn-light {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.btn-light:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0.5334em 1.6em rgba(0, 0, 0, 0.05);
}

.scroll-cue {
  position: absolute;
  bottom: 3.2em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8em;
  color: var(--text-dim);
  font-size: 0.625em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  animation: cueFloat 2.5s ease-in-out infinite;
}

@keyframes cueFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
/* Sections General */
section {
  padding: 3rem var(--site-padding);
}
:where(.home-main) section {
  padding-block: 7.5rem;
}

.sec-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.sec-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--g-blue);
  margin-bottom: 1.4286em;
}

.sec-title {
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0.48077em;
  color: var(--text);
}

.sec-desc {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .sec-desc {
    width: 38em;
    word-break: auto-phrase;
  }
}

.gtxt {
  background: linear-gradient(135deg, var(--gemini-1), var(--gemini-2), var(--gemini-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Showcase Section */
.showcase {
  background: var(--white);
  border-top: 1px solid var(--border-light);
}

.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.showcase-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.showcase-tab {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-sub);
  cursor: pointer;
  transition: all 0.2s;
}

.showcase-tab:hover,
.showcase-tab.active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.showcase-grid {
  display: grid;
  gap: 1.5rem;
  position: relative;
  min-height: 12.5rem;
}
@media screen and (min-width: 480px) {
  .showcase-grid {
    --col: 2;
    grid-template-columns: repeat(var(--col), 1fr);
  }
}
@media screen and (min-width: 768px) {
  .showcase-grid {
    --col: 3;
  }
}
.showcase-grid.is-revealing {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}
.showcase-grid.is-revealing.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.showcase-grid .sc-card {
  transition: opacity 0.4s ease-out, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.showcase-grid.loading {
  opacity: 0.6;
  pointer-events: none;
}
.showcase-grid.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6rem;
  aspect-ratio: 1/1;
  border: 0.25rem solid var(--border);
  border-top-color: var(--gemini-2);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.showcase-empty {
  grid-column: 1/-1;
  text-align: center;
  color: var(--text-sub);
  align-self: center;
}

.sc-card {
  container-type: inline-size;
}
.sc-card a {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.25em;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  color: inherit;
  text-decoration: none;
}
.sc-card a:hover, .sc-card a:focus {
  border-color: var(--gemini-2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}
@media screen and (min-width: 480px) {
  .sc-card a {
    font-size: 4.24cqi;
  }
}

.sc-visual {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface);
}
.sc-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sc-body {
  padding: 1.5em 1.75em 1.75em;
}

.sc-tag {
  display: inline-block;
  font-size: 0.625em;
  font-weight: 700;
  padding: 0.4em 1em;
  border-radius: 0.6em;
  margin-bottom: 1.2em;
  background: rgba(66, 133, 244, 0.08);
  color: var(--g-blue);
}

.t-gemini {
  background: rgba(155, 114, 203, 0.08);
  color: var(--gemini-2);
}

.t-meet {
  background: rgba(251, 188, 4, 0.1);
  color: #d09000;
}

.t-sheets {
  background: rgba(52, 168, 83, 0.08);
  color: var(--g-green);
}

.t-imagen {
  background: rgba(217, 101, 112, 0.08);
  color: var(--gemini-3);
}

.t-appsheet {
  background: rgba(66, 133, 244, 0.08);
  color: var(--g-blue);
}

.sc-title {
  font-weight: 700;
  font-size: 1.1em;
  margin: 0 0 0.5682em;
  color: var(--text);
  line-height: 1.4;
}

.sc-desc {
  font-size: 0.85em;
  color: var(--text-sub);
  line-height: 1.7;
}

.sc-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.5em;
  margin-top: 1.125em;
  padding-top: 1em;
  border-top: 1px solid var(--border-light);
}

.sc-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--text-dim);
  font-weight: 500;
  font-size: 0.75rem;
}
.sc-category .ph-buildings {
  color: var(--g-blue);
}
.sc-category .ph-users-three {
  color: var(--g-yellow);
}
.sc-category .ph-paint-brush {
  color: var(--gemini-3);
}
.sc-category .ph-factory {
  color: var(--g-blue);
}
.sc-category .ph-briefcase {
  color: var(--gemini-2);
}
.sc-category .ph-chart-line-up {
  color: var(--g-green);
}

/* Mini Demos */
.mini-chat {
  width: 90%;
  max-width: 300px;
}

.mc-bubble {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 8px;
  opacity: 0;
  animation: mcIn 0.5s ease-out forwards;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.mc-bubble:nth-child(1) {
  animation-delay: 0.3s;
}

.mc-bubble:nth-child(2) {
  animation-delay: 1.2s;
}

.mc-bubble:nth-child(3) {
  animation-delay: 2.5s;
}

.mc-user {
  background: var(--white);
  border: 1px solid var(--border);
  margin-left: 40px;
  color: var(--text);
  border-bottom-right-radius: 2px;
}

.mc-ai {
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.05), rgba(155, 114, 203, 0.05));
  border: 1px solid rgba(66, 133, 244, 0.1);
  margin-right: 40px;
  color: var(--text);
  border-bottom-left-radius: 2px;
}

.mc-ai strong {
  color: var(--gemini-2);
}

@keyframes mcIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(10px);
  }
}
.mini-wave {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mw-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 50px;
}

.mw-bar {
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(to top, var(--g-blue), var(--gemini-2));
  animation: mwPulse 1s ease-in-out infinite alternate;
}

.mw-bar:nth-child(odd) {
  animation-duration: 0.8s;
}

.mw-bar:nth-child(2n) {
  animation-duration: 1.1s;
}

@keyframes mwPulse {
  0% {
    height: 20%;
    opacity: 0.5;
  }
  100% {
    height: 100%;
    opacity: 1;
  }
}
.mini-doc {
  width: 80%;
  max-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.md-line {
  height: 6px;
  border-radius: 3px;
  background: var(--surface);
  margin-bottom: 8px;
}

.md-line.hl {
  background: linear-gradient(90deg, rgba(66, 133, 244, 0.2), rgba(155, 114, 203, 0.2));
  position: relative;
}

.md-line.hl::after {
  content: "✨ AI generated";
  position: absolute;
  right: -10px;
  top: -18px;
  font-size: 0.6rem;
  color: var(--gemini-2);
  background: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  animation: floatLabel 2s ease-in-out infinite;
}

@keyframes floatLabel {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
.mini-sheet {
  width: 85%;
  max-width: 280px;
}

.ms-row {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}

.ms-cell {
  flex: 1;
  height: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sub);
}

.ms-cell.hd {
  background: var(--surface);
  font-weight: 700;
  color: var(--text);
}

.ms-cell.ai {
  background: rgba(52, 168, 83, 0.08);
  border-color: rgba(52, 168, 83, 0.3);
  color: var(--g-green);
  font-weight: 700;
}

/* Journey Section */
.journey {
  background: var(--bg);
  border-top: 1px solid var(--border-light);
}

.journey-grid {
  margin-top: 4rem;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 0.25em 1.25em rgba(0, 0, 0, 0.02);
}
@media screen and (min-width: 480px) {
  .journey-grid {
    --col: 2;
    display: grid;
    grid-template-columns: repeat(var(--col), 1fr);
  }
}
@media screen and (min-width: 768px) {
  .journey-grid {
    --col: 4;
  }
}

.j-step {
  padding: 2.5em 2em;
  border: 0 solid var(--border);
  border-bottom-width: 1px;
  transition: background-color 0.3s;
  position: relative;
}
.j-step::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.25em;
  background: linear-gradient(90deg, var(--g-blue), var(--gemini-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.j-step:hover::after {
  transform: scaleX(1);
}
.j-step:last-child {
  border-bottom-width: 0;
}
@media screen and (min-width: 480px) {
  .j-step {
    border-right-width: 1px;
    border-bottom-width: 0;
  }
  .j-step:last-child {
    border-right-width: 0;
  }
}

.j-num {
  font-weight: 800;
  font-size: 2.4em;
  background: linear-gradient(135deg, var(--gemini-1), var(--gemini-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.41667em;
  line-height: 1;
  opacity: 0.8;
}

.j-title {
  font-weight: 700;
  font-size: 1.1em;
  margin-bottom: 0.682em;
  color: var(--text);
}

.j-desc {
  font-size: 0.85em;
  color: var(--text-sub);
  line-height: 1.7;
}

.j-tag {
  display: block;
  width: fit-content;
  margin-top: 1.8em;
  font-size: 0.625em;
  font-weight: 700;
  padding: 0.5em 1em;
  border-radius: 0.6em;
  background: var(--surface);
  color: var(--text);
  letter-spacing: 0.05em;
}

/* Apps Section */
.apps-sec {
  background: var(--white);
  border-top: 1px solid var(--border-light);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.app-item {
  display: flex;
  align-items: center;
  gap: 0.75em;
  padding: 1em 1.25em;
  border: 1px solid var(--border-light);
  border-radius: 0.875em;
  transition: all 0.2s;
  background: var(--white);
}
.app-item:hover {
  border-color: var(--border);
  background: var(--bg);
  transform: translateY(-0.125em);
  box-shadow: 0 0.25em 0.75em rgba(0, 0, 0, 0.03);
}
.app-item svg {
  width: 1.4em;
}
.app-item .a-name {
  font-weight: 700;
  font-size: 0.85em;
  color: var(--text);
}

/* AI Features */
.ai-sec {
  background: var(--bg);
  border-top: 1px solid var(--border-light);
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25em;
  margin-top: 3rem;
}

.ai-card {
  background: var(--white);
  box-shadow: 0 0 0 1px var(--border);
  border-radius: 1.25em;
  transition: all 0.3s;
  overflow: hidden;
}
.ai-card:hover {
  box-shadow: 0 0 0 1px var(--gemini-2), 0 0.75em 2.5em rgba(0, 0, 0, 0.06);
  transform: translateY(-0.25em);
}
.ai-card h3 {
  font-weight: 700;
  font-size: 1.1em;
  margin: 0 0 0.5682em;
}
.ai-card p {
  font-size: 0.875em;
  color: var(--text-sub);
  line-height: 1.7;
  margin: 0 0 1.4286em;
}

.ai-card-image {
  position: relative;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  container-type: inline-size;
}
.ai-card-image::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 500;
  font-size: 12.632cqi;
  white-space: nowrap;
  content: attr(data-title);
}

.ai-card-content {
  padding: 2em 1.75em;
}

.ai-icon {
  width: 2.1667em;
  aspect-ratio: 1/1;
  border-radius: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  margin-bottom: 0.8334em;
}

.ai-card-foot {
  padding-top: 1.334em;
  border-top: 1px solid var(--border-light);
  font-size: 0.75em;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.667em;
  font-weight: 600;
}

/* Security */
.security-sec {
  background: var(--white);
  border-top: 1px solid var(--border-light);
}

.sec-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1em;
  margin-top: 2.5rem;
}

.sec-item {
  padding: 1.75em;
  border: 1px solid var(--border);
  border-radius: 1em;
  transition: all 0.2s;
  background: var(--surface);
}
.sec-item:hover {
  background: #eef2fa;
  border-color: #d0d7de;
}
.sec-item i {
  font-size: 1.6em;
  margin-bottom: 0.546875em;
  display: block;
  color: var(--g-green);
}
.sec-item h4 {
  font-weight: 700;
  font-size: 0.9375rm;
  margin-bottom: 0.5334em;
}
.sec-item p {
  font-size: 0.8em;
  color: var(--text-sub);
  line-height: 1.7;
}

/* Articles Section */
.articles-sec {
  background: var(--bg);
  border-top: 1px solid var(--border-light);
}

.articles-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.articles-grid:first-child {
  margin-top: 0;
}
@media screen and (min-width: 480px) {
  .articles-grid {
    --col: 2;
    display: grid;
    grid-template-columns: repeat(var(--col), 1fr);
  }
}
@media screen and (min-width: 768px) {
  .articles-grid {
    --col: 4;
  }
}

.article-card {
  container-type: inline-size;
}
.article-card > a {
  display: block;
  position: relative;
  height: 100%;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1em;
  overflow: hidden;
}
.article-card > a:hover,
.article-card > a:focus {
  --title-color: var(--g-blue);
  transform: translateY(-0.25em);
  box-shadow: 0 0.75em 2.5em rgba(0, 0, 0, 0.06);
  border-color: var(--border-light);
}
@media screen and (min-width: 480px) {
  .article-card > a {
    font-size: min(16px, 5.78cqi);
  }
}

.ac-thumb {
  aspect-ratio: 16/9;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ac-thumb:has(i) {
  background: linear-gradient(135deg, #4285f4, #8ab4f8);
}
.ac-thumb:has(.ph-magic-wand) {
  background: linear-gradient(135deg, #9b72cb, #c5a4e8);
}
.ac-thumb:has(.ph-database) {
  background: linear-gradient(135deg, #34a853, #81c995);
}
.ac-thumb:has(.ph-shield-check) {
  background: linear-gradient(135deg, #ea4335, #f28b82);
}
.ac-thumb i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.8);
}
.ac-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ac-content {
  padding: 1.25em;
}

.ac-date {
  font-size: 0.75em;
  color: var(--text-dim);
  margin-bottom: 0.667em;
  display: flex;
  align-items: center;
  gap: 0.3334em;
}

.ac-title {
  --title-color: inherit;
  color: var(--title-color);
  font-weight: 700;
  font-size: 0.9375em;
  line-height: 1.6;
  transition: color 0.3s;
}

.ac-category {
  position: absolute;
  top: 1.2em;
  left: 1.2em;
  z-index: 1;
  max-width: calc(100% - 2.4em);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 2.4;
  background: #fff;
  border-radius: 1.2em;
  padding: 0 1em;
  font-weight: 700;
  font-size: 0.625em;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px;
}

/* Contact */
.contact-sec {
  background: #1a1a2e; /* Dark for contrast */
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-sec .sec-label {
  color: #8ab4f8;
}
.contact-sec .sec-title {
  color: #fff;
}
.contact-sec .sec-desc {
  color: #bdc1c6;
}
@media screen and (min-width: 768px) {
  .contact-sec .sec-label,
  .contact-sec .sec-title,
  .contact-sec .sec-desc {
    width: auto;
    text-align: center;
  }
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .contact-wrapper {
    gap: 5rem;
  }
}

.contact-lead p {
  color: #bdc1c6;
  line-height: 1.9;
  margin-top: 1.5em;
}
.contact-lead p strong {
  color: #fff;
  font-weight: 700;
}

.contact-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: fit-content;
  margin: 2.25rem auto 0;
  padding-left: 0;
}
.contact-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.8em;
  font-size: 0.9375em;
  color: #e8eaed;
  line-height: 1.6;
}
.contact-benefits li i {
  font-size: 1.2667em;
  color: #8ab4f8;
  margin-top: 0.1053em;
}

.contact-form {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  color: var(--text);
  box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .contact-form {
    width: 45rem;
    border-radius: 1.5rem;
    margin: 0 auto;
    padding: 2.5rem;
  }
}

.form-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.form-sub {
  font-size: 0.8rem;
  color: var(--text-sub);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25em;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-label .req {
  color: var(--g-red);
  font-size: 0.7rem;
  margin-left: 4px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text);
  background: #f8f9fa;
  transition: all 0.2s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  background: #fff;
  border-color: var(--g-blue);
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}

.form-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-sub);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.form-check:hover {
  background: #f1f3f4;
}

.form-check:has(input:checked) {
  border-color: var(--g-blue);
  background: rgba(66, 133, 244, 0.08);
  color: var(--g-blue);
  font-weight: 600;
}

.form-check input {
  display: none;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--text);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-submit:hover {
  background: #3c4043;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.form-note {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 16px;
  text-align: center;
  line-height: 1.6;
}

.site-footer {
  margin-top: 4rem;
  background: #1a1a2e;
  padding: 2.5rem var(--site-padding);
  text-align: center;
  font-size: 0.75rem;
  color: #5f6368;
  border-top: 1px solid #3c4043;
}
.home .site-footer {
  margin-top: 0;
}

.footer-company-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.footer-company-address {
  width: fit-content;
  margin: 0 auto 1rem;
  font-size: 0.8rem;
}

.footer-company-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5em 1em;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-company-list > li {
  transition: color 0.3s;
}
.footer-company-list > li:hover, .footer-company-list > li:focus-within {
  color: #fff;
}

.footer-company-link {
  color: inherit;
  text-decoration: none;
}

.copyright {
  margin-top: 2.5rem;
}

/* pagination */
.navigation {
  margin: 4rem 0 3rem;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5em;
}
.pagination .nav-links .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3em;
  height: 3em;
  box-shadow: 0 0 1px 1px var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}
.pagination .nav-links .page-numbers:hover, .pagination .nav-links .page-numbers:focus {
  background: var(--surface);
}
.pagination .nav-links .page-numbers.current {
  background: var(--g-blue);
  color: #fff;
}

/* post */
.post-header {
  position: relative;
  overflow: hidden;
  padding: 4rem var(--site-padding) 5rem;
  background: oklch(12.9% 0.042 264.695);
}
.post-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(to top, oklch(0.129 0.042 264.695) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
}
.post-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: oklab(0 0 0/0.4);
}

.post-header-inner {
  position: relative;
  z-index: 10;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--site-padding);
  color: #fff;
}

.post-title {
  margin: 0 0 0.667em;
  line-height: 1.2;
  font-weight: 700;
  font-size: 1.875rem;
  filter: drop-shadow(rgba(0, 0, 0, 0.12) 0 0.0625em 0.0625em);
}
@media screen and (min-width: 768px) {
  .post-title {
    font-size: 3rem;
  }
}

.post-hedaer-meta {
  display: flex;
  gap: 1em;
  font-weight: 600;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5em;
  list-style: none;
  margin: 0 0 2em;
  padding: 0;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.breadcrumb-item i {
  font-size: 0.625em;
}
.breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875em;
}
.breadcrumb-item a:hover {
  text-decoration: underline;
}

.post-wrapper {
  max-width: 1236px;
  margin: 3rem auto;
  padding: 0 var(--site-padding);
  opacity: 0;
  filter: blur(0.5em);
  transition: 0.5s ease;
  transition-property: opacity, filter;
}
.no-js .post-wrapper, .post-wrapper.in-view {
  opacity: 1;
  filter: blur(0);
}
.no-js .post-wrapper {
  transition: none;
}
@media screen and (min-width: 768px) {
  .post-wrapper {
    display: grid;
    grid-template-areas: "share content sidebar";
    grid-template-columns: 1fr 43.125rem 16.75rem;
    align-items: start;
    gap: 3rem;
  }
}

.post-share,
.post-sidebar {
  grid-area: share;
}
@media screen and (min-width: 768px) {
  .post-share,
  .post-sidebar {
    position: sticky;
    top: 5rem;
  }
}
@media screen and (min-width: 601px) {
  .post-share,
  .post-sidebar {
    top: calc(5rem + var(--admin-bar-height, 0px));
  }
}
@media screen and (min-width: 783px) {
  .post-share,
  .post-sidebar {
    top: calc(5rem + var(--admin-bar-height, 0px));
  }
}

.post-share {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .post-share {
    width: fit-content;
    margin-top: 0;
  }
}

.post-share-list {
  display: flex;
  justify-content: center;
  gap: 0.5em;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .post-share-list {
    flex-direction: column;
    gap: 1em;
    justify-content: flex-start;
  }
}

.post-share-item-divider {
  margin: 0.5em 0;
  border-top: 1px solid oklch(0.929 0.013 255.508);
}

.post-share-link {
  --color: oklch(0.704 0.04 256.788);
  --border-color: oklch(0.929 0.013 255.508);
  --hover-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background: #fff;
  color: var(--color);
  text-decoration: none;
  transition: all 0.3s;
}
.post-share-link:hover, .post-share-link:focus {
  --border-color: var(--hover-color);
  --color: var(--hover-color);
}
.post-share-link[href*="facebook.com"] {
  --hover-color: #1877f2;
}
.post-share-link[href*="linkedin.com"] {
  --hover-color: #0a66c2;
}
.post-share-link i {
  font-size: 1.5em;
}

#shareButton {
  --hover-color: var(--orange);
}

.post-content {
  grid-area: content;
  color: var(--post-text);
}
:where(.post-content) h2 {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-bottom: 1px solid #f1f5f9;
  align-items: center;
  gap: 0.5em;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  scroll-margin-top: 1em;
  font-size: 1.5rem;
  font-weight: 700;
}
:where(.post-content) h2::before {
  content: "";
  background-color: #4f46e5;
  border-radius: 9999px;
  width: 0.25em;
  height: 88.889%;
  display: block;
}
:where(.post-content) p {
  margin-bottom: 2rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  :where(.post-content) p {
    font-size: 1.125rem;
    line-height: 1.8;
  }
}

.post-sidebar {
  display: flex;
  grid-area: sidebar;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .post-sidebar {
    margin-top: 0;
  }
}

.widget {
  margin: 0;
  padding: 1.5rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0 0 1px oklch(0.968 0.007 247.896) inset, 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.06);
}

.widget-title {
  display: flex;
  align-items: center;
  gap: 0.667em;
  margin: 0 0 1.334em;
  color: oklch(0.704 0.04 256.788);
  font-size: 0.75em;
}
.widget-title i {
  font-size: 1.334em;
}

#tocWidget {
  display: none;
}
#tocWidget.active {
  display: block;
}
@media screen and (max-width: 767px) {
  #tocWidget {
    position: fixed;
    top: 4.5rem;
    right: 0;
    z-index: 100;
    padding: 1rem;
    border-radius: 1rem 0 0 1rem;
    transform: translateX(100%);
    transition: transform 0.3s;
  }
  #tocWidget.is-open {
    transform: translateX(0);
  }
  #tocWidget .ph {
    position: absolute;
    left: 1px;
    padding: 0.25em;
    border-radius: 0.25em 0 0 0.25em;
    background: #fff;
    transform: translateX(-100%);
    font-size: 1.75em;
    border: solid oklch(0.968 0.007 247.896);
    border-width: 1px 0 1px 1px;
    cursor: pointer;
  }
}

.toc-list {
  display: flex;
  list-style: none;
  flex-direction: column;
  gap: 0.25em;
  margin: 0;
  padding: 0;
}
.toc-list a {
  display: block;
  line-height: 1.4286;
  padding: 0.4286em 0.851743em;
  color: var(--post-text);
  font-weight: 700;
  font-size: 0.875em;
  text-decoration: none;
  transition: 0.2s;
  transition-property: box-shadow, color;
}
.toc-list a:hover, .toc-list a:focus {
  box-shadow: 0.125em 0 0 oklch(0.932 0.032 255.585) inset;
  color: var(--blue);
}

.related-post-list {
  display: flex;
  list-style: none;
  flex-direction: column;
  gap: 1em;
  margin: 0;
  padding: 0;
  font-weight: 700;
}

.related-post > a {
  --color: var(--text);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1em;
  color: inherit;
  text-decoration: none;
}
.related-post > a:hover, .related-post > a:focus {
  --color: var(--blue);
}

.related-post-thumb {
  width: 4em;
  aspect-ratio: 1/1;
  border-radius: 12.5%;
  overflow: hidden;
}
.related-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-post-title {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.375;
  transition: color 0.3s;
  color: var(--color);
  font-size: 0.875em;
  margin-bottom: 0.286em;
}

.related-post-date {
  font-size: 0.6875em;
  color: var(--text-dim);
  margin-bottom: 0;
}

.cta-box {
  margin-top: 4rem;
  padding: 1rem;
  border-radius: 1rem;
  background: linear-gradient(to right, oklch(0.546 0.245 262.881) 0%, oklch(0.511 0.262 276.966) 100%);
  color: #fff;
}
.cta-box-title {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  text-align: center;
}
.cta-box-description {
  width: fit-content;
  margin: 0 auto 2rem;
  text-align: center;
}
.cta-box-button {
  display: block;
  margin: 0 auto;
  padding: 1rem 2rem;
  line-height: 1.4286;
  border-radius: 3em;
  background: #fff;
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0 auto;
  transition: scale 0.2s;
  text-align: center;
  text-decoration: none;
}
.cta-box-button:hover, .cta-box-button:focus {
  scale: 1.05;
}
@media screen and (min-width: 768px) {
  .cta-box {
    padding: 3rem;
    border-radius: 1.5rem;
  }
  .cta-box-title {
    font-size: 1.875rem;
  }
  .cta-box-description {
    width: 24em;
    word-break: auto-phrase;
    text-align: inherit;
  }
  .cta-box-button {
    width: fit-content;
  }
}

.button-back i {
  transition: inherit;
  transition-property: transform;
}
.button-back:hover i, .button-back:focus i {
  transform: translateX(-0.25em);
}
@media screen and (min-width: 768px) {
  .post-sidebar .button-back {
    width: 100%;
  }
}

/*** Wordpress Native Classes ***/
.wp-caption {
  max-width: 100%;
}

.alignleft,
.alignright,
.aligncenter {
  display: block;
  margin: 1em auto;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .alignleft {
    float: left;
    margin: 0 1em 0 0;
  }
}

@media screen and (min-width: 768px) {
  .alignright {
    float: right;
    margin: 0 0 0 1em;
  }
}

.aligncenter {
  clear: both;
}

.alignnone {
  clear: both;
  vertical-align: baseline;
}

.gallery {
  --col: 1;
  display: grid;
  grid-template-columns: repeat(--col, 1fr);
  clear: both;
  gap: 0.5em;
  margin: 1.5em auto;
}

.gallery-columns-2 {
  --col: 2;
}

.gallery-columns-3 {
  --col: 3;
}

.gallery-columns-4 {
  --col: 4;
}

.gallery-columns-5 {
  --col: 5;
}

.gallery-columns-6 {
  --col: 6;
}

.gallery-columns-7 {
  --col: 7;
}

.gallery-columns-8 {
  --col: 8;
}

.gallery-columns-9 {
  --col: 9;
}

/* No Posts */
.no-posts {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--white);
  box-shadow: 0 0 0 1px oklch(0.968 0.007 247.896) inset, 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.06);
  text-align: center;
}
.no-posts .button-back {
  margin-top: 2rem;
}

.no-posts-title {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .no-posts-title {
    font-size: 1.5rem;
  }
}
