@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
   --font-montserrat: "Montserrat", sans-serif;
   --font-albert: "Albert Sans", sans-serif;
    --primaryColor: #008776;
    --whiteColor: #fff;
    --blackColor: #000;
}

html {
    scroll-behavior: smooth;
}

body {	
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 400;    
	background: #fff;
	color: #000;	
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

p,
figure,
label {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

small {
    font-size: inherit;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

a:hover{
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0; 
    margin: 0;
}

input,
button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

::selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-webkit-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}


.container {
    max-width: 1580px;
    padding-inline: 40px;
}

/*======= header-area design =======*/

.header-wrapper .logo img {
    max-width: 320px;
}
.header-top {
    padding-block: 20px;
}


/* nav style  */
.nav-area {
	position: sticky;
    transition: 0.3s;
	z-index: 900;
}
.nav-area.nav-fixed {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background: #fff;
}

.navbar-toggler {
    font-size: 25px;
    margin-inline: 15px;
}
.nav-wrapper {
    display: flex;
}

.navbar-list {
    display: flex;
    align-items: stretch;
    gap: 45px;
    flex-grow: 7;
    z-index: 10;
}

.nav-item-parent > a {
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #000;
    font-size: 19px;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 rgba(7,7,7,0);
    position: relative;
}
.nav-item-parent > a::after {
    content: '';
    display: block;
    height: 3px;
    width: 0%;
    background: #008776;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.3s;
}
.nav-item-parent > a:hover::after,
.nav-item-parent > a.active::after {
    width: 100%;
}
.nav-item-parent > a:hover,
.nav-item-parent > a.active {
    color: var(--primaryColor);
}
.nav-item-parent {
	flex-grow: 1;
	display: flex;
	justify-content: center;
}

.mega-menu-wp {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: var(--whiteColor);
    padding-top: 100px;
    padding-bottom: 20px;
    z-index: -1;
    overflow: hidden;
    visibility: hidden;
    transform: translateY(-15px);
    opacity: 0;
    transition: 0.3s;
}

.nav-item-parent:hover .mega-menu-wp {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.mega-menu-content {
    display: flex;
}

.service-mega-left {
    width: 25%;
}

.service-mega-left li a {
    color: #030303;
    padding-block: 5px;
}
.service-mega-left li a:hover {
    color: var(--primaryColor);
}
.service-mega-left li {
    padding-bottom: 9px;
    margin-bottom: 9px;
    border-bottom: 1px solid var(--primaryColor);
}
.service-mega-left li:last-child {
    border: none;
    margin: 0;
    padding-bottom: 0;
}

.service-mega-right {
    width: 75%;
    padding-left: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-mega-right a {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.service-mega-right a h4 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: #000;
    text-align: center;
}

.metal-mega-left {
    width: calc(100% / 3);
}

.metal-mega-right {
    flex-grow: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 40px;
}
.metal-mega-right a {
    color: #000;
    font-size: 42px;
    font-weight: 600;
}
.metal-mega-right a:hover {
    color: var(--primaryColor);
}

.action-btn {
    font-size: 17px !important;
    font-weight: 400 !important;
    padding-inline: 40px;
    line-height: 46px;
    background: #4fb796;
    color: var(--whiteColor) !important;
}

.wissen-mega {
    gap: 25px;
}

.mega-menu-content.wissen-mega a {
    width: calc(100% / 3);
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}
.uber-uns-left {
    width: calc(100% / 3);
}

.uber-uns-left li a {
    color: #030303;
    padding-block: 5px;
}
.uber-uns-left li a:hover {
    color: var(--primaryColor);
}
.uber-uns-left li {
    padding-bottom: 9px;
    margin-bottom: 9px;
    border-bottom: 1px solid var(--primaryColor);
}
.uber-uns-left li:last-child {
    border: none;
    margin: 0;
    padding-bottom: 0;
}

.uber-uns-right {
    flex-grow: 1;
    display: flex;
    align-items: start;
}
.uber-uns-right a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.lang-card {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: end;
}
.lang-card ul {
    display: flex;
    align-items: center;
    gap: 15px;
}
.lang-card ul {
	display: flex;
	align-items: center;
    justify-content: center;
}


/* mobile menu style  */
.mobile-nav {
	position: fixed;
	right: -100%;
	top: 0;
	background: #fff;
	height: 100dvh;
	display: flex;
	flex-direction: column;
    padding: 20px;
    overflow: hidden;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 999;
}
.mobile-nav a {
    display: block;
    padding-block: 5px;
}
.mobile-nav ul ul {
    padding: 5px 0 5px 15px;
}
.mobile-nav > ul {
	margin-block: auto;
}
.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--primaryColor);
}

.mobile-nav.active {
    right: 0;
}
.menu-overlay {
    position: relative;
}
body::before {
	content: '';
	display: block;
	width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 100;
}
body.menu-overlay::before {
    opacity: 1;
    visibility: visible;
}



/* header area end hare  */





















/* footer area style  */

.footer-wrapper {
    background: var(--blackColor);
    color: var(--whiteColor);
}

.footer-block {
    width: 100%;
    max-width: 1280px;
    padding-inline: 40px;
    padding-block: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-inline: auto;
}
.footer-content p {
    text-align: justify;
    font-size: 16px;
    font-family: var(--font-albert);
}
.footer-content p a:hover {
    opacity: 0.8;
}

.footer-single-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-single-item h4 {
    font-size: 17px;
    font-weight: 600;
}
.footer-single-item ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hours-item {
    width: 100%;
    max-width: 300px;
    display: flex;
    gap: 15px;
    align-items: center;
}
.hours-item p {
    flex: 1;
    font-weight: 700;
    color: RGBA(255, 255, 255, 0.7);
}
.openingHours {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer-single-item li p {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-copyright-block {
    padding-inline: 40px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding-top: 30px;
}
.footer-social ul {
	display: flex;
	align-items: center;
    gap: 30px;
}
.copyright-text {
    font-size: 11px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    letter-spacing: 2px;
}

.scroll-top-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--whiteColor);
    color: var(--blackColor);
}
.scroll-top-btn:hover {
    opacity: 0.8;
}

.footer-bottom-link {
    padding-left: 40px;
    padding-bottom: 20px;
}
.footer-bottom-link ul {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-bottom-link ul a {
    font-size: 14px;
    color: RGBA(255, 255, 255, 0.7);
}
.footer-bottom-link ul a:hover {
    color: var(--whiteColor);
}
.footer-area {
	padding-bottom: 100px;
}



/*=========== service page style ========== */

.bg-white {
    background: var(--whiteColor);
}

.main-area {
    margin-top: 70px;
}

.sr-slider-wrapper {
    padding-block: 140px;
    background: var(--whiteColor);
    padding-inline: 40px;
}
.sr-title {
    width: 100%;
    max-width: 750px;
    font-size: 64px;
    color: var(--blackColor);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.1;
}
.sr-content-top {
    padding-bottom: 140px;
}
.sr-slider-container {
	width: calc(100% + 40px);
    position: relative;
}

.sr-slider-action {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 5;
    display: flex;
}
.sr-slider-action button {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.07);
    font-size: 20px;
    transition: 0.3s;
}
.sr-slider-action button:hover {
    background: var(--primaryColor);
    color: var(--whiteColor);
}

.sr-inner-content-wp {
    padding-inline: 40px;
    background:var(--whiteColor);
}

.sr-inner-content-wp .sr-title {
    font-size: 52px;
}

.sr-pera-card p {
    column-count: 2;
    column-gap: 40px;
    text-align: justify;
    color: #575757;
    line-height: 1.7;
}
.sr-pera-card p a {
    color: var(--primaryColor);
}
.sr-pera-card p a:hover {
    color: #005E52;
}

.service-list-wp {
    padding-top: 140px;
    padding-inline: 40px;
    background: var(--whiteColor);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.single-service-item a {
    display: flex;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.single-service-item a img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transform: scale(1.02);
    transition: 0.3s;
}

.service-overlay-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    gap: 20px;
    padding: 30px 20px;
    background: rgba(48,48,51,.27);
}
.single-service-item a:hover img {
    transform: scale(1);
}
.service-overlay-content h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--whiteColor);
}

