.elementor-13764 .elementor-element.elementor-element-5962f13{--display:flex;}.elementor-13764 .elementor-element.elementor-element-a1b3661 > .elementor-widget-container{padding:0px 0px 050px 0px;}.elementor-13764 .elementor-element.elementor-element-713ba63{--item-display:flex;--read-more-alignment:1;--grid-row-gap:35px;--grid-column-gap:30px;}.elementor-13764 .elementor-element.elementor-element-713ba63 > .elementor-widget-container{padding:0px 30px 050px 30px;}.elementor-13764 .elementor-element.elementor-element-713ba63 .elementor-post__meta-data span + span:before{content:"///";}.elementor-13764 .elementor-element.elementor-element-713ba63 .elementor-post{padding:0px 10px 0px 10px;}.elementor-13764 .elementor-element.elementor-element-713ba63 .elementor-post__text{padding:20px 20px 20px 20px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-65c4c52 *//* =========================
   NOTICES HERO REFINEMENT
   ========================= */

/* Badge becomes more "official authority" styled */
.vacancy-badge {
    background: rgba(47,128,237,.06);
    border: 1px solid rgba(47,128,237,.18);

    color: #2F80ED;

    font-weight: 600;
    letter-spacing: .2px;
}

/* MAIN HEADING (more institutional feel) */
.vacancy-hero-content h1 {
    font-weight: 800;
    letter-spacing: -0.03em;

    color: #0F172A;

    position: relative;
}

/* subtle underline glow accent */
.vacancy-hero-content h1::after {
    content: "";

    display: block;

    width: 120px;
    height: 4px;

    margin-top: 18px;

    background: linear-gradient(
        90deg,
        rgba(47,128,237,.8),
        rgba(47,128,237,.1)
    );

    border-radius: 10px;

    opacity: .8;
}

/* paragraph improved readability for official notices */
.vacancy-hero-content p {
    font-size: 17px;
    line-height: 1.85;

    color: #334155;

    max-width: 720px;
}

/* FLOATING CARDS → more “announcement system” feel */
.floating-card {
    background: #FFFFFF;

    border: 1px solid #E2E8F0;

    box-shadow:
        0 12px 30px rgba(15,23,42,.06);

    color: #0F172A;

    font-weight: 600;
}

/* stronger glow circle (more institutional aura) */
.hero-circle {
    background:
    radial-gradient(
        circle,
        rgba(47,128,237,.22),
        rgba(47,128,237,.05) 55%,
        transparent 75%
    );

    filter: blur(6px);
}

/* ICON subtle + less aggressive */
.hero-icon {
    color: rgba(47,128,237,.85);
    opacity: .9;
}

/* MOBILE polish */
@media (max-width: 900px) {

    .vacancy-hero-content h1::after {
        margin: 14px auto 0;
    }
}
.vacancy-hero {
    padding: 50px 20px;
    background: var(--bg);
    overflow: hidden;
}

.vacancy-hero-container {
    max-width: 1250px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

/* LEFT */

.vacancy-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 16px;

    background: rgba(47,128,237,.08);

    border: 1px solid rgba(47,128,237,.15);

    border-radius: 999px;

    color: var(--accent);
    font-weight: 600;
    font-size: 14px;

    margin-bottom: 24px;
}

.vacancy-badge svg {
    width: 16px;
    height: 16px;
}

.vacancy-hero-content h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.04em;

    color: var(--heading);

    margin-bottom: 22px;

    max-width: 760px;
}

.vacancy-hero-content p {
    font-size: 18px;
    line-height: 1.8;

    color: var(--text);

    max-width: 720px;
}

/* RIGHT */

.vacancy-hero-visual {
    position: relative;
    height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    width: 320px;
    height: 320px;

    border-radius: 50%;

    background:
    radial-gradient(
    circle,
    rgba(47,128,237,.18),
    rgba(47,128,237,.04) 60%,
    transparent 75%
    );

    filter: blur(5px);

    animation: pulseGlow 5s infinite ease-in-out;
}

.hero-icon {
    position: absolute;

    width: 150px;
    height: 150px;

    color: var(--accent);

    z-index: 2;
}

/* FLOATING TAGS */

.floating-card {
    position: absolute;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 16px;

    padding: 14px 18px;

    box-shadow: 0 15px 40px rgba(15,23,42,.08);

    font-weight: 600;
    color: var(--heading);

    z-index: 3;
}

