
.article-Content {
  padding: 1rem;
  margin: 3ch auto;
  width: 95%;
  max-width: 120ch;
}

/**************************** Article text ***********************************/

.section-Content {
  padding: 0.5rem 1.5rem;
  margin: 0 auto;
  /*width: 95%;*/
  max-width: 120ch;
}
.section-Content h1 {
  font-size: clamp(28px, 4rem, 36px);
  color: darkcyan;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
  text-align: center;
  text-wrap: balance;
}

.section-Content h2 {
  font-size: 1.6rem;
  color: black;
}

.section-Content h3 {
  font-size: 1.4rem;
  color: black;
  font-weight: 600;
}

.section-Content h4 {
  font-size: 1.2rem;
  color: black;
  font-weight: 500;
}

.section-Content p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.5;
}

.section-Content ul {
  font-size: 1rem;
  color: #333;
  line-height: 1.2;
}

.section-Content a:link,
.section-Content a:visited {
  color: #009db1;
  text-decoration: none;
  font-weight: 600;
}

.section-Content a:hover {
  color: #f681c5;
  text-decoration: underline;
}

.section-Content img {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 1em auto;
}
.section-Content table {
  max-width: 90%;
  margin: 0em auto;
  border: thin solid black;
  border-collapse: collapse;
}

.section-Content td {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.2;
  border: thin solid black;
}

.section-Content td > * {
  font-size: 1rem;
  line-height: 1.2;

}

.section-Content th {
  background:#00c097 ;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* for name of table, image ... */
.section-Content .caption {
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 0px;
}

/* for Note at bottom of page or tab, image ..*/
.section-Content .note {
  font-size: 0.8rem;
  font-style: italic;
  text-align: center;
}

.section-Content .author {
  text-align: right;
  font-style: italic;
  color: #000222;
}

.section-Content .subtract > *{
  color: #999999;
  text-align: justify;
  margin: 5px 0px 5px 10%;
  font-style: oblique;
  font-size: 0.95rem;
}

.section-Content .subtract {
  color: #999999;
  text-align: justify;
  margin: 5px 0px 5px 10%;
  width: 60%;
  font-style: oblique;
  font-size: 0.95rem;
}

.section-Content .timeStamp {
  color: #999999;
  font-style: oblique;
  font-size: 0.95rem;
}

/************************ Colapsible tabs version 2******************************/

.collBar {
  background-image: linear-gradient(to right,#009db1, #00c29e);
  color: white;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.1em;
  border-radius: 6px 6px 0px 0px;
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.collBar.collap-Active,
.collBar:hover {
  background-image: linear-gradient(to right, #00c097, #8ee07f);
  color: white; /*floralwhite;*/
  font-weight: bold;
  box-shadow: none;
  cursor: pointer;
  border: solid thin gray;
  
}

.collBar::before {
  content: "\002B";
  color: white;
  font-weight: bold;
  float: left;
  margin-right: 5px;
}

.collap-Active::before {
  content: "\2212";
  color: floralwhite;
}

/*
.coll-Content {

  container-type: inline-size;
  max-height: 0;
  min-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-evenly;
  margin-bottom: 0rem;
  padding-bottom: 8px;
}

.coll-Content > article {
  display: inline;
  padding: 8px 8px 16px 8px;
  min-width: 150px;
  max-width: 300px;
  min-height: 3rem;
  flex-basis: 0%;

  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
*/

.coll-Content {
  max-height: 0;
  min-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: white;
  display: grid;
  /* grid-auto-flow: column; */
  grid-template-columns: repeat(auto-fill, minmax(180px, 22%));
  gap: 1.5rem;
  margin-bottom: 0rem;
  padding-bottom: 8px;
  justify-content: center;
}

.coll-Content > article {
  display: inline;
  padding: 8px 8px 16px 8px;
  min-width: 150px;
  /* max-width: 300px; */
  /* min-height: 3rem; */
  /* flex-basis: 0%; */
  /* aspect-ratio: 2/1; */
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.coll-Content > article::after
{
  content: "";
  clear: both;
  display: table;
}

.coll-Content h3 {
  font-weight: 600;
  font-size: 0.8em;
  color: black;
  line-height: 1.5;
  padding: 0.1rem 0.3rem;
  margin: 0.3rem;
  padding: 0.2rem 0.2rem 0.8rem 0.2rem;
}

.coll-Content h3::before {
  content: '\2B9A\00a0';
  color: #cc0066;
  font-size: 1rem;
}

.coll-Content a:link {
  color: #333;
  padding: 0.35rem 0.8rem;
  border-radius: 0.8rem;
  text-decoration: none;
  margin-bottom: 0.6em;
  box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.2);
  font-size: 0.8rem;
  transition: box-shadow 0.3s ease-in;
}
.coll-Content a:visited {
  color: gray;
}
.coll-Content a:hover {
  box-shadow: none;
  background-color: #cc0066;
  background-image: linear-gradient(45deg, transparent, #cc0066);
  color: white;
}

/************ Container queries ********************/

@container (width < 480px) {
  .coll-Content > article {
    min-width: 125px;
  }
}