.link-btn {
	background-color: rgba(79,183,150,0);
	color: #fdfdfd;
	border: 2px solid #4fb796;
    padding-inline: 30px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 40px;
    transition: 0.3s;
}
.link-btn:hover {
    color: #4fb796;
}
.service-overlay-content p {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.faq-area {
    padding-block: 140px;
    background: #fff;
}

.faq-container {
    width: 100%;
    max-width: 1280px;
    padding-inline: 40px;
    margin-inline: auto;
}

.faq-wrapper {
    display: flex;
}

.faq-title-card {
    width: calc(100% /3);
    padding-left: 40px;
}
.faq-title-card h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--blackColor);
}

.faq-right-wp {
    flex: 1;
    padding-left: 40px;
}


.faq-accordion {
   width: 100%;
}
.accordion-item {
    border-bottom: 1px solid #4fb796;
}
.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    font-weight: 300;
    cursor: pointer;
    user-select: none;
    transition: 0.2s ease;
    font-size: 18px;
}
.accordion-title:hover {
    color: var(--primaryColor);
}
.accordion-content {
    display: none;
    padding: 0 10px 15px 10px;
    color: #444;
    line-height: 1.6;
    text-align: justify;
}
.accordion-icon {
    transition: transform 0.3s ease;
    font-size: 14px;
}
.accordion-item.active .accordion-icon {
    transform: rotate(135deg);
}

.accordion-content p {
    padding-bottom: 40px;
}
.accordion-content p:last-child {
    padding-bottom: 0;
}


/* aktuelles page  */

.main-wrapper {
    background: var(--whiteColor);
}
.aktuelles-main-wp {
    background: #F8F8F8;
}

