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

/* =========================================================
   WHITEPRESS / HUBSPOT TAILWIND-LIKE MVP
   ========================================================= */

/* =========================================================
   RESET
   ========================================================= */

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  font-family: 'Poppins', sans-serif;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: 'Poppins', sans-serif;
}

/* =========================================================
   BRAND TOKENS
   ========================================================= */

:root {
  --wp-dark: #01070C;
  --wp-black: #000000;
  --wp-white: #FFFFFF;
  --wp-blue: #3C41B1;
  --wp-blue-dark: #252A86;
  --wp-light: #F5F7FB;
  --wp-muted: #A9B0C3;
  --wp-border: rgba(255, 255, 255, 0.18);
  --wp-card: rgba(255, 255, 255, 0.08);
  --wp-card-dark: rgba(1, 7, 12, 0.72);
  --wp-gradient-blue: linear-gradient(135deg, #3C41B1 0%, #6E72FF 100%);
  --wp-gradient-dark: linear-gradient(135deg, rgba(60, 65, 177, 0.28) 0%, rgba(1, 7, 12, 0.96) 100%);
}

/* =========================================================
   CONTAINERS
   ========================================================= */

.wp-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.wp-section {
  position: relative;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

/* =========================================================
   TYPOGRAPHY - DESKTOP
   ========================================================= */

.h1-bold {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
}

.h1-regular {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 60px;
}

.h2-bold {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
}

.h2-regular {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
}

.h3-bold {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
}

.h3-regular {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
}

.h4-bold {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}

.h4-regular {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
}

.text-l-bold {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 35px;
}

.text-l {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 35px;
}

.text-r-bold {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
}

.text-r {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.text-s-bold {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 29px;
}

.text-s {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
}

.text-es-bold {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}

.text-es {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

/* Aliasy bliższe Tailwindowi */

.text-xs {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.text-sm {
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
}

.text-base {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.text-lg {
  font-size: 22px;
  font-weight: 400;
  line-height: 35px;
}

.font-regular {
  font-weight: 400;
}

.font-bold {
  font-weight: 700;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* =========================================================
   COLORS
   ========================================================= */

.bg-dark {
  background: var(--wp-dark);
}

.bg-black {
  background: var(--wp-black);
}

.bg-white {
  background: var(--wp-white);
}

.bg-light {
  background: var(--wp-light);
}

.bg-blue {
  background: var(--wp-blue);
}

.bg-gradient-blue {
  background: var(--wp-gradient-blue);
}

.bg-gradient-dark {
  background: var(--wp-gradient-dark);
}

.text-white {
  color: var(--wp-white);
}

.text-dark {
  color: var(--wp-dark);
}

.text-black {
  color: var(--wp-black);
}

.text-blue {
  color: var(--wp-blue);
}

.text-muted {
  color: var(--wp-muted);
}

/* =========================================================
   DISPLAY / POSITION
   ========================================================= */

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.overflow-hidden {
  overflow: hidden;
}

/* =========================================================
   FLEX / GRID
   ========================================================= */

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* =========================================================
   SPACING UTILITIES
   ========================================================= */

.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.gap-40 {
  gap: 40px;
}

.gap-48 {
  gap: 48px;
}

.p-16 {
  padding: 16px;
}

.p-20 {
  padding: 20px;
}

.p-24 {
  padding: 24px;
}

.p-32 {
  padding: 32px;
}

.p-40 {
  padding: 40px;
}

.pt-0 {
  padding-top: 0;
}

.pt-40 {
  padding-top: 40px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-80 {
  padding-bottom: 80px;
}

.mt-0 {
  margin-top: 0;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-56 {
  margin-top: 56px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-64 {
  margin-top: 64px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   WIDTH / HEIGHT
   ========================================================= */

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.max-w-1200 {
  max-width: 1200px;
}

.max-w-900 {
  max-width: 900px;
}

.max-w-760 {
  max-width: 760px;
}

.max-w-640 {
  max-width: 640px;
}

/* =========================================================
   BORDER / RADIUS
   ========================================================= */

.rounded-12 {
  border-radius: 12px;
}

.rounded-16 {
  border-radius: 16px;
}

.rounded-20 {
  border-radius: 20px;
}

.rounded-24 {
  border-radius: 24px;
}

.rounded-full {
  border-radius: 999px;
}

.border {
  border: 1px solid var(--wp-border);
}

.border-white-soft {
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.border-blue {
  border: 1px solid var(--wp-blue);
}

/* =========================================================
   IMAGES
   ========================================================= */

.img-fluid {
  width: 100%;
  height: auto;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =========================================================
   CARDS / BOXES
   ========================================================= */

.card {
  position: relative;
  width: 100%;
  padding: 32px;
  border-radius: 24px;
  background: var(--wp-card);
  border: 1px solid var(--wp-border);
  overflow: hidden;
}

.card-dark {
  background: var(--wp-card-dark);
  border: 1px solid var(--wp-border);
}

.card-gradient {
  background:
    linear-gradient(135deg, rgba(60, 65, 177, 0.24) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.card-blur {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.shadow-soft {
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}
.shadow-sm {
  box-shadow:
    0 2px 8px rgba(16, 24, 40, 0.08),
    0 1px 3px rgba(16, 24, 40, 0.06);
}

.shadow-md {
  box-shadow:
    0 10px 30px rgba(16, 24, 40, 0.14),
    0 4px 12px rgba(16, 24, 40, 0.08);
}

/* =========================================================
   BADGES
   ========================================================= */

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 36px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(60, 65, 177, 0.14);
  border: 1px solid rgba(60, 65, 177, 0.4);
  color: var(--wp-blue);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 52px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 29px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--wp-blue);
  border-color: var(--wp-blue);
  color: var(--wp-white);
}

.btn-primary:hover {
  background: var(--wp-blue-dark);
  border-color: var(--wp-blue-dark);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--wp-white);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.56);
}

.btn-light {
  background: var(--wp-white);
  border-color: var(--wp-white);
  color: var(--wp-dark);
}

/* =========================================================
   SIMPLE DECORATIONS
   ========================================================= */

.gradient-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(60, 65, 177, 0.34);
  filter: blur(90px);
  pointer-events: none;
}

.gradient-orb-top-right {
  top: -120px;
  right: -120px;
}

.gradient-orb-bottom-left {
  bottom: -120px;
  left: -120px;
}

/* =========================================================
   TABLET + MOBILE
   ========================================================= */

@media (max-width: 992px) {
  .wp-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .wp-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .h1-bold {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
  }

  .h1-regular {
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
  }

  .h2-bold {
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
  }

  .h2-regular {
    font-size: 24px;
    font-weight: 400;
    line-height: 29px;
  }

  .h3-bold {
    font-size: 21px;
    font-weight: 700;
    line-height: 25px;
  }

  .h3-regular {
    font-size: 21px;
    font-weight: 400;
    line-height: 25px;
  }

  .h4-bold {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
  }

  .h4-regular {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
  }

  .text-l-bold {
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
  }

  .text-l {
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
  }

  .text-r-bold {
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
  }

  .text-r {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }

  .text-s-bold {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
  }

  .text-s {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }

  .text-es-bold {
    font-size: 12px;
    font-weight: 700;
    line-height: 17px;
  }

  .text-es {
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
  }

  .text-xs {
    font-size: 12px;
    line-height: 17px;
  }

  .text-sm {
    font-size: 14px;
    line-height: 20px;
  }

  .text-base {
    font-size: 16px;
    line-height: 22px;
  }

  .text-lg {
    font-size: 18px;
    line-height: 25px;
  }

  .tablet-grid-cols-1 {
    grid-template-columns: 1fr;
  }

  .tablet-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tablet-flex-col {
    flex-direction: column;
  }

  .tablet-items-start {
    align-items: flex-start;
  }

  .tablet-text-left {
    text-align: left;
  }

  .tablet-text-center {
    text-align: center;
  }

  .card {
    padding: 24px;
  }

  .btn {
    min-height: 48px;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 20px;
  }

  .badge {
    min-height: 32px;
    padding: 5px 14px;
    font-size: 12px;
    line-height: 17px;
  }

  .gradient-orb {
    width: 300px;
    height: 300px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 576px) {
  .wp-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .wp-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .mobile-grid-cols-1 {
    grid-template-columns: 1fr;
  }

  .mobile-flex-col {
    flex-direction: column;
  }

  .mobile-w-full {
    width: 100%;
  }

  .mobile-text-left {
    text-align: left;
  }

  .mobile-text-center {
    text-align: center;
  }

  .mobile-hidden {
    display: none;
  }

  .card {
    padding: 20px;
    border-radius: 20px;
  }

  .btn {
    width: 100%;
  }

  .gradient-orb {
    width: 240px;
    height: 240px;
  }
}
/* =========================================================
   EXTENDED GENERIC UTILITIES
   Reusable additions for future HubSpot modules
   ========================================================= */

/* GRID COLUMNS */
.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

/* FLEX HELPERS */
.flex-1 {
  flex: 1 1 0%;
}

.flex-none {
  flex: none;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-grow {
  flex-grow: 1;
}

/* GRID / FLEX ALIGNMENT */
.place-items-center {
  place-items: center;
}

.content-center {
  align-content: center;
}

.justify-items-center {
  justify-items: center;
}

/* ROW / COLUMN GAPS */
.row-gap-12 {
  row-gap: 12px;
}

.row-gap-16 {
  row-gap: 16px;
}

.row-gap-20 {
  row-gap: 20px;
}

.row-gap-24 {
  row-gap: 24px;
}

.row-gap-32 {
  row-gap: 32px;
}

.column-gap-12 {
  column-gap: 12px;
}

.column-gap-16 {
  column-gap: 16px;
}

.column-gap-20 {
  column-gap: 20px;
}

.column-gap-24 {
  column-gap: 24px;
}

.column-gap-32 {
  column-gap: 32px;
}

/* WIDTHS */
.w-auto {
  width: auto;
}

.w-fit {
  width: fit-content;
}

.min-w-0 {
  min-width: 0;
}

.max-w-full {
  max-width: 100%;
}

.max-w-1050 {
  max-width: 1050px;
}

.max-w-1000 {
  max-width: 1000px;
}

.max-w-800 {
  max-width: 800px;
}

/* HEIGHTS */
.h-auto {
  height: auto;
}

.min-h-0 {
  min-height: 0;
}

/* MARGINS */
.m-0 {
  margin: 0;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

/* PADDING AXIS */
.px-12 {
  padding-left: 12px;
  padding-right: 12px;
}

.px-16 {
  padding-left: 16px;
  padding-right: 16px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.px-24 {
  padding-left: 24px;
  padding-right: 24px;
}

.py-8 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.py-12 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.py-16 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-24 {
  padding-top: 24px;
  padding-bottom: 24px;
}
.px-32 {
  padding-left: 32px;
  padding-right: 32px;
}

/* OBJECT POSITION */
.object-center {
  object-position: center;
}

/* INTERACTION */
.pointer-events-none {
  pointer-events: none;
}

.cursor-pointer {
  cursor: pointer;
}

/* ACCESSIBILITY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 992px) {
  .tablet-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tablet-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tablet-grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .tablet-flex-wrap {
    flex-wrap: wrap;
  }

  .tablet-w-full {
    width: 100%;
  }

  .tablet-gap-12 {
    gap: 12px;
  }

  .tablet-gap-16 {
    gap: 16px;
  }

  .tablet-gap-20 {
    gap: 20px;
  }

  .tablet-gap-24 {
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .mobile-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-flex-wrap {
    flex-wrap: wrap;
  }

  .mobile-gap-8 {
    gap: 8px;
  }

  .mobile-gap-12 {
    gap: 12px;
  }

  .mobile-gap-16 {
    gap: 16px;
  }

  .mobile-gap-20 {
    gap: 20px;
  }

  .mobile-px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .mobile-px-16 {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* =========================================================
   GENERIC HEIGHT UTILITIES
   Reusable fixed, minimum and maximum height helpers
   ========================================================= */

/* FIXED HEIGHTS */
.h-40 {
  height: 40px;
}

.h-48 {
  height: 48px;
}

.h-56 {
  height: 56px;
}

.h-64 {
  height: 64px;
}

.h-72 {
  height: 72px;
}
.h-76 {
  height: 76px;
}

.h-80 {
  height: 80px;
}

.h-86 {
  height: 86px;
}

.h-96 {
  height: 96px;
}

.h-120 {
  height: 120px;
}

/* MIN HEIGHTS */
.min-h-40 {
  min-height: 40px;
}

.min-h-48 {
  min-height: 48px;
}

.min-h-56 {
  min-height: 56px;
}

.min-h-64 {
  min-height: 64px;
}

.min-h-72 {
  min-height: 72px;
}

.min-h-76 {
  min-height: 76px;
}

.min-h-80 {
  min-height: 80px;
}

.min-h-86 {
  min-height: 86px;
}

.min-h-96 {
  min-height: 96px;
}

.min-h-120 {
  min-height: 120px;
}

.min-h-full {
  min-height: 100%;
}

/* MAX HEIGHTS */
.max-h-40 {
  max-height: 40px;
}

.max-h-48 {
  max-height: 48px;
}

.max-h-56 {
  max-height: 56px;
}

.max-h-64 {
  max-height: 64px;
}

.max-h-72 {
  max-height: 72px;
}

.max-h-76 {
  max-height: 76px;
}

.max-h-80 {
  max-height: 80px;
}

.max-h-86 {
  max-height: 86px;
}

.max-h-96 {
  max-height: 96px;
}

.max-h-120 {
  max-height: 120px;
}

.max-h-full {
  max-height: 100%;
}
/* =========================================================
   GENERIC TYPOGRAPHY UTILITIES
   ========================================================= */

.text-12 {
  font-size: 12px;
  line-height: 16px;
}

.text-14 {
  font-size: 14px;
}

.leading-23 {
  line-height: 23px;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-1-2 {
  letter-spacing: 1.2px;
}

/* =========================================================
   GENERIC COLORS
   ========================================================= */

.text-pink {
  color: #ff1047;
}

.text-ink {
  color: #0d1117;
}

.text-ink-soft {
  color: rgba(13, 17, 23, 0.85);
}

.text-grey-dark {
  color: #2c2f3e;
}

.text-red-dark {
  color: #9f0712;
}

.text-red-muted {
  color: rgba(159, 7, 18, 0.8);
}

.text-indigo {
  color: #4046ca;
}

.bg-indigo {
  background-color: #4046ca;
}

.bg-red-soft {
  background-color: #ffefef;
}

.bg-red-icon-soft {
  background-color: rgba(159, 7, 18, 0.1);
}

.bg-indigo-soft {
  background-color: rgba(0, 83, 251, 0.26);
}

/* =========================================================
   GENERIC BORDERS
   ========================================================= */

.border-red-soft {
  border: 1px solid #ffe2e2;
}

.border-indigo-soft {
  border: 1px solid rgba(0, 83, 251, 0.64);
}

/* =========================================================
   GENERIC RADIUS
   ========================================================= */

.rounded-10 {
  border-radius: 10px;
}

/* =========================================================
   GENERIC WIDTH AND HEIGHT
   ========================================================= */

.w-24 {
  width: 24px;
}

.h-24 {
  height: 24px;
}

.w-35 {
  width: 35px;
}

.h-35 {
  height: 35px;
}

/* =========================================================
   RESPONSIVE SPACING
   ========================================================= */

@media (max-width: 992px) {
  .tablet-p-24 {
    padding: 24px;
  }
}

@media (max-width: 576px) {
  .mobile-p-16 {
    padding: 16px;
  }
}