
/***************************/
/*** BROWSER STYLE RESET ***/
/***************************/
.tk *:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
.tk *,
.tk *::before,
.tk *::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
.tk a, button {
  cursor: revert;
}

/* For images to not be able to exceed their container */
.tk img {
  max-inline-size: 100%;
  max-block-size: 100%;
  user-select: none;
  pointer-events: none;
}

/* Remove spacing between cells in tables */
.tk table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
.tk input, textarea {
  -webkit-user-select: auto;
}

/* Revert the 'white-space' property for textarea elements on Safari */
.tk textarea {
  white-space: revert;
}

/* Minimum style to allow to style meter element */
.tk meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* Preformatted text - use only for this feature */
.tk :where(pre) {
  all: revert;
}

/* Reset default text opacity of input placeholder */
.tk ::placeholder {
  color: unset;
}

/* Remove default dot (•) sign */
.tk ::marker {
  content: initial;
}

/* Fix the feature of 'hidden' attribute */
.tk :where([hidden]) {
  display: none;
}

/* Revert for bug in Chromium browsers */
.tk :where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* Apply back the draggable feature - exists only in Chromium and Safari */
.tk :where([draggable="true"]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
.tk :where(dialog:modal) {
  all: revert;
}

/***************/
/*** GENERAL ***/
/***************/

html {
  overflow-x: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

body {
  margin: 0;
  padding: 0;
}

.tk {
  font-family: "Genesis Sans Text", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: normal;
  font-size: 14px !important;
}

/*****************/
/*** SECTION 1 ***/
/*****************/
  .section-1 {
    padding: 50px 40px;
    background-color: #f9f9f9;
    font-family: "Genesis Sans Text", sans-serif;
  }

  .careers-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .careers-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: "Genesis Sans Head", sans-serif;
  }

  .careers-header p {
    font-size: 14px;
    color: #555;
    font-weight: 300;
  }

  .careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .career-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
  }


  .career-card img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
    max-width: 120px;
  }

  .career-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
  }

  .career-card p {
    font-family: "Genesis Sans Head", sans-serif;
    font-size: 12px;
    font-weight: 200;
    color: #555;
    line-height: 1.4;
  }


/*****************/
/*** OVERRIDE ***/
/*****************/

.entry-title{
  display: none;
}
.post-content {
  margin-bottom: 0!important;
  padding-top: 0!important;
}