.aktuelles-top-block {
    padding-block: 140px;
    padding-inline: 40px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.aktuelles-top-block h2 {
    font-size: 64px;
    font-weight: 500;
}
.uk-text-background {
	-webkit-background-clip: text;
	color: transparent !important;
	display: inline-block;
	background-color: #008776;
	background-image: linear-gradient(90deg,#008776 0,#003e87 100%);
}
.aktuelles-top-block p {
    max-width: 750px;
    color: #575757;
    text-align: justify;
    line-height: 1.7;
}
.aktuelles-top-block p a {
    color: #008776;
}
.aktuelles-top-block p a:hover {
    color: #005E52;
}
.aktuelles-top-block ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: disc;
    padding-left: 20px;
    color: #575757;
}


.single-post-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-inline: 40px;
}

.single-post-content {
    padding: 70px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    background: var(--whiteColor);
    box-shadow: 0 5px 15px rgba(0,0,0,.06);
}
.post-basic-info p {
    font-family: var(--font-albert);
    color: #999999;
}
.post-basic-info p a {
    color: var(--primaryColor);
}
.single-post-content h2 {
    font-size: 42px;
    font-weight: 500;
}
.post-action-btn {
    border: 2px solid var(--primaryColor);
    padding: 0 30px;
    line-height: 40px;
    color: var(--primaryColor);
    font-weight: 600;
    margin-top: 50px;
}
.post-action-btn:hover {
    background: var(--primaryColor);
    color: var(--whiteColor);
}

.single-post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.multiple-post-wp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-block: 40px;
    padding-inline: 40px;
}

.SinglePost-content {
    padding: 40px;
}
.SinglePost-content.single-post-content h2 {
	font-size: 22px;
	font-weight: 500;
}
.singlePost-card {
	display: flex;
	flex-direction: column;
}
.SinglePost-content {
	padding: 40px;
	flex: 1;
}
.SinglePost-content .post-action-btn {
    margin-top: auto;
}

.single-post-video {
    position: relative;
    cursor: pointer;
}
.single-post-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-thumb {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 5;
}
.single-post-video:hover .video-thumb {
    visibility: hidden;
}

.service-list-wp > h4 {
    grid-column: span 3;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 10px;
}

.periodic-area {
    padding-inline: 40px;
    background: var(--whiteColor);
    padding-block: 70px;
}

.periodic-wrapper {
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
}

.periodic-wrapper h3 {
    margin-block: 40px;
    font-size: 26px;
    font-weight: 500;
    color: var(--blackColor);
}
.periodic-wrapper td {
	color: #575757;
}
.periodic-wrapper td a {
    color: var(--primaryColor);
}

.psetable-btm {
    padding-top: 40px;
    padding-bottom: 20px;
    color: #575757;
    font-style: italic;
}

.uber-uns-btm {
    padding-block: 140px;
    padding-inline: 40px;
    background: var(--whiteColor);
    display: flex;
}

.uberUns-btm-left {
    width: 60%;
    display: flex;
    align-items: center;
}
.uberUns-btm-left h3 {
    max-width: 600px;
    font-size: 22px;
    font-weight: 500;
}
.uberUns-btm-right {
    width: 40%;
    padding-left: 70px;
}



/*========== kontakt page ============= */

.team-area {
    padding-block: 210px;
    padding-inline: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.team-area h2 {
    font-size: 96px;
    font-weight: 500;
}
.team-area > p {
    color: #575757;
    font-size: 22px;
    text-align: center;
}

.team-member-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.single-member {
    position: relative;
}

.member-info-card {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    color: var(--whiteColor);
}
.member-basic-info h4 {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.4;
}
.member-basic-info p {
    color: rgba(255, 255, 255, 0.7);
}
.member-lang p {
    color: rgba(255, 255, 255, 0.7);
}
.member-kontakt-info li {
    font-size: 22px;
    font-weight: 500;
    font-style: italic;
}
.member-kontakt-info li a:hover {
    opacity: 0.7;
}
.single-member:nth-child(even) {
    margin-bottom: -70px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.find-us-area {
    padding: 140px 40px;
}
.findus-top {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
}
.small-divider {
    width: 70px;
    height: 2px;
    background: var(--primaryColor);
}
.findus-top p {
    margin-block: 20px;
    color: #575757;
}
.findus-top h4 {
    font-size: 32px;
    font-weight: 500;
}

.perking-list {
    padding-top: 140px;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.parking-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.parking-item h4 {
    font-size: 22px;
    font-weight: 500;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--primaryColor);
}
.parking-item p {
    color: #575757;
}
.parking-item p a {
    color: var(--primaryColor);
}

/* map style  */

#map{
    width:100%;
    height:600px;
}

/* ---- Custom pin marker ---- */
  .custom-pin {
    width: 26px;
    height: 26px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
  }
 
  /* ---- Dark popup styling ---- */
  .leaflet-popup-content-wrapper {
    background: #0D0D0D;
    color: #e8e8e8;
    border-radius: 10px;
    box-shadow: 0 3px 14px rgba(255,255,255,0.2);
  }
 
  .leaflet-popup-tip {
    background: #171717;
  }
 
  .leaflet-popup-content {
    margin: 20px 22px;
    min-width: 260px;
  }
 
  .popup-title {
    font-size: 26px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 14px;
  }
 
  .popup-subtitle {
    font-weight: 500;
    color: #ffffff;
    opacity: 0.7;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
 
  .popup-line a {
    color: #b7b7b7;
    font-size: 16px;
    line-height: 1.5;
  }
   .popup-line a:hover {
    color: var(--whiteColor);
   }
 
  .popup-contact {
    margin-top: 14px;
  }
 
  .popup-contact a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 16px;
    display: block;
    line-height: 1.7;
  }
 
  .popup-contact a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
 
  /* Close button (×) */
  .leaflet-popup-close-button {
    color: #b7b7b7 !important;
    font-size: 20px !important;
    top: 12px !important;
    right: 14px !important;
    font-weight: 400 !important;
  }
 
  .leaflet-popup-close-button:hover {
    color: #ffffff !important;
  }
 
  .leaflet-container a.leaflet-popup-close-button {
    padding: 0;
  }
 
  /* Attribution styling to match dark theme */
  .leaflet-control-attribution {
    background: rgba(23,23,23,0.75) !important;
    color: #999 !important;
  }
  .leaflet-control-attribution a {
    color: #ccc !important;
  }
  .custom-pin path {
    fill: #7F7F7F;
  }


/* Lagerung page  */

.content-section {
    padding-block: 140px;
    overflow: hidden;
}

.content-container {
    display: flex;
    align-items: start;
    gap: 70px;
}

.content-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--primaryColor);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.post-title {
    font-size: 42px;
    color: var(--blackColor);
    font-weight: 500;
    max-width: 600px;
    margin-bottom: 50px;
}
.w-60 {
	width: 60%;
}
.w-40 {
	width: 40%;
}
.content-card p {
    color: #575757;
    text-align: justify;
    line-height: 1.7;
}
.full-image a {
    overflow: hidden;
}
.full-image a img {
    transition: 0.3s;
}
.full-image a img:hover {
    transform: scale(1.05);
}