.card-1 {
    top: 90px;
    left: 20px;
    animation: float1 6s infinite ease-in-out;
}

.card-2 {
    top: 80px;
    right: 20px;
    animation: float2 7s infinite ease-in-out;
}

.card-3 {
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    animation: float3 6s infinite ease-in-out;
}

/* ANIMATIONS */

@keyframes pulseGlow {

    0%,100% {
        transform: scale(1);
        opacity: .9;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes float1 {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes float2 {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(14px);
    }
}

@keyframes float3 {

    0%,100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* MOBILE */

@media (max-width: 900px) {

    .vacancy-hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .vacancy-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .vacancy-hero-content p {
        margin: auto;
    }

    /* Hide right-side visual */
    .vacancy-hero-visual {
        display: none;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f6b03f7 */.weekly-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.02em;
  margin: 30px 0 20px;
}

@media (max-width: 1024px) {
    .weekly-title {
        font-size: 28px !important;
        line-height: 1.25 !important;
    }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-a1b3661 *//* PREMIUM SEARCH CONTAINER */

.is-search-form form {

    background: rgba(255,255,255,.95) !important;

    border: 1px solid rgba(226,232,240,.9) !important;

    border-radius: 24px !important;

    padding: 12px !important;

    box-shadow:
        0 1px 2px rgba(15,23,42,.04),
        0 12px 40px rgba(15,23,42,.06),
        0 24px 60px rgba(15,23,42,.04);

    backdrop-filter: blur(12px);

    transition: all .3s ease;
}

/* PREMIUM FOCUS */

.is-search-form form:focus-within {

    border-color: rgba(47,128,237,.35) !important;

    box-shadow:
        0 0 0 5px rgba(47,128,237,.08),
        0 15px 45px rgba(47,128,237,.12),
        0 30px 70px rgba(15,23,42,.08);

    transform: translateY(-1px);
}

/* INPUT */

.is-search-input {

    background: transparent !important;

    border: none !important;

    font-size: 16px !important;

    font-weight: 500 !important;

    color: #0F172A !important;

    letter-spacing: -.01em;
}

/* PLACEHOLDER */

.is-search-input::placeholder {

    color: #94A3B8 !important;

    font-weight: 400;
}

/* BUTTON */

.is-search-submit {

    background: #2F80ED !important;

    border: none !important;

    border-radius: 16px !important;

    box-shadow:
        0 8px 20px rgba(47,128,237,.18);

    transition: all .25s ease;
}

.is-search-submit:hover {

    transform: translateY(-2px);

    box-shadow:
        0 14px 28px rgba(47,128,237,.25);
}/* IVORY SEARCH PREMIUM */

.is-search-form {
    max-width: 900px;
    margin: 0 auto;
}

.is-search-form form {
    display: flex !important;
    align-items: center;
    gap: 12px;

    background: #fff;

    padding: 12px;

    border-radius: 20px;

    border: 1px solid #E2E8F0;

    box-shadow:
        0 10px 30px rgba(15,23,42,.06);

    transition: .3s ease;
}

.is-search-form form:focus-within {
    border-color: rgba(47,128,237,.35);

    box-shadow:
        0 15px 40px rgba(47,128,237,.12),
        0 0 0 4px rgba(47,128,237,.08);
}

.is-search-input {
    border: none !important;
    background: transparent !important;

    height: 56px !important;

    padding: 0 20px !important;

    font-size: 16px !important;

    box-shadow: none !important;
}

.is-search-input:focus {
    outline: none !important;
}

.is-search-submit {
    background: #2F80ED !important;

    border: none !important;

    border-radius: 14px !important;

    height: 56px !important;

    padding: 0 28px !important;

    color: #fff !important;

    font-weight: 600 !important;

    transition: .25s ease;
}

.is-search-submit:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(47,128,237,.25);
}
/* LET SEARCH BUTTON BREATHE */

.is-search-submit {
    min-width: 140px !important;
    width: auto !important;

    padding: 0 30px !important;

    flex-shrink: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    white-space: nowrap !important;
}

/* IF BUTTON CONTAINS ICON + TEXT */
.is-search-submit span,
.is-search-submit i,
.is-search-submit svg {
    margin-right: 6px;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-346ee69 */.weekly-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.02em;
  margin: 30px 0 20px;
}/* End custom CSS */
/* Start custom CSS for posts, class: .elementor-element-713ba63 *//* GRID GAP */
.elementor-13764 .elementor-element.elementor-element-713ba63 .elementor-posts-container {
  gap: 20px;
}

/* CARD */
.elementor-13764 .elementor-element.elementor-element-713ba63 .elementor-post {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
  transition: all 0.25s ease;

  display: flex;
  flex-direction: column;
}

/* HOVER */
.elementor-13764 .elementor-element.elementor-element-713ba63 .elementor-post:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(47, 128, 237, 0.10);
  border-color: rgba(47, 128, 237, 0.20);
}

/* LINKS */
.elementor-13764 .elementor-element.elementor-element-713ba63 .elementor-post a {
  pointer-events: auto;
  text-decoration: none;
  color: inherit;
}

/* IMAGE WRAPPER */
.elementor-13764 .elementor-element.elementor-element-713ba63 .elementor-post__thumbnail {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: var(--surface);
  padding: 14px 14px 0 14px;
}

/* IMAGE */
.elementor-13764 .elementor-element.elementor-element-713ba63 .elementor-post__thumbnail img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  transition: transform 0.4s ease;
}

/* IMAGE HOVER */
.elementor-13764 .elementor-element.elementor-element-713ba63 .elementor-post:hover .elementor-post__thumbnail img {
  transform: scale(1.04);
}

/* CONTENT WRAPPER (IMPORTANT FIX) */
.elementor-13764 .elementor-element.elementor-element-713ba63 .elementor-post__text {
  padding: 14px 16px 18px;

  display: flex;
  flex-direction: column;
  gap: 8px;   /* THIS fixes alignment rhythm */
}

/* TITLE */
.elementor-13764 .elementor-element.elementor-element-713ba63 .elementor-post__title {
  margin: 0;
  padding: 0;

  font-size: 16px;
  font-weight: 600;

  color: var(--accent);
  line-height: 1.4;

  text-align: left;
}

/* EXCERPT ALIGN FIX */
.elementor-13764 .elementor-element.elementor-element-713ba63 .elementor-post__excerpt,
.elementor-13764 .elementor-element.elementor-element-713ba63 .elementor-post__content {
  margin: 0;
  padding: 0;

  font-size: 14px;
  line-height: 1.6;

  color: var(--text);

  text-align: left;
}

/* META HIDE */
.elementor-13764 .elementor-element.elementor-element-713ba63 .elementor-post__meta-data {
  display: none;
}

/* TOP DIVIDER */
.elementor-13764 .elementor-element.elementor-element-713ba63 .elementor-post::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: var(--border);
  opacity: 0.6;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5b3348a *//* MAIN CARD */
.social-update-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    padding:28px 30px;
    background:#fff;
    border:1px solid #E2E8F0;
    border-radius:22px;
    box-shadow:0 12px 30px rgba(15,23,42,.06);
    transition:.3s ease;
}

.social-update-card:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(47,128,237,.10);
}

