/* This is for blog css. */

.position-relative {
  position: relative;
}

.arimac-journal-wrapper .arimac-journal {
  display: block;
  margin: 0 auto;
  width: 88.9%;
  padding: 60px 0 0 0;
}

@media (max-width: 768px) {
  .arimac-journal-wrapper .arimac-journal {
    padding: 40px 0 0 0;
  }
}

.journal-header {
  text-align: center;
  margin-bottom: 80px;
}

.journal-header .header-label {
  position: relative;
  display: inline-flex;
  padding: 8px 24px;
  border-radius: 16px;
  margin-bottom: 16px;
}

.journal-header .header-label::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #eeeeee;
  border-radius: 16px;
  z-index: 0;
}

.journal-header .header-label span {
  position: relative;
  z-index: 1;
  background: var(--gradient-theme);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 12px;
  font-weight: 500;
}

.journal-header .journal-title {
  font-size: 52px;
  font-weight: 400;
  color: #1f2937;
  margin-bottom: 24px;
  line-height: 1.2;
  margin-top: 0px;
}

.journal-header .journal-title .highlight {
  background: var(--gradient-theme);
  font-weight: 400;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .journal-header .journal-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .journal-header .journal-title {
    font-size: 24px;
  }
}

.journal-header .journal-description {
  font-size: 28px;
  color: #767676;
  line-height: 1.6;
  max-width: 60rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .journal-header .journal-description {
    font-size: 16px;
  }
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.articles-grid a {
  text-decoration: none;
}
@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.article-card {
  background: #ffffff;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 2px 2px 16px 0px #00000017;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 8px 12px 32px 0 #00000026;
}

.article-card .article-image {
  width: 100%;
  height: 373px;
  overflow: hidden;
  position: relative;
}

.article-card .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card .article-image:hover img {
  transform: scale(1.05);
}

.article-card .article-content {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 24px 48px 48px;
}

@media (max-width: 768px) {
	.article-card .article-content {
		padding: 24px;
		gap: 16px;
	}

}

.article-card .article-date {
  color: #767676;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-card .article-title {
  font-size: 37px;
  font-weight: 500;
  color: var(--light-black);
  line-height: 150%;
  margin-bottom: 16px;
  margin-top: 0px;
  text-decoration: none;
  flex: 1;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;	
}

@media (max-width: 768px) {
  .article-card .article-title {
    font-size: 25px;
  }
}

@media (max-width: 480px) {
  .article-card .article-title {
    font-size: 18px;
  }
}

html[data-theme="dark"] .journal-header .journal-title,
html[data-theme="dark"] .journal-header .journal-description {
  color: var(--dark-theme-white);
}

html[data-theme="dark"] .journal-header .header-label::before {
  background: var(--dark-theme-white);
}

html[data-theme="dark"] .article-card {
  background: #1a1a1a;
  box-shadow: none;
}

html[data-theme="dark"] .article-card .article-title {
  color: var(--dark-theme-white);
}

.cta-contact-sale .career-container {
  display: block;
  margin: 0 auto;
  width: 88.9%;
  padding: 80px 0;
}

.cta-contact-sale .career-banner {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background: var(--cta-gradient);
  padding: 1.8rem;
  text-align: center;
  background-image: url("/wp-content/uploads/2026/01/cta-dotted-bg.webp");
  background-repeat: repeat;
  background-size: auto;
  background-position: top left;
}

@media (min-width: 1024px) {
  .cta-contact-sale .career-banner {
    padding: 2.7rem;
  }
}

.cta-contact-sale .banner-content {
  position: relative;
  z-index: 1;
}

.cta-contact-sale .banner-title {
  font-size: 52px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 2.5rem;
  margin-top:0;
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .cta-contact-sale .banner-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .cta-contact-sale .banner-title {
    font-size: 35px;
  }
}

@media (max-width: 480px) {
  .cta-contact-sale .banner-title {
    font-size: 30px;
  }
}

.cta-contact-sale .highlight {
  background: var(--gradient-theme);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.cta-contact-sale .banner-subtitle {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 2.5rem;
}

.cta-contact-sale .banner-subtitle-what {
  font-weight: 500;
}

.cta-contact-sale .social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.cta-contact-sale .social-media a {
  margin: 0 0.5rem;
}

.cta-contact-sale .social-media a:hover {
  opacity: 0.8;
}
.btn-area {
  width: 150px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

/* Dropdown Base Styles */
.dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  width: 16px;
  height: 16px;
  margin-left: 4px;
}

.dropdown-arrow.light {
  display: block;
}

.dropdown-arrow.dark {
  display: none;
}

/* Rotate arrow when dropdown is open */
.dropdown.open .dropdown-trigger .dropdown-arrow {
  transform: rotate(180deg);
}
/* ==================================
   NAVIGATION DROPDOWN STYLES
   ================================== */

/* Dropdown Base */
.dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  width: 16px;
  height: 16px;
  margin-left: 4px;
}

.dropdown-arrow.light {
  display: block;
}

.dropdown-arrow.dark {
  display: none;
}

/* Rotate arrow when open */
.dropdown.open .dropdown-trigger .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  padding: 12px 20px;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  pointer-events: none;
}