.sr-pera-two {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-block: 70px;
}
.content-container.gap-40 {
    gap: 40px;
}

.image-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.content-card h4 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 20px;
}

.angebot-list {
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.angebot-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.angebot-item h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0;
}

.sr-pera-card.sr-pera-two {
	padding-top: 0;
}
.font-italic {
    font-style: italic;
}
.content-image img {
	aspect-ratio: 900 / 910;
    object-fit: cover;
	width: 100%;
}
.image-list img {
	aspect-ratio: 420 / 420;
	object-fit: cover;
}

.post-title.title-big {
	font-size: 64px;
}
.color-primery {
    color: var(--primaryColor);
}
.content-card p a {
    color: #008776;
}

.alert-container {
    padding-top: 70px;
}

.alert-box {
    padding: 40px;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    background: #f8f8f8;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-albert);
    text-align: center;
}
.fucntioniert-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.fucntioniert-list p {
    text-align: start;
}
.certification-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.certification-item {
    font-size: 17px;
    font-weight: 700;
    color: var(--blackColor);
    position: relative;
    padding-left: 15px;
}
.certification-item::before {
    content: '';
    display: block;
    width: 5px;
    height: 15px;
    background: #008776;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.content-image p {
    font-size: 14px;
    font-family: var(--font-albert);
    color: #999999;
    margin-top: 10px;
}

.gut-winssen {
    padding: 140px 40px;
    background: #F8F8F8;
    margin-top: 70px;
}
.gut-winssen-wrapper {
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.gut-winssen-wrapper h4 {
    font-size: 26px;
    font-weight: 500;
    color: #000;
}
.gut-winssen-wrapper p {
    line-height: 1.7;
    color: #575757;
}
.gut-winssen-actions {
    display: flex;
    gap: 15px;
}
.gut-winssen-actions a {
    padding-inline: 40px;
    line-height: 40px;
    background: var(--primaryColor);
    color: var(--whiteColor);
    font-weight: 500;
    text-transform: uppercase;
}
.content-card ul {
    list-style: disc;
    padding-left: 30px;
}
.content-card ul li {
    font-size: 22px;
    color: #575757;
}
.column-two-content {
    column-count: 2;
    gap: 40px;
}
.content-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    width: 100%;
    max-width: 600px;
}
.content-grid-item h5 {
    font-size: 26px;
    font-weight: 500;
    color: var(--blackColor);
    line-height: 1.4;
}

.py-70 {
    padding-block: 70px !important;
}

.verfahren-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.verfahren-top .post-title {
    max-width: 100%;
    text-align: center;
}

.verfahren-tab-nav ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.verfahren-tab-nav ul a {
    position: relative;
}
.verfahren-tab-nav ul a::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: 0.3s;
     background: linear-gradient(180deg,rgba(255,255,255,0),rgba(255,255,255,.4));
     opacity: 1;
}
.verfahren-tab-nav ul a.active::before,
.verfahren-tab-nav ul a:hover::before {
   opacity: 0;
}

.verfahren-container {
    padding-top: 40px;
}

