/*
Theme Name: bsTheme
Theme URI: http://brotsalz.de/
Author: brot & salz
Author URI: http://www.brotsalz.de
Description: brot & salz Theme
Version: 1.0.1
Tested up to: 6.1.1
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: bstheme
Tags: brot&salz, tailor-made-theme

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

bsTheme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/


@font-face {
  font-family: 'Avenir';
  src: url('assets/fonts/Avenir.ttc') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'RelaisBold';
  src: url('assets/fonts/RelaisBold-930828272.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'RelaisLight';
  src: url('assets/fonts/RelaisLight-930828266.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'RelaisRegular';
  src: url('assets/fonts/RelaisRegular-930828268.otf') format('opentype');
  font-weight: 400;
  font-display: swap;

  font-style: normal;
}

/* * Site Header
* --------------------------------------------- */
.site__header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: #fff;
}
.site__logo img {
  max-width: 100%;
  height: auto;
}
.site__logo {
  width:  180px;
}
@media (min-width: 1440px) {
   .site__logo {
  width:  230px;
} 
}

/* Nav open */
.navOpen {
  overflow: hidden;
}

/* Nav down */
.navDown {
  background: #fff;
  box-shadow: 0 4px 3px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0 4px 3px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 4px 3px rgba(0, 0, 0, 0.07);
}

/* * Burger Button
* --------------------------------------------- */

.navBurgerWrap {
  width: 40px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#navBurger {
  transition: var(--curs-anim-dur) ease-in;
}

#navBurger {
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.2s ease-in;
  padding-block: 12px;
  height: 44px;
}

#navBurger span {
  display: block;
  width: 35px;
  height: 4px;
  border-radius: 0;
  background: var(--cDef);
  transition: 0.16s ease-in;
}

.navBurgerContainer {
  font-weight: var(--fw-bold);
  font-family: 'RelaisBold';
  cursor: pointer;
}

.navBurgerLabel span {
  content: '';
  position: absolute;
  left: -100%;
  bottom: 0;
  top: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.1s ease-in;
  z-index: 4;
}

.navOpen #navBurger span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 5px);
}
.navOpen #navBurger span:nth-child(2) {
  opacity: 0;
}
.navOpen #navBurger span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -5px);
}
.navBurgerContainer:hover .navBurgerLabel span {
  left: 0;
}
article {
  padding-top: 100px;
}
@media (max-width: 660px) {
  article {
    padding-top: 90px;
  }
}
/* * Burger Menu
* --------------------------------------------- */
#navOverlayContainer {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  opacity: 0;
  background-color: #fff;
  z-index: -90;
  width: 100%;
  height: 100%;
  transition: 0.22s opacity ease;
  min-height: 100vh;
  overflow-y: scroll;
}

.ovNavContainer__wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

#navOverlayContainer.openOverlay {
  transition-delay: 0s;
  opacity: 1;
  z-index: 9;
}

.mainMenuHeader li {
  margin-inline: 1.25rem;
  margin-bottom: 0;
}
.mainMenu li {
  position: relative;
}
.mainMenu li::after {
  content: '';
  display: block;
  height: 2px;
  width: 30px;
  background-color: var(--cBlue);
  margin-top: 5px;
  transition: 0.2s ease-in;
}
.mainMenu li:hover::after {
  width: 100%;
}

/* * Footer
* --------------------------------------------- */
.footerNewhaven {
  padding-block: 45px;
}

@media (min-width: 992px) {
  .footerNewhaven {
    border-radius: var(--b-radius-lg);
  }
  .aboveFooter .container-xl {
    border-top: 2px solid var(--cDark);
    padding-top: 40px;
  }

  .footerNewhaven,
  .aboveFooter .container-xl {
    padding-inline: 40px;
  }
}

