/*RESET & BASE*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-tap-highlight-color: transparent;
  /* text-decoration: none; */
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  background: #f5f5f5;
  min-height: 100vh;
  overflow-x: hidden;
  animation: fondu-entree 0.3s ease;
  transition: opacity 0.3s ease;
}
@keyframes fondu-entree {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*HEADER*/
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(10px, 3vw, 20px) clamp(12px, 4vw, 20px);
  width: 100%;
  margin-bottom: 10px;
}

header a {
    text-decoration: none;
    color: #000;
}

.info {
  margin-top: 20px;
  padding: clamp(10px, 3vw, 20px) clamp(12px, 4vw, 20px);
  font-weight: 600;
}

/* DESCRIPTION */
.desc  {
     padding: clamp(10px, 3vw, 20px) clamp(12px, 4vw, 20px);
  width: 100%;
  line-height: 2;
}
.desc  p {
    color: gray;
}
.desc h2 {
    font-weight: 500;
    font-size: 18px;
}



/*FACTURE*/

.dad {
  gap: 20px;
}
.card {
  border: 1.5px solid rgba(128, 128, 128, 0.562);
  border-radius: 12px;
  margin: 0 clamp(12px, 4vw, 20px) clamp(10px, 3vw, 16px);
  margin: 10px;
  padding: clamp(14px, 4vw, 20px);
  line-height: 1.5;
}
.card .top  {
    display: block;
    align-items: center;
    justify-content: space-between;
}

.card .top .top_top {
     display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.card .top .top_top .fric {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.card .top .top_top .fric h2 {
    font-size: 15px;
    font-weight: 600;
}
.card .top .top_top .orang {
    font-size: 15px;
    padding: 3px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 123, 0, 0.817);

}
.card .top .top_top .orang span {
    font-size: 10px;
    font-weight: 400;
    color: #fff;
}
.card .top .top_top .fric img {
  width: 30px;
  height: 30px;
  object-fit: cover;
}


.card .top .date {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}
.card .top .date .left h2 {
    font-size: 15px;
}
.card .top .date .left p {
    font-size: 15px;
     margin-top: 5px;
    font-weight: 400;
    color: gray;
}
.card .top .date .right {
    text-align:end;
}

.card .top .date .right h2 {
    font-size: 15px;
    font-weight: 500;
    color: rgb(80, 80, 80);
}
.card .top .date .right p{
    font-size: 15px;
    margin-top: 5px;
}
.card .top .date .right p:last-child {
    font-size: 15px;
    color: orange;
    font-weight: bold;
}


.card .bottom {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
    padding-right: 20px;
    margin-top:10px ;
}
.card .bottom p {
    color: orange;
}

.card .bottom span {
    font-size: 10px;
    font-weight: bold;
}



.card .top .top_top .green {
    font-size: 15px;
    padding: 3px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 128, 0, 0.587);

}
.card .top .top_top .green span {
    font-size: 10px;
    font-weight: 400;
    color: #fff;
}

.card .bottom p:last-child {
    color: gray;
} 