.verfahren-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.verfahren-content-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #575757;
    justify-content: center;
}
.verfahren-content-left h4 {
    font-size: 26px;
    font-weight: 500;
}
.verfahren-content-left > span {
    color: #999999;
    font-family: var(--font-albert);
    font-size: 14px;
}
.verfahren-content-left ul {
    list-style: disc;
    padding-left: 30px;
}
.verfahren-content-left ul li span {
    padding-left: 10px;
}
.verfahren-tab-nav ul a img {
	aspect-ratio: 350 / 200;
	width: 100%;
    object-fit: cover;
}

.fair-value-card {
    padding-block: 40px;
    display: flex;
    flex-direction: column;
    gap: 70px;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
}

.fair-value-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.fair-value-inner p {
    color: #575757;
}
.fair-value-inner h4 {
    font-size: 22px;
    font-weight: 500;
    color: var(--blackColor);
    margin-bottom: 20px;
}
.text-norml-size li {
    font-size: 16px !important;
}
.mx-100 {
    max-width: 100% !important;
}
.full-image img {
	aspect-ratio: 16 / 7;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.historie-main {
    padding-block: 210px;
}
.historie-top-wp {
    padding: 70px 40px;
}

.historie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 70px;
    gap: 70px;
}
.single-historie {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.single-historie h3 {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 26px;
    font-weight: 500;
    color: var(--blackColor);
}
.single-historie h3 span {
    display: block;
    width: 7px;
    height: 22px;
    background: var(--primaryColor);
}
.single-historie p {
    color: #575757;
}
.single-historie p a {
    color: var(--primaryColor);
}

.information-wrapper {
    padding: 40px;
    background: #393939;
    display: flex;
    flex-direction: column;
}
.information-wrapper h4 {
    font-size: 22px;
    font-weight: 500;
    padding-bottom: 7px;
    color: var(--whiteColor);
    border-bottom: 1px solid rgba(255,255,255,.2);
}
.information-wrapper ul {
    margin-inline: -40px;
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 9px;
}
.information-wrapper ul li {
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(255,255,255,.2);
}
.information-wrapper ul li:last-child {
    padding-bottom: 0;
    border: none;
}
.information-wrapper ul li a {
    padding: 5px 40px;
    color: rgba(255,255,255,.7);
    font-size: 16px;
    width: 100%;
}
.information-wrapper ul li a:hover,
.information-wrapper ul li a.active {
    color: var(--whiteColor);
}

/* ===== Rare Earth Mineral Table ===== */

.ree-mineral-table-wrapper{
    width:100%;
    overflow-x:auto;
}

.ree-mineral-table{
    width:100%;
    border-collapse:collapse;
    border-spacing:0;
    font-size:15px;
    line-height:1.6;
}

.ree-mineral-table th,
.ree-mineral-table td{
    padding:10px 14px;
    border:1px solid #d9d9d9;
    text-align:left;
    vertical-align:top;
}

.ree-mineral-table thead th{
    background:#e0e0e0;
    font-weight:700;
}

.ree-mineral-table tbody tr:nth-child(even){
    background:#f9f9f9;
}

.ree-mineral-table tbody tr:hover{
    background:#f3f7fb;
}

.ree-mineral-table th:nth-child(1),
.ree-mineral-table td:nth-child(1){
    width:23%;
}

.ree-mineral-table th:nth-child(2),
.ree-mineral-table td:nth-child(2){
    width:54%;
}

.ree-mineral-table th:nth-child(3),
.ree-mineral-table td:nth-child(3){
    width:23%;
}

@media (max-width:768px){

    .ree-mineral-table{
        min-width:760px;
    }

    .ree-mineral-table th,
    .ree-mineral-table td{
        padding:8px 12px;
        font-size:14px;
    }
}


.re-table-container {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.re-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
    background-color: #ffffff;
}

.re-data-table th {
    background-color: #2c3e50;
    color: #ffffff;
    font-weight: 600;
    padding: 12px 10px;
    border: 1px solid #34495e;
    vertical-align: middle;
}

.re-data-table td {
    padding: 10px;
    border: 1px solid #e2e8f0;
    color: #334155;
    vertical-align: middle;
}

.re-data-table tbody tr:nth-child(even) {
    background-color: #f8fafc;
}

.re-data-table tbody tr:hover {
    background-color: #f1f5f9;
}

.re-cell-element {
    font-weight: bold;
    color: #1e293b;
    background-color: #f1f5f9;
    text-align: center;
    width: 50px;
}

.re-cell-trace {
    color: #64748b;
    font-style: italic;
}

.re-cell-empty {
    color: #cbd5e1;
    text-align: center;
}

.verbindungen-list {
    list-style: none !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.verbindungen-list li {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--primaryColor);
    display: flex;
    align-items: start;
    gap: 70px;
    font-size: 16px !important;
}
.verbindungen-left {
    flex: 1;
    max-width: 230px;
}
.verbindungen-left h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--blackColor);
}
.verbindungen-right {
    flex: 1;
}
.verbindungen-right p {
    color: #575757;
    text-align: start;
}
.verbindungen-right a p {
    color: var(--primaryColor);
}
.verbindungen-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.content-card-inner {
    display: flex;
    flex-direction: column;
    text-align: right;
    gap: 20px;
}
.content-card-inner h5 {
    font-size: 17px;
    font-weight: 600;
    font-style: italic;
}
.text-start p {
    text-align: start !important;
}
.text-right p {
    text-align: right !important;
}