/** Main CTA */
.nhpillIcon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cDark);
  border-radius: 99rem;
  margin-right: 10px;
}
.nhpillIcon svg {
  height: 10px;
  width: auto;
}
.btn-pill-nh {
  border: 2px solid var(--cDark);
  background-color: var(--cBlue);
  display: inline-flex;
  border-radius: 99rem;
  align-items: flex-end;
  padding: 7px 20px 7px 10px;
  font-weight: 800;
  font-family: 'RelaisBold';

  transition: 0.2s ease-in;
}
.btn-pill-nh {
  height: 50px;
}
.btn-pill-nh.link .nhpillIcon {
  transition: 0.13s ease-in;
}
.btn-pill-nh.link:hover .nhpillIcon {
  background-color: var(--cBlue);
}
.btn-pill-nh.link:hover .nhplillTitle {
  transform: translateX(4px);
}
.btn-pill-nh.full {
  border-color: var(--cBlue);
}
.btn-pill-nh:is(.default, .full, .outlined):hover {
  background-color: var(--cDark);
  outline: 0;
  color: var(--cWhite);
  border-color: var(--cDark);
}
.btn-pill-nh.light:hover {
  background-color: var(--cBlue);
  color: var(--cDark);
  border-color: var(--cBlue);
}
.btn-pill-nh:is(.default, .full, .outlined):hover .nhpillIcon {
  border-color: var(--cWhite);
  background-color: var(--cWhite);
}
.btn-pill-nh.dark:hover {
  background-color: var(--cWhite);
  color: var(--cDark);
  border-color: var(--cWhite);
}
.btn-pill-nh.dark:hover .nhpillIcon {
  border-color: var(--cDark);
}
.btn-pill-nh.dark:hover .nhpillIcon svg * {
  stroke: var(--cDark);
  fill: var(--cDark);
}
.btn-pill-nh.link {
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
}

.btn-pill-nh.dark {
  background-color: var(--cDark);
  border-color: var(--cBlue);
  color: var(--cWhite);
}
.btn-pill-nh.light {
  background-color: var(--cWhite);
  border-color: var(--cBlue);
  color: var(--cDark);
}
.btn-pill-nh.dark .nhpillIcon {
  border-color: var(--cWhite);
}
.btn-pill-nh.dark .nhpillIcon svg * {
  stroke: var(--cWhite);
  fill: var(--cWhite);
}

.entry-content .btn-pill-nh:is(.default, .full, .outlined):hover .nhpillIcon {
  border-color: var(--cBlue);
  background-color: var(--cBlue);
}

.nhplillTitle {
  padding-bottom: 2px;
}

.btn-pill-nh.link .nhpillIcon {
  border-color: var(--cBlue);
}

.btn-pill-nh.link .nhplillTitle {
  transition: 0.13s ease-in;
}

.main-menu {
  display: flex;
  align-items: center;
}
.main-menu .nav {
  margin-top: 10px;
}
.main-menu li,
.mainMenu li {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  font-weight: 800;
}
.mainMenuFooter {
  padding-top: 2rem;
  color: var(--cWhite);
}
@media (max-width: 768px) {
  .mainMenuFooter {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}

.mainMenuFooter li {
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  display: inline-block;
}

.mainMenuFooter li:after {
  background-color: var(--cWhite);
}
.mainMenuFooter li:hover:after {
  background-color: var(--cBlue);
}
.overlayMenu {
  padding-top: 70px;
}

.overlayMenu ul {
  list-style: none;
  padding-left: 0;
}

.overlayMenu ul li {
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
}

.wpcf7 form > p * {
  width: 100%;
}

.checkWrapper {
  display: flex;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  align-items: center;
  user-select: none;
}

.checkWrapper a {
  font-weight: var(--weight-bold);
  color: var(--cDark);
}

/* Hide default checkbox */
/* Basic */
.checkWrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Custom checkbox */
.dsgvoWrapper .wpcf7-list-item-label {
  position: absolute;
  top: 5px;
  left: 0;
  height: 20px;
  width: 20px !important;
  background-color: transparent;
  border: 3px solid var(--cDark);
  border-radius: 4px;
  transition: 0.3s all ease;
  cursor: pointer;
}

.dsgvoWrapper p {
  margin-bottom: 0;
}

.dsgvoWrapper label[for='dsgvo'] {
  display: none !important;
}

/* Create the checkmark/indicator (hidden when not checked) */
.dsgvoWrapper .wpcf7-list-item-label::after {
  content: '';
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkWrapper input:checked ~ .wpcf7-list-item-label::after {
  display: block;
}

/* Style the checkmark/indicator */
.checkWrapper .wpcf7-list-item-label::after {
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--cDark);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.dsgvoTxt p {
  margin-bottom: -9px;
}

.moreServiceCard_thumbnail {
  background: var(--cDark);
  height: 100px;
  border-top-right-radius: var(--b-radius-lg);
  border-top-left-radius: var(--b-radius-lg);
  width: 100%;
  position: relative;
}
.moreServiceCard_thumbnail.icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 100px;

  filter: brightness(0) invert(1);
}
.moreServiceCard_thumbnail.icon svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 50px;
  fill: var(--cBlue);
}
.moreServiceCard_thumbnail.icon svg * {
  fill: var(--cBlue);
  stroke: var(--cBlue);
}
.serviceCardHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.serviceCardBottom {
  margin-top: 2rem;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  justify-content: space-between;
}
.moreServiceCardTitle {
  min-height: 2.2rem;
  hyphens: auto;
  word-break: break-word;
}
.moreServiceCardDescription {
  min-height: 13rem;
}