/* Show dropdown when open */
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.dropdown-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 400;
  color: #2f2f2f;
  line-height: 21px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  color: var(--primary-color);
  background-color: rgba(230, 60, 46, 0.08);
}

/* Company Dropdown - Wider version */
.company-dropdown {
  min-width: 450px;
  padding: 20px;
}

.company-dropdown-grid {
  display: grid;
  grid-template-columns: 43% 27% 30%;
  gap: 20px;
  width: 100%;
}

.company-column {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(208, 208, 208, 0.4);
  padding-right: 16px;
}

.company-column:last-child {
  border-right: none;
  padding-right: 0;
}

.company-column-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--light-black);
  margin: 0 0 12px 0;
  padding: 0;
}

.company-link {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 400;
  color: #2f2f2f;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  margin-bottom: 4px;
}

.company-link:hover {
  color: var(--primary-color);
  background-color: rgba(230, 60, 46, 0.08);
}

/* Dark Mode Dropdown Styles */
html[data-theme="dark"] .dropdown-menu {
  background: #1a1a1a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

html[data-theme="dark"] .dropdown-menu a,
html[data-theme="dark"] .company-link,
html[data-theme="dark"] .company-column-title {
  color: var(--white);
}

html[data-theme="dark"] .dropdown-menu a:hover,
html[data-theme="dark"] .company-link:hover {
  background-color: rgba(151, 71, 255, 0.15);
}

html[data-theme="dark"] .company-column {
  border-right: 1px solid rgba(234, 234, 234, 0.2);
}

html[data-theme="dark"] .dropdown-arrow.light {
  display: none;
}

html[data-theme="dark"] .dropdown-arrow.dark {
  display: block;
}
.fixed-nav,
.nav-wrap,
.nav-wrap-inner {
  overflow: visible;
}

html[data-theme="dark"] .direction-button {
	background: linear-gradient(#1a1a1a, #1a1a1a) padding-box, linear-gradient(264.67deg, #9747ff .77%, #e63c2e 90.19%) border-box;
	border: 2px solid #0000;
}

html[data-theme="dark"] .direction-button::before {
	background: linear-gradient(268.3deg, #9747ff -5.05%, #e63c2e 75.54%);
}

html[data-theme="dark"] .direction-button .arrow-icon {
	color: #9747ff;
}

html[data-theme="dark"] .direction-button .btn-text {
	background: linear-gradient(90deg, #e63c2e 20%, #9747ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: #0000;
}

html[data-theme=dark] .direction-button:hover .btn-text {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

html[data-theme=dark] .direction-button:hover .arrow-icon {
    color: #fff;
}
