﻿:root {
    --logo-black: rgb(100 95 100); --dark-black:rgb(59 57 59); --primary-black:#20282d; --dark-red:hsl(356.79deg 75.1% 48.82%); --yellow:rgb(244 137 36); --light-red:rgb(223 69 57); --linear-gradient:linear-gradient(135deg,hsl(356.79deg 75.1% 48.82%),rgb(244, 137, 36));
    --color-primary: #20282D;
    --color-secondary: #1F1F25;
    --color-blue: #0b4df5;
    --color-sky: #82b440;
    --color-body: #5D666F;
    --color-heading-1: #1C2539;
    --color-title: #141416;
    --color-heading-dark: #141416;
    --transition: .3s;
    --bg-dark-1: #1E1E20;
    --color-white: #fff;
    --color-border: #DDD8F9;
    --border-width: 1px;
    --radius: 10px;
    --color-success: #3EB75E;
    --color-danger: #FF0003;
    --color-warning: #FF8F3C;
    --color-info: #1BA2DB;
    --color-facebook: #3B5997;
    --color-twitter: #1BA1F2;
    --color-youtube: #ED4141;
    --color-linkedin: #0077B5;
    --color-pinterest: #E60022;
    --color-instagram: #C231A1;
    --color-vimeo: #00ADEF;
    --color-twitch: #6441A3;
    --color-discord: #7289da;
    --p-light: 300;
    --p-regular: 400;
    --p-medium: 500;
    --p-semi-bold: 600;
    --p-bold: 700;
    --p-extra-bold: 800;
    --p-black: 900;
    --s-light: 300;
    --s-regular: 400;
    --s-medium: 500;
    --s-semi-bold: 600;
    --s-bold: 700;
    --s-extra-bold: 800;
    --s-black: 900;
    --transition: 0.3s;
    --font-primary: "Aeonik", sans-serif;
    --font-medium: "6500595b785e358dcc2a2f3a_AeonikMedium", sans-serif;
    --font-secondary: "Aeonik", sans-serif;
    --font-3: "fontawesome";
    --font-size-b1: 16px;
    --font-size-b2: 15px;
    --font-size-b3: 22px;
    --line-height-b1: 26px;
    --line-height-b2: 26px;
    --line-height-b3: 1.7;
    --h1: 60px;
    --h2: 48px;
    --h3: 30px;
    --h4: 26px;
    --h5: 24px;
    --h6: 18px;
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    font-size: 10px;
    overflow: hidden;
    overflow-y: auto;
    scroll-behavior: auto !important;
}

body {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Aeonik", sans-serif;
    color: var(--color-body);
    font-weight: var(--p-regular);
    position: relative;
    /* overflow-x: hidden; */
    margin: 0;
    background: #fff;
}
/* SECTION */
.axp-news-section {
  padding: 90px 0 130px; /* ⬅ extra bottom space */
}

/* HEADER */
.axp-news-header {
  text-align: center;
  margin-bottom: 40px;
}

.axp-news-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #1c2539;
}

.axp-news-header p {
  color: #6b7280;
  max-width: 620px;
  margin: 10px auto 0;
}

/* TABS – SIMPLE, NEWS STYLE */
.axp-news-tabs {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 45px;
  border-bottom: 1px solid #e5e7eb;
}

.news-tab {
  background: none;
  border: none;
  padding: 12px 0;
  font-weight: 600;
  color: #6b7280;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
}

.news-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0%;
  height: 3px;
  background: linear-gradient(
    135deg,
    var(--yellow),
    var(--light-red)
  );
  transition: width 0.3s ease;
}

.news-tab.active,
.news-tab:hover {
  color: #1c2539;
}

.news-tab.active::after {
  width: 100%;
}

/* NEWS CARD */
.axp-news-card {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.axp-news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.14);
}
.axp-news-grid {
  margin-bottom: 40px;
}


/* CATEGORY */
.news-category {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--yellow);
  letter-spacing: 1px;
}

/* TITLE */
.axp-news-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 12px 0 10px;
  color: #1c2539;
}

/* EXCERPT */
.news-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 18px;
}

/* META */
.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.news-meta span {
  color: #9ca3af;
}

.news-meta a {
  font-weight: 600;
  color: var(--yellow);
  text-decoration: none;
}

.news-meta a:hover {
  color: var(--light-red);
}

/* ANIMATION */
.axp-news-item {
  margin-bottom: 30px;
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.axp-news-tabs {
    display: flex;
    gap: 30px;
    padding-top: 60px;
}

.news-image {
  margin-bottom: 18px;
}

.news-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.news-top-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.news-category {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--yellow);
}

.news-date {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
}
.worker-loader {
  width: 80px;
  margin: 40px auto;
}

.worker-loader img {
  width: 100%;
  transform-origin: bottom center;
  animation: hammer 1.2s infinite ease-in-out;
}

@keyframes hammer {
  0%   { transform: rotate(0deg) translateY(0); }
  25%  { transform: rotate(-8deg) translateY(2px); }
  50%  { transform: rotate(0deg) translateY(0); }
  75%  { transform: rotate(6deg) translateY(1px); }
  100% { transform: rotate(0deg) translateY(0); }
}
.worker-loader {
  width: 80px;
  margin: 40px auto;
}

.worker-loader img {
  width: 100%;
  transform-origin: bottom center;
  animation: hammer 1.2s infinite ease-in-out;
}

@keyframes hammer {
  0%   { transform: rotate(0deg) translateY(0); }
  25%  { transform: rotate(-8deg) translateY(2px); }
  50%  { transform: rotate(0deg) translateY(0); }
  75%  { transform: rotate(6deg) translateY(1px); }
  100% { transform: rotate(0deg) translateY(0); }
}
.second-row-news{
  padding-top: 50px;
}


/* Pagination Wrapper */
.rts-pagination-wrapper {
    display: flex;
    justify-content: center;
}

/* Pagination List */
.rts-pagination {
    display: flex;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Pagination Item */
.rts-pagination li a {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 1px solid #e6e6e6;
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Active Page */
.rts-pagination li.active a {
    background: #1f2933; /* dark */
    color: #ffffff;
    border-color: #1f2933;
}

/* Hover Effect */
.rts-pagination li a:hover {
    background: #1f2933;
    color: #ffffff;
    border-color: #1f2933;
}

/* Arrow same style as numbers */
.rts-pagination li.next a {
    font-size: 22px;
}
.rts-pagination-wrapper {
    display: flex;
    justify-content: center;
    padding-bottom: 120px;
}

}

/* ACTIVE / CTA ITEM */
.header-float .ft-item.highlight {
    background: #e63946;
    color: #ffffff;
    border-color: #e63946;
}

/* SIMPLE HOVER FEEDBACK (NO EXPAND) */
.header-float .ft-item:hover {
    background: #f2f2f2;
}

/* MOBILE DISABLE */
@media (max-width: 991px) {
    .header-float {
        display: none;
    }
}

@media (max-width: 1365px) {
    .banner-inner-two-content .home-banner {
        font-size: 40px;
        line-height: 1.2;
    }
}