@media (min-width: 992px) {
  .serviceCardBottom {
    margin-top: 4rem;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.serviceCardAll {
  background: var(--cLightgrey);
  border-radius: var(--b-radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='1740' height='321' viewBox='0 0 1740 321'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Cpath id='Path_469' data-name='Path 469' d='M25,0H1715a25,25,0,0,1,25,25V296a25,25,0,0,1-25,25H25A25,25,0,0,1,0,296V25A25,25,0,0,1,25,0Z' transform='translate(-17744 -569)' fill='%23e6e7e9'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-2'%3E%3Crect id='Rectangle_1552' data-name='Rectangle 1552' width='1740' height='321' rx='25' transform='translate(90 1009.276)' fill='%239a9fa6'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-3'%3E%3Crect id='Rectangle_1551' data-name='Rectangle 1551' width='2434.825' height='1196.551' fill='%239a9fa6'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Mask_Group_9' data-name='Mask Group 9' transform='translate(17744 569)' clip-path='url(%23clip-path)'%3E%3Cg id='Mask_Group_8' data-name='Mask Group 8' transform='translate(-17834 -1578.276)' opacity='0.1' clip-path='url(%23clip-path-2)'%3E%3Cg id='Group_13988' data-name='Group 13988' transform='translate(19.926 879.587)'%3E%3Cg id='Group_13987' data-name='Group 13987' transform='translate(-124.936 -75.587)' clip-path='url(%23clip-path-3)'%3E%3Cpath id='Path_470' data-name='Path 470' d='M2434.791,2.894c.313-1.6-1.076-3.714-2.465-2.569-40.542,46.408-85.042,91.116-134.227,130.166C1871.677,469.408,1269.652,310.224,780.4,380.1,412.746,432.614,188.2,728.385,50.955,1048.766c-14.683,34.294-26.068,69.6-39.223,104.271L0,1196.53l65.048-72.823C395.356,786.179,902.933,843.521,1321.372,837.481c93.129-1.319,186.571-4.269,277.964-13.294,358.632-35.37,675.229-285.635,769.886-599.907,32.351-107.465,63.9-212.986,65.569-221.386' transform='translate(0 -0.003)' fill='%239a9fa6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-position: bottom right;
  background-size: 80%;
  background-repeat: no-repeat;
  min-height: 300px;
  transition: 0.3s all ease;
}

.serviceCardAll:hover {
  background-size: 250%;
}

.serviceCardDescription {
  max-width: 520px;
}
@media (min-width: 1440px) {
  .hasIn {
    width: 20%;
    flex: 0 0 20%;
  }
}

.contentInfoWrapper {
  display: flex;
  align-items: center;
}
.contentPill {
  margin-right: 10px;
  padding: 7px 14px;
  line-height: 1;
  text-transform: uppercase;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 2px solid var(--cBlue);
  border-radius: 99rem;
  letter-spacing: 1px;
  font-weight: medium;
}
.post_thumbnail img {
  border-radius: var(--b-radius-lg);
}

@media (max-width: 992px) {
  .w-lg-full {
    max-width: 100% !important;
  }

}

.trp-language-switcher  {
  margin-left: 10px;
}
.trp-language-switcher > div {
  border: none !important;
  font-weight: 800;
}
.trp-language-switcher > div a {
  font-weight: 800 !important;
}


.nhAccordion .accordion-header {
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.nhAccordion {
  border: none;
  box-shadow: none;
}

.nhAccordion .accordion-item {
  border: none;
  background: none;
}

.nhAccordion .accordion-header {
  background: none;
  border: none;
}

.nhAccordion .accordion-button {
  background-color: #e6e7e9;
  color: var(--cDark);
  border: none;
  box-shadow: none;
  font-weight: 800;
  font-family: 'RelaisBold';
  transition: background 0.2s, color 0.2s;
}

.nhAccordion .accordion-button:not(.collapsed) {
  background-color: var(--cDark);
  color: var(--cWhite);
  box-shadow: none;
}

.nhAccordion .accordion-body {
  border: none;
  background: none;
}

@media (max-width: 1240px) {
      article {
    padding-top: 80px;
  }
}

/* --- PROFIL SINGLE VIEW --- */

article.profile-single-view .col-lg-8 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

article.profile-single-view .profile-image-col {
    max-width: 300px !important; 
}

article.profile-single-view .wp-block-image.wBadge {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
}

article.profile-single-view .wp-block-image.wBadge img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: var(--b-radius-lg) !important;
}

/* Versetzt das Logo-Badge nach links außen */
article.profile-single-view .wp-block-image.wBadge::after {
    left: -85px !important;
}

/* Name */
article.profile-single-view h1.profile-name {
    font-size: 2.3rem !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
    color: inherit; 
}

/* Position */
article.profile-single-view .position {
    font-size: 1.2rem !important;
    font-weight: 700 !important; 
    letter-spacing: 0.15em !important;
    color: #334155 !important;
    opacity: 1 !important; 
}

article.profile-single-view .autorProfilBox__socials {
    margin-top: 0.25rem !important;
    margin-bottom: 1.5rem !important;
}

article.profile-single-view .autorProfilBox__socials .socials-label {
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: #334155 !important;
}

article.profile-single-view .socMedIconWrap {
    color: #ffffff !important;
    text-decoration: none !important;
    Display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--cDark);
}

article.profile-single-view .socMedIconWrap:hover {
    opacity: 1 !important;
    transform: translateY(-1px);
}

article.profile-single-view .socMedIconWrap svg {
    width: 14px !important;
    height: 14px !important;
    fill: currentColor !important;
    /* transform: translateY(-1.7px); */
}

article.profile-single-view .profile-bio-wrapper {
    margin-top: 0 !important;
    font-size: 1.05rem !important;
    line-height: 1.75 !important;
}

body:has(.profile-single-view) .pub-modal-content .accordion-item {
    border: none !important;
}

body:has(.profile-single-view) .pub-modal-content .accordion-button {
    color: inherit !important;
}


/* MOBILE RESPONSIVENESS ANPASSUNGEN */

/* 1. AB ≤ 768px: Mobile Layout & Erzwungener Seitenabstand */
@media (max-width: 768px) {
    article.profile-single-view {
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }

    article.profile-single-view .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    article.profile-single-view .col-lg-8,
    article.profile-single-view [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    article.profile-single-view .profile-image-col {
        margin: 0 auto 0.5rem auto !important;
        max-width: 300px !important;
    }

    article.profile-single-view .profile-meta-col {
        text-align: left !important; 
        padding-left: 0 !important; 
        padding-right: 0 !important;
    }

    article.profile-single-view h1.profile-name {
        font-size: 1.8rem !important;
        display: inline-block !important;
        width: 100% !important;
        text-align: left !important;
        margin-bottom: 0.25rem !important;
    }

    article.profile-single-view .position {
        font-size: 0.85rem !important;
        display: block !important;
        width: 100% !important;
        text-align: left !important;
        margin-bottom: 1rem !important;
    }

    article.profile-single-view .profile-bio-wrapper {
        font-size: 0.95rem !important; 
        line-height: 1.65 !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    article.profile-single-view .bio-content p,
    article.profile-single-view .bio-content ul,
    article.profile-single-view .bio-content ol {
        text-align: left !important;
        margin-bottom: 1rem !important;
    }
}

/* 2. AB ≤ 621px: Logo-Badge ausblenden */
@media (max-width: 621px) {
    article.profile-single-view .wp-block-image.wBadge::after {
        display: none !important;
    }
}

/* Styling für den Stellenanzeigen-Block */
.job-teaser-block .job-teaser-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.job-teaser-block .job-title {
    margin: 0;
    font-weight: bold;
    line-height: 1.2;
}

.job-teaser-block .job-teaser-link {
    text-decoration: none;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}

.job-teaser-block .contentLinkBtn {
    margin: 0;
}

.job-teaser-block .btn-pill-nh.link {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.job-teaser-block .nhpillIcon {
    display: flex;
    align-items: center;
}

.job-teaser-block .nhpillIcon svg {
    display: block;
}


.job-card-col {
    display: flex !important;
    flex-direction: column;
}

/*.job-card-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}*/


.newsprevQuery .post-item,
.post-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.post-item .post-title,
.post-title {
    font-size: 1.5rem !important;
    line-height: 1.25 !important;
    letter-spacing: -0.01rem !important;
    margin-top: 0 !important;
    margin-bottom: 0.15rem !important;
    min-height: 3.755rem;
    hyphens: auto;
    word-break: break-word;
    flex-grow: 1;
}

.post-item .job-gender-tag {
    display: block;
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
    color: inherit !important;
    opacity: 1 !important;
    margin-bottom: 1.25rem !important;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .post-item .post-title,
    .post-title { 
        font-size: 1.4rem !important; 
    }
    .post-item .job-gender-tag { 
        font-size: 1.1rem !important; 
    }
}

@media (max-width: 768px) {
    .post-item .post-title,
    .post-title { 
        font-size: 1.35rem !important; 
        min-height: auto; 
        margin-bottom: 0.75rem !important;
    }
    .post-item .job-gender-tag { 
        font-size: 1.05rem !important; 
        margin-bottom: 0.75rem !important; 
    }
}


.newsprevQuery .post-item,
.post-item {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/* CARD DESIGN */

.job-card-wrapper {
    background-color: var(--bs-gray-100) !important;
    border: 2px solid !important;
    border-color: var(--bs-gray-100) !important;
    border-radius: var(--b-radius-lg, 16px) !important;
    padding: 2rem !important;
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.job-card-wrapper:hover {
    transform: translateY(-3px);
}

.btn-pill-nh.link:hover .nhpillIcon,
.job-card-wrapper:hover .btn-pill-nh.link .nhpillIcon {
    background-color: var(--cBlue, #00d2ff) !important;
    border-color: var(--cBlue, #00d2ff) !important;
}

.job-card-wrapper a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.footerMailCont * {
  margin-bottom:  0;
}

@media (max-width: 768px) {
  .footerMailCont {
    align-items: flex-start;
    margin-top: 10px;
  }
    .footerMailCont * {
      line-height: 1.25;
    }
}


.card-action-bar {
    position: relative !important;
    min-height: 30px !important;
    display: flex !important;
    align-items: center !important;
}

.card-action-bar .post-date {
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(calc(-30% + 10px)) !important;
    line-height: 1 !important;
    margin: 0 !important;
    white-space: nowrap !important;
    z-index: 2 !important;
    pointer-events: none !important;
    transition: color 0.2s ease-in-out !important;
}

.team-grid-container {
    padding-left: 15px;
    padding-right: 15px;
}

.profile-card {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}

.profile-content {
    padding-left: 0;
}

.autorProfilBox__socials a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--cDark);
}

.autorProfilBox__socials a svg {
    margin: auto;
    fill: var(--cWhite);
    max-width: 15px;
}