.blogcontainer {
    display: flex;
    margin-top: 60px;
    column-gap: 30px;
}

.leftcolumn {
    width: 75%;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.rightcolumn {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    width: 25%;
    position: sticky;
    top: 0;
    align-self: flex-start;
    order: 1;
}

.card {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.75), inset 4px 4px 20px rgba(179, 192, 239, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 16px;
}

.card-2 {
    display: flex;
    gap: 20px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.75), inset 4px 4px 20px rgba(179, 192, 239, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 16px;
    justify-content: space-between;
}

.img img {
    background-color: #aaa;
    width: fit-content;
    height: 100%;
    filter: var(--fil);
}

.blog-date {
    text-decoration: none;
    color: black;
    text-shadow: 0 0 1px black;
    font-family: 'JosefinSans';
    font-weight: 400;
}

.blog-date:hover {
    text-shadow: 0 0 2px black;
}

.img-container {
    display: flex;
    column-gap: 10px;
    justify-content: space-between;
}

.img-container div {
    height: auto;
}

.img-container div img {
    min-height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

@media screen and (max-width: 1220px) {
    .blogcontainer {
        flex-direction: column;
        row-gap: 15px;
        position: relative;
    }
    .leftcolumn, .rightcolumn {
        width: 100%;
        order: 1;
    }
    .img-container {
        flex-direction: column;
        row-gap: 10px;
    }
    #background-2 {
        background-size: cover;
    }
}
/* Social Media Icons */

.fa {
  padding: 20px;
  font-size: 30px;
  width: fit-content;
  height: fit-content;
  text-align: center;
  text-decoration: none;
}

.fa:hover {
  box-shadow: inset 0 0 3px black;
  text-shadow: 0 0 3px #f2f7ef;
}

.fa-instagram {
  background: #e73a27;
  box-shadow: 0 0 2px #e73a27;
  color: #f2f7ef;
  text-shadow: 0 0 1px #f2f7ef;
}

.fa-linkedin {
  background: #e73a27;
  box-shadow: 0 0 2px #e73a27;
  color: #f2f7ef;
  text-shadow: 0 0 1px #f2f7ef;
}

/* Content */

section {
  display: grid;
  gap: 1em;
}

.content {
  display: grid;
  gap: 20px;
}

p {
    font-family: 'JosefinSans';
    font-weight: 300;
    line-height: 1.5;
    text-shadow: 0 0 1px rgb(0, 0, 0);
}

h1 {
    font-family: 'JosefinSans', sans-serif;
    font-weight: 700;
    color: #f2f7ef;
    text-shadow: 0 0 1px #f2f7ef;
}

h2 {
    font-family: 'JosefinSans';
    font-weight: 700;
    color: #f2f7ef;
    text-shadow: 0 0 1px #f2f7ef;
}

h3 {
    font-family: 'JosefinSans';
    font-weight: 700;
    color: #f2f7ef;
    text-shadow: 0 0 1px #f2f7ef;
}

.pagination {
    text-align: center;
    margin-top: 20px;
    margin: 0 auto;
}

.pagination button {
    padding: 5px 10px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 1px;
    border: none;
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.75), inset 4px 4px 20px rgba(255, 255, 255, 0.10);
}

.hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.pagination button.active {
    background-color: #e73a27;
    color: #f2f7ef;
}