.download-wrapper {
    width: 100%;
    max-width: 900px;
    margin-inline: auto;
    padding-block: 70px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.download-inner-wp {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.download-title h2 {
    font-size: 32px;
    font-weight: 500;
    color: #999999;
    line-height: 1.3;
}
.download-inner-wp ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.download-inner-wp ul li {
    padding-bottom: 12px;
    border-bottom: 1px solid #4fb796;
}
.download-inner-wp ul li a {
    color: var(--primaryColor);
    font-size: 16px;
}
.download-inner-wp ul li a:hover {
    color: #005E52;
}
.download-title h4 {
    font-size: 22px;
    font-weight: 500;
    color: var(--blackColor);
}
.content-card h6 {
    font-weight: 500;
    color: var(--primaryColor);
}
.el-content p {
    padding-bottom: 20px !important;
}

.uk-panel p {
    padding-bottom: 20px !important;
}



/* ====================================== */


.sticky-bg-section {
    position: relative;
    height: 150vh;
}

.bg-sticky-div {
    position: sticky;
    top: 0;
    height: calc(100dvh - 230px);
    width: 100%;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
    display: flex;
}

.hero-content-container {
    position: relative;
    margin-top: -120vh;
    padding-bottom: 20vh;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-wrap-wp {
    text-align: center;
    max-width: 100%;
    margin: 50vh auto;
    margin-bottom: 0;
    color: var(--whiteColor);
}

.reveal-text {
    font-size: 90px;
    font-weight: 500;
    letter-spacing: 1px;
    transform: scale(1.4);
    filter: blur(0px);
    opacity: 1;
    will-change: transform, filter, opacity;
    transition: transform 0.1s linear, filter 0.1s linear, opacity 0.1s linear;
    padding-bottom: 30px;
}

.reveal-text p {
    font-size: 1.2rem;
    font-weight: 400;
    text-transform: none;
    margin-top: 10px;
}

.hidden-image {
    display: inline-block;
    will-change: transform, filter, opacity;
    transition: transform 0.05s linear;
    width: 100%;
    max-width: 1152px;
    margin-inline: auto;
    margin-top: 100px;
}












  .intro-text {
    position: absolute;
    font-size: 64px;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-align: center;
    transform-origin: center center;
    will-change: transform, filter, opacity;
    padding: 0 20px;
    width: 100%;
    max-width: 450px;
  }
 
  .intro-text span {
    display: block;
    color: #575757;
    font-size: 16px;
    font-weight: 400;
    margin-top: 16px;
    letter-spacing: 0.05em;
  }
 
  .scroll-section {
    position: relative;
  }
 
  .pin-wrap {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }
 
  .track {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    will-change: transform;
  }
 
  .track .card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
  }
 .card img {
    width: 100%;
    aspect-ratio: 840 / 1150;
    object-fit: cover;
    transition: 0.3s;
 }
.card-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.card-content h4 {
    font-size: 42px;
    font-weight: 500;
    text-align: center;
    color: var(--whiteColor);
}
.card-content a {
	padding: 0 40px;
	line-height: 46px;
	font-size: 17px;
    border: 2px solid #4fb796;
    color: #fdfdfd;
    font-weight: 500;
    margin-top: 10px;
    text-transform: uppercase;
}
.card-content a:hover {
    color: var(--primaryColor);
}
 .card:hover img {
    transform: scale(1.05);
 }

 .uber-uns-block {
    max-width: 1200px;
    margin-inline: auto;
 }
  .uber-uns-block .content-card p {
    max-width: 450px;
  }











   .ise-reveal{
    position:relative;
    height:100vh;
    width:100%;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
  }
 
  .ise-reveal__stage{
    position:relative;
    width:100%;
    max-width: 1500px;
    padding-inline: 40px;
    height:min(100vh);
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    align-items:center;
    justify-content:center;
    gap: 20px;
    padding-block: 50px;
    background: var(--whiteColor);
  }

  .ise-center-stage {
     grid-column: 2 / 4;
  }
 
 
  .ise-rail--left  .service-card{ transform: translateX(-15vw); opacity:1; }
  .ise-rail--right .service-card{ transform: translateX(15vw);  opacity: 1; }
 

  .ise-image img {
    width: 100%;
    aspect-ratio: 840 / 1110;
    object-fit: cover;
  }

  .service-card__body a {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
   .service-card__body a img {
    transition: 0.3s;
   }
  .ise-overlay-wp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(48,48,51,.27);
    color: var(--whiteColor);
  }
  .ise-overlay-wp h2 {
    font-size: 42px;
    font-weight: 500;
    text-align: center;
  }
  .ise-laptop-card__link {
    border: 2px solid var(--primaryColor);
    font-size: 13px;
    padding: 0 15px;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.3s;
  }
 .ise-laptop-card__link:hover {
    color: var(--primaryColor);
 }
 .service-card__body a:hover img {
    transform: scale(1.08);
 }
 .service-card--netzwerk {
    margin-top: 10px;
 }

 .ise-overlay-wp h1 {
    font-weight: 500;
    font-size: 64px;
    text-align: center;
    color: var(--whiteColor);
 }
  .ise-overlay-wp h4 {
    font-size: 32px;
    font-weight: 500;
    color: var(--whiteColor);
    text-align: center;
  }

  .all-service-btn {
    padding-block: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--whiteColor);
  }
  .all-service-btn a {
    padding-inline: 30px;
    line-height: 40px;
    background: #4fb796;
    color: var(--whiteColor);
  }




  
/*================ standorte page here ================*/

.rt-standorte-area {
    padding: 80px 0;
}

.rt-standorte-area-right ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rt-standorte-area-right ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #575757;
    font-size: 16px;
}

