/* Reset */
html {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
}

body {
	background-color: hsl(100%, 50%, 50%);
}

//Wrapper
.wrapper {
    max-width: 1000px;
    margin: 1rem auto;
    padding: 1rem;
    background: #092943;
	box-shadow: 0 0 3px 5px rgba(0,0,0,0.08653);
}


// Tabs
.tabs {
  display: grid;
}

[role="tablist"] {
    display: flex;
    width: 60%;
    margin: 0 auto;
    gap: 90px;
}

[role="tabpanel"] {
  background: #092943;
  padding: 2rem;
}

button {
	background: none;
	border: 0;
	color: white;
	
	box-shadow: inset 0 -2px 5px var(--bs-color);
	cursor:pointer;
	font-size: 20px;
	padding: 15px;
}

button[aria-selected="true"] {
    background: transparent;
    box-shadow: none;
    color: white;
}

button:focus {
  outline: 0;
  --bs-color: rgba(0,0,0,0.6);
}
.blogest{
display:flex;
}

.blogImag {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
  padding:50px  20px ; 
}
.textDate{
display:flex;
justify-content:space-between;
}
.readmoreBtn{
background:#37BEBD;
  color:#092943;
  border-radius:30px;
  padding:15px 30px;
  text-decoration:none;
  font-size:18px;
  font-weight:600;
}
.paragraphblog{
color:white;
  font-size:18px;
  color:#ffff;
  line-height:28px;
}
.headingBlog{
font-size:33px;
  color:#ffff;
  font-weight:700;
}
.textDate p{
color:white;
}
p.category {
    margin-left: 26px;
}
p.category::before {
    content: url(https://www.goodlord.co/hubfs/%EF%80%AC.png);
}
p.date:before {
    content: url(https://www.goodlord.co/hubfs/%EF%81%B3.png);
}
.blogest{
postion:relative;
}
.blogImag::after {
    content: "01";
    color: #37BEBD;
    font-size: 46px;
    font-weight: 700;
    position: absolute;
    right: 18px;
    top: 10px;
}
.wrapper {
    background: #092943;
    color: white;
}
.blogest {
    display: flex;
    position: relative;
}
.blogest {
    border-bottom: 1px solid gray;
    padding: 50px 30px;
}
.tab-panel {
  opacity: 0;
  transition: opacity 0.5s ease; /* Adjust duration and timing function as needed */
  visibility: hidden; /* Initially hide the panel */
}

.tab-panel.active {
  opacity: 1;
  visibility: visible; /* Show the panel when it becomes active */
}
a.readmoreBtn {
    color: #092943;
    font-weight: 700 !important;
    font-size: 18px !important;
}