    main {
        max-width: 750px;
        margin: 0 auto;
    }

    aside {
        margin-top: 50px;
        border-top: 3px solid black;
        padding-top: 20px;
    }
	
	.related {
		display: flex;
		flex-wrap: wrap;
	}
	
	.related a {
		padding: 1px 20px;
		border-right: 1px solid gray;
		margin: 8px 0;
		color: inherit;
	}
	
	.related a:hover {
		text-decoration: underline;
	}
	
	.related a:last-child {
		border-right: none;
	}
	
	.related a:first-child {
		margin-left: 0;
		padding-left: 0;
	}
	
	.share {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 8px;
		border-top: 2px solid gray;
		border-bottom: 2px solid gray;
		margin: 10px 0;
	}
	
	.share>div {
		display: flex;
	}
	
	.share a {
		display: flex;
	}
	
	.addtoany_share_save_container.addtoany_content.addtoany_content_top {
		display: none;
	}
	
	
	    .back-button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: #c62a3d;
      color: white;
      border: 2px solid #c62a3d;
      padding: 10px 20px;
      border-radius: 999px;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .back-button:hover {
      background-color: transparent;
	  color: #c62a3d;
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .back-button svg {
      width: 18px;
      height: 18px;
      fill: white;
		transition: fill 0.3s ease;
    }
	
	.back-button:hover svg {
		fill: #c62a3d;
	}