/**
 * ==================================================
 * FOUNDATION
 * ==================================================
 */
/**
 * ==================================================
 * CSS VARIABLES
 * ==================================================
 */

:root {
  /* ==================================================
   * Brand
   * ================================================== */

  --ik-color-primary: #e11d48;
  --ik-color-primary-hover: #be123c;

  /* ==================================================
   * Text
   * ================================================== */

  --ik-color-heading: #0f2747;
  --ik-color-text: #475569;
  --ik-color-muted: #64748b;
  --ik-color-transparent: #bac2cd;

  /* ==================================================
   * Surface
   * ================================================== */

  --ik-color-background: #f8fafc;
  --ik-color-card: #ffffff;
  --ik-color-white: #ffffff;

  /* ==================================================
   * Border
   * ================================================== */

  --ik-color-border: #e2e8f0;

  /* ==================================================
   * Status
   * ================================================== */

  --ik-color-success: #16a34a;
  --ik-color-warning: #f59e0b;
  --ik-color-danger: #dc2626;

  /* ==================================================
	 * Typography
	 * ================================================== */

  --ik-font-size-xs: 14px;
  --ik-font-size-sm: 16px;
  --ik-font-size-md: 18px;
  --ik-font-size-lg: 24px;
  --ik-font-size-xl: 36px;
  --ik-font-size-2xl: 48px;

  /* ==================================================
	 * Font Weight
	 * ================================================== */

  --ik-font-weight-normal: 400;
  --ik-font-weight-medium: 500;
  --ik-font-weight-semibold: 600;
  --ik-font-weight-bold: 700;
  --ik-font-weight-extra-bold: 800;

  /* ==================================================
	 * Line Height
	 * ================================================== */

  --ik-line-height-tight: 1.2;
  --ik-line-height-normal: 1.5;
  --ik-line-height-relaxed: 1.7;

  /* ==================================================
	 * Spacing
	 * ================================================== */
  --ik-space-xs: 4px;
  --ik-space-sm: 8px;
  --ik-space-md: 16px;
  --ik-space-lg: 24px;
  --ik-space-xl: 32px;
  --ik-space-2xl: 48px;
  --ik-space-3xl: 64px;
  --ik-space-section: 15px;

  /* ==================================================
	 * Border Radius
	 * ================================================== */

  --ik-radius-sm: 8px;
  --ik-radius-md: 12px;
  --ik-radius-lg: 20px;
  --ik-radius-pill: 999px;

  /* ==================================================
	 * Shadow
	 * ================================================== */

  --ik-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --ik-shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --ik-shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.1);

  /* ==================================================
	 * Container
	 * ================================================== */

  --ik-container-width: 1280px;
  --ik-container-padding: 24px;

  --ik-section-spacing: 8px;

  /* ==================================================
 * Logo Size
 * ================================================== */

  --ik-logo-size-sm: 48px;
  --ik-logo-size-md: 64px;
  --ik-logo-size-lg: 80px;

  /* ==================================================
 * Icon Size
 * ================================================== */

  --ik-icon-size-sm: 16px;
  --ik-icon-size-md: 20px;
  --ik-icon-size-lg: 24px;

  /* ==================================================
 * Avatar Size
 * ================================================== */

  --ik-avatar-size-sm: 32px;
  --ik-avatar-size-md: 40px;
  --ik-avatar-size-lg: 48px;

  /* ==================================================
	 * Sidebar
	 * ================================================== */

  --ik-sidebar-width: 350px;
  --ik-layout-gap: 8px;

  /* ==================================================
	 * z index
	 * ================================================== */

  --ik-z-dropdown: 100;
  --ik-z-sticky: 200;
  --ik-z-modal: 1000;

  /* ==================================================
	 * header height
	 * ================================================== */
  --ik-header-height: 80px;

  /* ==================================================
	 * Transition
	 * ================================================== */

  --ik-transition: 0.2s ease;

  /* ==================================================
	 * Stack Gap
	 * ================================================== */

  --ik-stack-gap: 32px;

  /* ==================================================
	 * Grid Gap
	 * ================================================== */

  --ik-grid-gap: 8px;

  /* ==================================================
	 * Cluster Gap
	 * ================================================== */

  --ik-cluster-gap: 12px;

  /* ==================================================
	 * Flow Space
	 * ================================================== */
  --ik-flow-space: 24px;

  /* ==================================================
	 * Icon and Chevron (space, offset, padding)
	 * ================================================== */
  --ik-field-icon-offset: 16px;
  --ik-field-icon-space: 56px;
  --ik-field-chevron-space: 44px;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

  transition: var(--ik-transition);
}

::selection {
  background: var(--ik-color-primary);
  color: #fff;
}

body {
  background: var(--ik-color-background);
  color: var(--ik-color-text);

  font-size: var(--ik-font-size-sm);
  font-weight: var(--ik-font-weight-normal);
  line-height: var(--ik-line-height-normal);
  text-rendering: optimizeLegibility;

  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ik-color-heading);
  font-weight: var(--ik-font-weight-bold);
  line-height: var(--ik-line-height-tight);
}

/**
 * ==================================================
 * TYPOGRAPHY SINGLE JOB LISTING
 * ==================================================
 */

.single-job_listing h1,
.single-job_listing h2,
.single-job_listing h3 {
  color: var(--ik-color-heading);
  font-weight: var(--ik-font-weight-bold);
  line-height: var(--ik-line-height-tight);
}

.single-job_listing p {
  color: var(--ik-color-text);
  font-size: var(--ik-font-size-sm);
  line-height: var(--ik-line-height-relaxed);
  margin-bottom: 0px;
}

.single-job_listing ul,
.single-job_listing ol {
  margin-bottom: var(--ik-space-lg);
  padding-left: var(--ik-space-lg);
}

.single-job_listing li {
  margin-bottom: 0px;
  line-height: var(--ik-line-height-relaxed);
}

.single-job_listing strong {
  font-weight: var(--ik-font-weight-semibold);
}
