/*
 * Index-inspired Jekyll Blog Theme
 * Fixed sidebar with clean minimal design
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --bg: #f5f6f7;
  --sidebar-bg: #f5f6f7;
  --text: #323d47;
  --text-muted: #6c7a89;
  --accent: #5b9aa9;
  --accent-hover: #4a8999;
  --border: #e1e5e8;
  --white: #ffffff;
  --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --sidebar-width: 280px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* Layout */
.layout {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--sidebar-width);
  height: 100vh;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  background: var(--sidebar-bg);
  z-index: 100;
  overflow-y: auto;
}

.sidebar__title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.sidebar__title a {
  color: var(--text);
}

.sidebar__title a:hover {
  color: var(--accent);
}

.sidebar__tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Navigation */
.nav {
  margin-bottom: 30px;
}

.nav__list {
  list-style: none;
}

.nav__item {
  margin-bottom: 8px;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  display: inline-block;
  padding: 2px 0;
}

.nav__link:hover,
.nav__link.active {
  color: var(--accent);
}

/* Posts Menu (in sidebar) */
.posts-menu {
  margin-bottom: auto;
}

.posts-menu__title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.posts-menu__list {
  list-style: none;
}

.posts-menu__item {
  margin-bottom: 6px;
}

.posts-menu__link {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.posts-menu__link:hover {
  color: var(--accent);
}

/* Social Icons */
.socials {
  display: flex;
  gap: 8px;
  margin-top: 30px;
  margin-bottom: 20px;
  list-style: none;
}

.socials__link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.socials__link:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.socials__link svg {
  width: 16px;
  height: 16px;
  fill: var(--text-muted);
  transition: fill 0.2s ease;
}

.socials__link:hover svg {
  fill: var(--white);
}

/* Footer */
.sidebar__footer {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 20px;
}

.sidebar__footer a {
  color: var(--text-muted);
  margin-left: 10px;
}

.sidebar__footer a:hover {
  color: var(--accent);
}

/* Main Content */
.main {
  margin-left: var(--sidebar-width);
  flex: 1;
  padding: 50px 60px;
  max-width: 900px;
}

/* Search */
.search-container {
  margin-bottom: 40px;
}

.search-input {
  width: 100%;
  font-family: var(--font-main);
  font-size: 1rem;
  padding: 14px 18px;
  padding-left: 48px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236c7a89'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 16px center;
  background-size: 20px;
}

.search-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91, 154, 169, 0.15);
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-results-info {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: none;
}

.search-results-info.visible {
  display: block;
}

/* Filters */
.filters {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter-select {
  font-family: var(--font-main);
  font-size: 0.9rem;
  padding: 8px 32px 8px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236c7a89'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
}

.filter-select:focus {
  outline: none;
  border-color: var(--accent);
}

.filter-clear {
  font-family: var(--font-main);
  font-size: 0.85rem;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.filter-clear:hover {
  background: rgba(91, 154, 169, 0.1);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pagination__link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pagination__link.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.pagination__link.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.pagination__ellipsis {
  color: var(--text-muted);
  padding: 0 4px;
}

/* Tag Cloud */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.tag-cloud__item {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tag-cloud__item:hover,
.tag-cloud__item.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(91, 154, 169, 0.1);
}

.tag-cloud__item .count {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 4px;
}

/* Archive header */
.archive-header {
  margin-bottom: 30px;
}

.archive-header__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.archive-header__count {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* No results */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.no-results__icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

.no-results__text {
  font-size: 1.1rem;
}

/* Post List */
.post-list {
  list-style: none;
}

.post-list__item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.post-list__item:last-child {
  border-bottom: none;
}

.post-list__date {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.post-list__title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
}

.post-list__title a {
  color: var(--text);
}

.post-list__title a:hover {
  color: var(--accent);
}

.post-list__excerpt {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.post-list__tags {
  margin-top: 15px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(91, 154, 169, 0.1);
  padding: 4px 10px;
  border-radius: 3px;
}

/* Article Page */
.article {
  max-width: 680px;
}

.article__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 40px;
  transition: color 0.2s ease;
}

.article__back:hover {
  color: var(--accent);
}

.article__back svg {
  width: 16px;
  height: 16px;
}

.article__header {
  margin-bottom: 40px;
}

.article__date {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

.article__title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

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

/* Article Content */
.article__content {
  font-size: 1rem;
  line-height: 1.8;
}

.article__content p {
  margin-bottom: 1.5rem;
}

.article__content h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.article__content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article__content ul,
.article__content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article__content li {
  margin-bottom: 0.5rem;
}

.article__content blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-muted);
}

.article__content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article__content a:hover {
  text-decoration: none;
}

/* Code */
code {
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 0.9em;
  background: rgba(0, 0, 0, 0.05);
  padding: 2px 6px;
  border-radius: 3px;
}

pre {
  background: #1e2530;
  color: #e6edf3;
  padding: 20px 24px;
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 6px;
  font-size: 0.875rem;
  line-height: 1.6;
}

pre code {
  background: none;
  padding: 0;
  font-size: inherit;
  color: inherit;
}

/* About Page */
.about {
  max-width: 700px;
}

.about__intro {
  margin-bottom: 50px;
}

.about__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.about__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 35px;
}

.about__image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 50px;
}

.about__content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.about__content h2:first-child {
  margin-top: 0;
}

.about__content p {
  margin-bottom: 1.25rem;
  color: var(--text);
  line-height: 1.8;
  font-size: 1rem;
}

.about__content ul {
  margin-bottom: 1.5rem;
  padding-left: 0;
  list-style: none;
}

.about__content li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
  line-height: 1.7;
  color: var(--text-muted);
}

