.p-mainSection {
    width: 100%;
    position: relative;
}

.p-mainSection-image {
    width: 350px;
    border-radius: 5px;
    background-size: cover;
    aspect-ratio: 1/1;
    background-position: center;
}

.p-mainSection-text {
    position: absolute;
    bottom: 0px;
    right: 0px;
    left: 400px;
}

.p-mainSection-text-title {
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
}

.p-posts {
    margin-top: 50px;
}

.p-posts-title {
    font-size: 40px;
    line-height: 40px;
    font-weight: 600;
}

.p-posts-index {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
    margin-top: 25px;
}

.p-posts-index-item {
    height: auto;
    text-decoration: none;
    cursor: pointer;
}

.p-posts-index-item-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    border-radius: 5px;
    background-position: center;
}

.p-posts-index-item-title {
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    margin-top: 12.5px;
    color: black;
}

.p-mainSection-text-links:empty {
    display: none;
}

.p-mainSection-text-links-button {
    font-size: 20px;
    line-height: 20px;
    padding: 6.25px 12.5px;
    border-radius: 5px;
    border: 2px solid var(--brandColour);
    color: var(--brandColour);
    text-decoration: none;
    font-weight: 600;
    margin-top: 25px;
    display: inline-block;
    margin-right: 12.5px;
}

.p-mainSection-text-links-button > i {
    display: inline-block;
    text-decoration: none;
}

.p-mainSection-text-links-button > span {
    display: inline-block;
    margin-left: 12.5px;
    text-decoration: none;
    font-weight: 600;
}