.p-mainArea {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.8fr 1.5fr;
    grid-gap: 50px;
}

.p-mainArea-item {
    width: 100%;
    height: auto;
    display: inline-block;
}

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

.p-mainArea-item-title {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    color: black;
    text-decoration: none;
    margin-top: 12.5px;
}

.p-mainArea-section1 > .p-mainArea-item > .p-mainArea-item-title {
    font-size: 22px;
    line-height: 32px;
}

.p-mainArea-section1 > .p-mainArea-item {
    margin-top: 25px;
}

.p-mainArea-section1 > .p-mainArea-item:first-child {
    margin-top: 0px;
}

.p-mainArea-section3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
}

.p-mainArea-section3 > .p-mainArea-item > .p-mainArea-item-title {
    font-size: 18px;
    line-height: 28px;
}

.p-trendingTags {
    position: relative;
    margin-bottom: 50px;
    display: none;
}

.p-trendingTags-title {
    display: inline-block;
    width: 150px;
}

.p-trendingTags-items {
    position: absolute;
    top: 0px;
    right: 0px;
}

.p-trendingTags-items-item {
    background-color: var(--brandColour);
    color: white;
    display: inline-block;
    border-radius: 5px;
    text-align: center;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
    padding: 0px 10px;
    margin-left: 10px;
}