| import styled from "styled-components";
export const StyledBlogSection = styled.section`
  width: 100%;
  height: auto;
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .content h1 {
    color: var(--white);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: 0;
    text-transform: none;
    gap: 20px;
  }
  @media (max-width: 1024px) {
    padding: 0 5vw;
  }
  .content {
    gap: 16px;
  }
  .content h1 {
    font-size: 24px;
  }
`;
 |