/* LEFT */
.social-content h4{
    margin:0 0 10px;
    font-size:22px;
    font-weight:700;
    color:#0F172A;
}

.social-content p{
    margin:0;
    font-size:15px;
    line-height:1.7;
    color:#334155;
    max-width:520px;
}

/* ICON GRID */
.social-icons{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    justify-content:flex-end;
}

/* BUTTON */
.social-icons .icon{
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    border:1px solid #E2E8F0;
    background:#F8FAFC;
    color:#0F172A;
    text-decoration:none;
    transition:.25s ease;
}

/* SVG */
.social-icons .icon svg{
    width:18px;
    height:18px;
    fill:currentColor;
    display:block;
}

/* Hover */
.social-icons .icon:hover{
    transform:translateY(-2px);
    border-color:rgba(47,128,237,.25);
    box-shadow:0 10px 25px rgba(47,128,237,.10);
}

/* Brand Colors */
.facebook:hover{color:#1877F2;}
.instagram:hover{color:#E4405F;}
.threads:hover{color:#000;}
.x:hover{color:#111;}
.youtube:hover{color:#FF0000;}
.tiktok:hover{color:#000;}

/* Mobile */
@media(max-width:768px){

    .social-update-card{
        flex-direction:column;
        text-align:center;
        gap:25px;
    }

    .social-content p{
        margin:auto;
    }

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

}/* End custom CSS */