.about__content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.about__content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about__content a:hover {
  text-decoration: none;
}

/* CTA Button */
.button {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-top: 10px;
}

.button:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  text-decoration: none;
}

.button--large {
  padding: 16px 32px;
  font-size: 1rem;
}

/* Legacy page content styles */
.page__content {
  max-width: 680px;
}

.page__content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.page__content h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page__content p {
  margin-bottom: 1.25rem;
  color: var(--text);
  line-height: 1.8;
}

.page__content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.page__content li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .about__title {
    font-size: 2rem;
  }

  .about__content h2 {
    font-size: 1.3rem;
  }
}

/* Contact Page */
.contact {
  max-width: 560px;
}

.contact__header {
  margin-bottom: 40px;
}

.contact__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.contact__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact__content {
  display: grid;
  gap: 50px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-main);
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91, 154, 169, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-submit {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.form-submit:active {
  transform: translateY(0);
}

/* Contact Info */
.contact-info {
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.contact-info__title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.contact-info__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 18px;
  height: 18px;
  fill: var(--text-muted);
}

.contact-info__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info__label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact-info__value {
  font-size: 0.95rem;
  color: var(--text);
}

.contact-info__value a {
  color: var(--accent);
  text-decoration: none;
}

.contact-info__value a:hover {
  text-decoration: underline;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 200;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--text);
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

/* Responsive */
@media (max-width: 900px) {
  :root {
    --sidebar-width: 240px;
  }

  .main {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    width: 280px;
    background: var(--white);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .main {
    margin-left: 0;
    padding: 80px 24px 40px;
  }

  .article__title,
  .page__content h1 {
    font-size: 1.75rem;
  }

  .post-list__title {
    font-size: 1.25rem;
  }
}

/* Overlay for mobile */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 50;
}

.overlay.active {
  display: block;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.project-card {
  position: relative;
  height: 280px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--border);
}

.project-card__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.75) 100%
  );
  opacity: 1;
  transition: opacity 0.3s ease;
}

.project-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

.project-card__title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
  transition: font-weight 0.3s ease, text-shadow 0.3s ease, letter-spacing 0.3s ease;
}

.project-card__subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease;
}

.project-card:hover .project-card__image {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.project-card:hover .project-card__overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.project-card:hover .project-card__title {
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.01em;
}

.project-card:hover .project-card__subtitle {
  color: rgba(255, 255, 255, 0.95);
}

/* Projects page header */
.projects-header {
  margin-bottom: 40px;
}

.projects-header__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.projects-header__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .project-card {
    height: 220px;
  }

  .project-card__content {
    padding: 20px;
  }

  .project-card__title {
    font-size: 1.1rem;
  }
}

/* Thank You Page */
.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  padding: 60px 20px;
}

.thank-you__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  animation: scaleIn 0.5s ease-out;
}

.thank-you__icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.thank-you__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.5s ease-out 0.2s both;
}

.thank-you__text {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 400px;
  line-height: 1.6;
  margin-bottom: 30px;
  animation: fadeInUp 0.5s ease-out 0.3s both;
}

.thank-you__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--text-primary);
  color: var(--bg-primary);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  animation: fadeInUp 0.5s ease-out 0.4s both;
}

.thank-you__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .thank-you__title {
    font-size: 2rem;
  }

  .thank-you__icon {
    width: 64px;
    height: 64px;
  }

  .thank-you__icon svg {
    width: 32px;
    height: 32px;
  }
}