.rt-standorte-area-left h4 {
    font-size: 17px;
    color: #000;
    position: relative;
    padding-left: 20px;
    font-weight: 400;
}

.rt-standorte-area-left h4::after {
    position: absolute;
    content: "";
    height: calc(100% - 2px);
    width: 6px;
    background: #008776;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.rt-standorte-area-left h2 {
    font-size: 42px;
    font-weight: 500;
    color: #000;
    margin: 20px 0;
}

.rt-standorte-area-left-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rt-standorte-area-left-items div {
    display: flex;
}

.rt-standorte-area-left-items div p {
    max-width: 150px;
    width: 100%;
    font-size: 16px;
    color: #575757;
}

.rt-standorte-area-left-items div a {
    font-size: 16px;
    color: #575757;
    transition: 0.2s;
}

.rt-standorte-area-left-items div a:hover {
    color: #000;
}

.rt-standorte-area-left-items div:first-child a {
    border-bottom: 1px solid #4fb796;
    width: 100%;
    padding-bottom: 12px;
    margin-bottom: 8px;
}

.rt-standorte-area-box {
    margin-top: 120px;
}

.rt-standorte-area-right img {
    width: 100%;
}

/* Seltene Page Here */

.rt-seltene-first h2 {
    font-size: 42px;
    font-weight: 500;
    color: #000;
}

.rt-seltene-first-items {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rt-seltene-first-items p {
    font-size: 16px;
}

.rt-seltene-first-items-strong {
    color: #575757;
}



.rt-seltene-first-items-table {
    width: 100%;
    overflow-x: auto;
}

.rt-seltene-first-items-table table {
    width: 100%;
    min-width: 1100px;
    border-collapse: separate;
    border-spacing: 12px 18px;
}

.rt-seltene-first-items-table td {
    width: 5.55%;
    text-align: center;
    vertical-align: middle;
    padding: 0;
    color: #575757;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}

.rt-seltene-first-items-table td a {
    display: inline;
    color: #0097a7;
    text-decoration: none;
    line-height: 1;
}

.rt-seltene-first-items-table td br {
    display: block;
    content: "";
    margin: 0;
    line-height: 0;
}

.rt-seltene-first-items-table td[colspan] {
    border: none;
}

.rt-seltene-first-items-table tbody tr:last-child td:first-child,
.rt-seltene-first-items-table tbody tr:nth-last-child(2) td:first-child {
    text-align: right;
    font-weight: 500;
    padding-right: 20px;
}

.rt-seltene-secont-items {
    max-width: 1250px;
    margin: 0 auto;
}

.rt-seltene-secont-items h2 {
    font-size: 26px;
    color: #000;
    font-weight: 500;
    margin-top: 70px;
    margin-bottom: 40px;
}

.rt-seltene-secont-items p {
    margin-top: 30px;
    color: #575757;
    font-size: 16px;
    font-style: italic;
}
/* Dynamische ISE-AG Inhalte */
.ise-article-hero{margin:0 0 35px}.ise-article-hero img{display:block;width:100%;max-height:620px;object-fit:cover}.ise-article-body{font-size:17px;line-height:1.75}.ise-article-body img{max-width:100%;height:auto}.ise-article-body h2,.ise-article-body h3{margin-top:30px}.postThumbail:empty,.single-post-image:empty{min-height:220px;background:#ececec}

/* Sprachwahl wie auf der Referenzseite: direkte DE/EN-Flaggen. */
.language-flags {
    flex: 0 0 auto;
    margin-left: 18px;
    display: flex;
    align-items: center;
    gap: 9px;
}
.language-flags a {
    display: inline-flex;
    padding: 3px;
    border: 1px solid transparent;
    opacity: .62;
}
.language-flags a:hover,
.language-flags a:focus-visible,
.language-flags a.active {
    opacity: 1;
    border-color: #008776;
}
.language-flags img { width: 24px; height: 16px; object-fit: cover; }
@media screen and (max-width: 1199px) and (min-width: 768px) {
    .language-flags {
        margin-left: 8px;
    }
}
@media screen and (max-width: 767px) {
    .language-flags {
        margin-left: auto;
    }
}

/* Referenztypografie und durchgehend weißer Inhaltsbereich. */
.main-area,
.sr-inner-content-wp,
.sr-slider-wrapper,
.service-list-wp { background-color: #fff; }
.main-area { margin-top: 0; }
.content-card p,
.sr-pera-card p { font-weight: 400; }
.content-card p a,
.sr-pera-card p a,
.information-wrapper a { font-weight: 400; }
.information-wrapper h4 { font-weight: 500; }
.post-action-btn,
.action-btn { font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }
.wissen-card h3,
.single-wissen-card h3 { font-weight: 500; }
.footer-area { padding-bottom: 0; background: #fff; }
.footer-wrapper { max-width: 1580px; margin: 0 auto; }
.footer-content p a { font-weight: 400; }
.footer-content p strong a { font-weight: 600; }
.hours-item p,
.footer-single-item li p { font-weight: 400; }
.legal-card { max-width: 1180px; }
.legal-section h2 { font-weight: 500; }
.legal-section p,
.legal-section li { color: #575757; font-weight: 400; }
.legal-section a { color: var(--primaryColor); font-weight: 400; }
.periodic-wrapper .psetable a { display: block; width: 100%; height: 100%; font-weight: 500; }
.periodic-wrapper .psetable { min-width: 48px; }
.rt-seltene-first h1,
.rt-seltene-secont-items h2 { font-weight: 500; }
.rt-seltene-secont-items p { font-style: normal; font-weight: 400; }
.treueprogramm-page + .footer-area { margin-top: 80px; }
.intro-text span { font-weight: 500; }
.home-section-link,
.all-service-btn a { font-size: 14px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.all-service-btn { padding-block: 44px 70px; }
.treueprogramm-page { padding-bottom: 80px; }
.service-overlay-content h3,
.service-overlay-content .link-btn { font-weight: 400; }
.service-overlay-content .link-btn { font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }


/* ISE legal pages */
.legal-page{padding:90px 0 70px}.legal-card{max-width:1050px;margin:0 auto}.legal-card .legal-date{margin:0 0 34px;color:#777}.legal-section{padding:22px 0;border-bottom:1px solid rgba(0,0,0,.1)}.legal-section:last-child{border-bottom:0}.legal-section h2{font-size:26px;margin-bottom:12px}.legal-section p{line-height:1.75;margin:0}.legal-section a{text-decoration:underline}


/* Featured news: first card spans the complete three-column grid. */
.multiple-post-wp > .singlePost-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 42%) minmax(0, 58%);
    flex-direction: initial;
    min-height: 440px;
}
.multiple-post-wp > .singlePost-card-featured .singlePost-featured-image {
    min-width: 0;
    height: 100%;
}
.multiple-post-wp > .singlePost-card-featured .singlePost-featured-image a {
    display: block;
    width: 100%;
    height: 100%;
}
.multiple-post-wp > .singlePost-card-featured .singlePost-featured-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
}
.multiple-post-wp > .singlePost-card-featured .singlePost-featured-content {
    min-width: 0;
    padding: 70px;
}

/* Rare-earth knowledge page */
.rare-earth-content { padding-bottom: 60px; }
.rare-earth-intro h1 { margin-bottom: 24px; }
.rare-earth-intro h2,
.rare-earth-section h2 { margin-top: 0; margin-bottom: 20px; }
.rare-earth-section { margin-top: 42px; padding: 34px; background: #fff; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,.06); }
.rare-earth-section h3 { margin-top: 28px; margin-bottom: 12px; }
.rare-earth-section p { line-height: 1.75; }
.rare-earth-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 24px 0; }
.periodic-table { min-width: 1180px; table-layout: fixed; border-collapse: separate; border-spacing: 4px; width: 100%; }
.periodic-table td { width: 58px; height: 58px; padding: 5px; text-align: center; vertical-align: middle; background: #f3f5f6; border: 1px solid #dde2e5; border-radius: 4px; }
.periodic-table td.empty { background: transparent; border-color: transparent; }
.periodic-table td.rare-earth { background: #dcebdd; border-color: #7eab83; }
.periodic-table td.series-label { width: auto; text-align: right; padding-right: 12px; background: transparent; border-color: transparent; font-weight: 700; }
.periodic-table td.series-placeholder { font-size: 12px; background: #eef5ef; }
.periodic-table a { color: inherit; display: flex; flex-direction: column; text-decoration: none; }
.periodic-table a:hover { color: #1f6b35; }
.periodic-table .atomic-number { display: block; font-size: 11px; line-height: 1; }
.periodic-table strong { display: block; font-size: 18px; line-height: 1.3; }
.table-note { font-size: 14px; color: #667079; }
.data-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.data-table th, .data-table td { padding: 12px 14px; border: 1px solid #dfe4e7; text-align: left; }
.data-table th { background: #eef2f3; font-weight: 700; }
.data-table tbody tr:nth-child(even) { background: #f8f9fa; }
.application-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.application-grid article { padding: 22px; background: #f5f7f7; border-radius: 8px; }
.application-grid article h3 { margin-top: 0; }
@media (max-width: 991px) {
  .rare-earth-section { padding: 24px; margin-top: 28px; }
  .application-grid { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
  .rare-earth-section { padding: 18px; border-radius: 8px; }
}
